/* Global Styles */
:root {
    --primary-color: #3b42d3;
    --secondary-color: #35424a;
    --light-color: #f4f4f4;
    --dark-color: #333;
    --white: #fff;
    --gray: #ccc;
    --success-color: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #5869e8;
    transform: translateY(-2px);
}

.btn:active,
.btn:focus {
    outline: none;
    border-color: var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

section {
    padding: 60px 0;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto;
}

/* Header Styles */
/*
header {
    background: rgba(53, 66, 74, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}*/

/* Header Styles */
/* Header Styles */
header {
    background: rgba(21, 76, 149, 0.878); /* Transparent background initially */
    backdrop-filter:  blur(20px); /* No blur initially */
    -webkit-backdrop-filter: none;
    border-bottom: none; /* No border initially */
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for the header */
}

header.scrolled {
    background: rgba(21, 76, 149, 0.878); /* Semi-transparent background when scrolled */
    backdrop-filter: blur(10px); /* Glass effect when scrolled */
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border when scrolled */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* rgb(174, 133, 0) */
/* Rest of your CSS remains the same */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.logo span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

nav ul {
    display: flex;
    list-style: none;
   
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: rgba(238, 239, 239, 0.9);
    font-weight: bold;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 4px;
}

nav ul li a:hover {
    color: #3b42d3;
    /* background: rgba(232, 73, 29, 0.7); */
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease, transform 0.3s ease;
   
}





/* Hero Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
   
    margin-top: -80px;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
    top: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    width: 100%;
    padding: 0 20px;
    z-index: 3;
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content h2::after {
    background: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Equipment Section */

/* Equipment Section - Pure Photo Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.equipment-card {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1; /* Square photos */
    transition: transform 0.3s ease;
}

.equipment-img {
    width: 100%;
    height: 100%;
}

.equipment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equipment-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.equipment-card:hover .equipment-img img {
    transform: scale(1.1);
}

/* Filter buttons */
.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 8px 15px;
    background: var(--light-color);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/*
.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.filter-btn {
    padding: 8px 15px;
    background: var(--gray);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.equipment-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-img {
    height: 200px;
    overflow: hidden;
}

.equipment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equipment-card:hover .equipment-img img {
    transform: scale(1.1);
}

.equipment-info {
    padding: 20px;
}

.equipment-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.equipment-info p {
    margin-bottom: 15px;
    color: #666;
}

.equipment-specs {
    margin-bottom: 15px;
}

.equipment-specs span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.equipment-specs i {
    color: var(--primary-color);
    margin-right: 5px;
    width: 20px;
    text-align: center;
}

.equipment-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}
*/
/* About Section */
.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 5px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray);
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about .container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    /* Hero Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
   
    top: 117px;
}

}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(125, 161, 231, 0.878);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 40px 0;
    }

    /* Hero Slideshow Styles */
.slideshow-container {
    position: relative;
    
    top: 20px;
    
}
.hero-slide {
    position: absolute;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}



}

@media (max-width: 576px) {
   
    /*.hero-slide {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        text-align: center;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
        z-index: 1;
        top: 290px;
         overflow: hidden;
      
    }
        */
       
       .hero-content{
           margin-top: -25px;
       }
        
    .hero-content h2 {
        font-size: 1.8rem;
        
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
      /* Hero Slideshow Styles */
      .slideshow-container {
        position: relative;
    
        top: 0;
        
    }
    .hero-slide {
        position: absolute;
        width: 100%;
        height:100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
}



@media (min-width: 576px) and (max-width: 768px) {
   
    /*.hero-slide {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        text-align: center;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
        z-index: 1;
        top: 290px;
         overflow: hidden;
      
    }
        */

    .hero-content h2 {
        font-size: 1.5rem;
        
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
      /* Hero Slideshow Styles */
      .slideshow-container {
        position: relative;
        height: 60vh;
        top: 60px;
        
    }
    .hero-slide {
        position: absolute;
        width: 100%;
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
}
    
/* Mobile Styles (Extra Small Devices) */
@media (max-width: 575.98px) {
    /* Contact Section */
    .contact {
      padding: 15px;
    }

    .contact h2 {
      font-size: 22px;
    }

    .contact-info {
      padding: 10px;
    }

    .contact-info h3 {
      font-size: 16px;
    }
    .contact-form .form-group input,
          .contact-form .form-group select,
          .contact-form .form-group textarea {
            font-size: 14px; /* Smaller font size for inputs on mobile */
          }

          .contact-form button {
            font-size: 16px; /* Smaller button text */
          }

          .social-links {
            font-size: 14px; /* Adjusting font size for smaller screens */
          }

          .social-links p {
            margin: 8px 0; /* Adjusting margin for smaller screens */
        }

        .social-links i {
          font-size: 18px; /* Adjusting icon size */
        }

        /* Make the layout more vertical and stack form inputs */
        .contact-container {
          flex-direction: column;
          gap: 15px;
        }
        /* Ensure form fields take up full width */
        .contact-form input,
        .contact-form select,
        .contact-form textarea {
          width: 100%;
        }
      }


/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
  }
  
  /* Scroll to Top Button */
  .scroll-top-button {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  
  .scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .scroll-top-button i {
    color: white;
    font-size: 20px;
  }
  
  .scroll-top-button:hover {
    background: #cc3e18;
    transform: translateY(-3px);
  }
  
  /* Adjust WhatsApp button positioning */
  .whatsapp-chat {
    position: relative;
    bottom: auto;
    right: auto;
  }
  
  /* Hide WhatsApp chat box when scroll button is visible */
  .scroll-top-button.visible ~ .whatsapp-chat .whatsapp-chat-box {
    display: none;
  }

/* WhatsApp Chat Button */

  
  .whatsapp-chat-button {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .whatsapp-chat-button i {
    color: white;
    font-size: 30px;
  }
  
  .whatsapp-chat-button:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-chat-box {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    opacity: 0;
  }
  
  .whatsapp-chat.active .whatsapp-chat-box {
    transform: scale(1);
    opacity: 1;
  }
  
  .chat-header {
    background: #075E54;
    color: white;
    padding: 15px;
  }
  
  .chat-header h4 {
    margin: 0;
    font-size: 16px;
  }
  
  .chat-header p {
    margin: 5px 0 0;
    font-size: 12px;
    opacity: 0.8;
  }
  
  .chat-message {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .chat-message p {
    margin: 0;
    color: #333;
  }
  
  .chat-start-btn {
    display: block;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .chat-start-btn:hover {
    background: #128C7E;
  }

  
  
  /* Responsive Breakpoints */
  /* Extra small devices (phones, 576px and down) */
  @media (max-width: 575.98px) {
    .slideshow-container {
      height: 60vh;
      margin-top: -20px;
    }
    
    .hero-content h2 {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
  }
  
  /* Small devices (landscape phones, 576px and up) */
  @media (min-width: 576px) and (max-width: 767.98px) {
    .slideshow-container {
      height: 70vh;
      margin-top: -20px;
   
    }
    
    .hero-content h2 {
      font-size: 1.8rem;
    }
    
    .hero-content p {
      font-size: 1.1rem;
    }
  }
  
  /* Medium devices (tablets, 768px and up) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    .slideshow-container {
      height: 75vh;
    margin-top: -20px;
    }
    
    .hero-content h2 {
      font-size: 2.2rem;
    }
    
    .hero-content p {
      font-size: 1.2rem;
    }

  }
  
  /* Large devices (desktops, 992px and up) */
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .slideshow-container {
      height: 60vh;
      margin-top: -40px;
    }
    
    .hero-content h2 {
      font-size: 2.5rem;
    }
    
    .hero-content p {
      font-size: 1.3rem;
    }
   
  }
  
  /* Extra large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) {
    .slideshow-container {
      height: 85vh;
      margin-top: -20px;
    
    }
    
    .hero-content h2 {
      font-size: 3rem;
    }
    
    .hero-content p {
      font-size: 1.5rem;
    }
  }
  
   @media (max-width: 375px) {
    .slideshow-container {
      height: 60vh;
      top: 20px;
    }
    
   
    
   }
  