/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
       font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    background:linear-gradient(135deg, #1AA6A6, #6FD3C9);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    
}

.btn:hover {
    background: #0E6F73;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.2);
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 95px;
}
.nav-logo{
    height: 70px;
    width: auto;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}


.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 8px 15px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1AA6A6;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #1AA6A6;
    bottom: -5px;
    left: 0;
}

.quote-btn {
    background: linear-gradient(135deg, #1AA6A6, #6FD3C9);
    color: white !important;
    padding: 10px 25px;
    border-radius: 4px;
    margin-left: 20px;
}

.quote-btn:hover {
    background: #0E6F73;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: linear-gradient(135deg, #1AA6A6, #6FD3C9);
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    z-index: 10000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 12px 0;
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* Banner Slider */
.banner-slider {
    width: 100%;
    height: 100vh;
    margin-top: 70px;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.slide-content h2,
.slide-content p {
    text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
/* Dark overlay */
.swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.banner-slider {
    height: calc(100vh - 90px);
}
/* FIXED PATH */
.slide-1 { background-image: url('assests/img/slider/1.webp'); }
.slide-2 { background-image: url('assests/img/slider/2.webp'); }
.slide-3 { background-image: url('assests/img/slider/3.webp'); }

/* CENTER CONTENT */
.slide-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
    width: 100%;
    margin: 0 auto;

    text-align: center;       /* THIS IS KEY */
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-top: 100px;
    color: #fff;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

/* BUTTON */
.slide-content .btn {
    display: inline-block;
    background: #1AA6A6;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* NAVIGATION */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background-color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Welcome Section */
.welcome-section {
    padding: 60px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.welcome-content {
    flex: 1;
}

.welcome-content h2 {
    color: #1AA6A6;
    margin-bottom: 20px;
}

.welcome-image {
    flex: 1;
}

.welcome-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    flex: 1;
}

.feature i {
    font-size: 2rem;
    color: #1AA6A6;
    margin-bottom: 10px;
}

.feature h4 {
    font-size: 1.1rem;
    color: #333;
}

/* Why Choose Us */
.why-choose-us {
    background: #107070;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    color: #ffffff;
    /* margin-bottom: 50px; */
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.reason:hover {
    transform: translateY(-5px);
}

.reason .icon {
    width: 70px;
    height: 70px;
    background: #e8f4fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason .icon i {
    font-size: 1.8rem;
    color: #1AA6A6;
}

.reason h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Services */
.services {
    padding: 60px 0;
    background: white;
}
.services .section-title{
    color: #1AA6A6;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 boxes per row */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto; /* center grid */
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
 width: 100%;
    height: 160px;
    margin: 0 auto 20px;       /* CENTER THE ICON BLOCK */
    display: flex;
    margin-top: 30px; 
    align-items: center;
    justify-content: center;
    
}
.service-icon img {
    height: 160px;
    width: auto;
    max-width: auto;
    object-fit: contain;
    display: block;
}

.service-card h3 {
    color: #1AA6A6;
    margin-top: 50px;
}

.service-card p{
    padding: 1px;
    /* max-width: 1200px; */
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.service-card ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-card ul li:before {
    content: "✓";
    color: #1AA6A6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonials .section-title{
    color: #1AA6A6;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote {
    position: relative;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.quote i {
    color: #1AA6A6;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.client h4 {
    color: #1AA6A6;
    margin-bottom: 5px;
}

.client p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #092020;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    margin-top: 3px;
    color: #2ec1ba;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.products-list li {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1AA6A6;
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

#quoteForm button {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .welcome-section {
        flex-direction: column;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .quote-btn {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .features {
        flex-direction: column;
        gap: 20px;
    }
    
    .banner-slider {
        height: 60vh;
    }
}

@media (max-width: 576px) {
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .welcome-section,
    .why-choose-us,
    .services,
    .testimonials {
        padding: 40px 0;
    }
}


.counter-section {
  position: relative;
  background: url("assests/img/about/2.jpg");
  padding: 60px 0;
  color: #fff;
  overflow: hidden;
}

/* Overlay */
.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 41, 41, 0.55); /* Dark overlay */
  z-index: 1;
}

/* Bring content above overlay */
.counter-section .container {
  position: relative;
  z-index: 2;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Counter Box */
.counter-box {
  text-align: center;
  min-width: 180px;
}

.counter-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #fff;
  opacity: 0.95;
}

.counter-box h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.counter-box p {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* White Vertical Line */
.line {
  width: 1px;
  height: 90px;
  background: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .line {
    display: none;
  }
}

@media (max-width: 576px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }
}
/* Mobile spacing fix for all sections */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 card per row */
  }
}


.breadcrumb {
  position: relative;
  background: url("assests/img/about/2.jpg") center/cover no-repeat;
  height: 260px;                 /* HERO HEIGHT */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  color: #fff;
}

/* Dark overlay */
.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content above overlay */
.breadcrumb-content {
  position: relative;
  z-index: 2;
}

/* Title */
.breadcrumb-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

/* Breadcrumb list */
.breadcrumb-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

.breadcrumb-list li {
  color: #ddd;
}

.breadcrumb-list li a {
  color: #1AA6A6;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-list li a:hover {
  text-decoration: underline;
}

/* Separator */
.breadcrumb-list li::after {
  content: "›";
  margin-left: 8px;
  color: #ccc;
}

.breadcrumb-list li:last-child::after {
  content: "";
}

.breadcrumb-list li span {
  color: #fff;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .breadcrumb {
    height: 200px;
  }

  .breadcrumb-content h1 {
    font-size: 1.8rem;
  }

  .breadcrumb-list {
    font-size: 0.9rem;
  }
}


/* ================================gallery================== */
/* ================= CORPORATE GALLERY ================= */

.corporate-gallery {
  padding: 80px 0;
  background: #f8fafc;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #08a5aa;
}

.gallery-header p {
  font-size: 1rem;
  color: #6b7280;
  margin-top: 10px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 70, 78, 0.9));
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header h2 {
    font-size: 2rem;
  }
}









.top1 {
  position: fixed;
  z-index: 999;
  bottom: 10%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top2 {
  position: fixed;
  z-index: 999;
  bottom: 16%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top3 {
  position: fixed;
  z-index: 999;
  bottom: 22%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top4 {
  position: fixed;
  z-index: 999;
  bottom: 28%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top5 {
  position: fixed;
  z-index: 999;
  bottom: 34%;
  right: 10px;
  width: 35px;
  height: auto;
}


.top6 {
  position: fixed;
  z-index: 999;
  bottom: 40%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top7 {
  position: fixed;
  z-index: 999;
  bottom: 46%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top8 {
  position: fixed;
  z-index: 999;
  bottom: 52%;
  right: 10px;
  width: 35px;
  height: auto;
}




        /* Contact */
        /* ================= CONTACT SECTION ================= */

.contact {
  /* padding: 30px 0; */
  /* background: #f8fafc; */
}

.section-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1AA6A6;
}

.section-title .subtitle {
  color: #6b7280;
  margin-top: 10px;
}

/* Contact Cards */
.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  height: 100%;
  transition: 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1AA6A6, #1a5276);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

.contact-info-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #1AA6A6;
}

.contact-info-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-card .btn {
  margin-top: 15px;
}
/* ================= ENQUIRY FORM ================= */

.form {
  padding: 30px 0;
  background: #effbfc;
}
/* Center the whole enquiry section */
.form .container {
  max-width: 720px;     /* controls form width */
  margin: 0 auto;       /* centers form + heading */
}

/* Center the heading with the form */
.form h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #1AA6A6;
}

/* Optional: better spacing for form groups */
.form .form-group {
  margin-bottom: 18px;
}

/* Center the SEND button */
.form input[type="submit"] {
  display: block;
  margin: 20px auto 0;
}


.form .form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 52px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 10px 16px;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: #1AA6A6;
  box-shadow: none;
}

/* Submit Button */
.form input[type="submit"] {
  background: linear-gradient(135deg, #1AA6A6, #1a5276);
  border: none;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26,166,166,0.3);
}
/* ================= MAP ================= */

.map {
  width: 100%;
  height: 450px;
  margin-top: 80px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}



/* =============================service-================== */
   :root {
            --primary: #1AA6A6;
            --secondary: #1a7671;
            --accent: #1AA6A6;
            --light: #f8fafc;
            --gray: #6b7280;
            --dark: #111827;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--light);
        }

      

        /* Services Main */
        .services-main {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

        /* Zig Zag Layout */
        .service-detail {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 120px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .service-detail.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Alternate layout */
        .service-detail:nth-child(odd) .service-image {
            order: 1;
        }

        .service-detail:nth-child(odd) .service-description {
            order: 2;
        }

        .service-detail:nth-child(even) .service-image {
            order: 2;
        }

        .service-detail:nth-child(even) .service-description {
            order: 1;
        }

        /* Service Header */
        .service-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent), var(--secondary));
            color: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
        }

        .service-title h2 {
            /* font-family: 'Montserrat', sans-serif; */
            font-size: 2.2rem; 
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .service-subtitle {
            color: var(--secondary);
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.9;
        }

        /* Service Image */
        .service-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 60, 64, 0.9));
            color: white;
            padding: 25px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
        }

        /* Service Description */
        .service-description {
            padding: 30px;
        }

        .intro {
            font-size: 17px;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 35px;
            padding-left: 20px;
            border-left: 3px solid var(--accent);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 35px;
        }

        .feature {
            background: white;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid rgba(10, 37, 64, 0.1);
            transition: all 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--accent);
        }

        .feature i {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 15px;
            display: block;
        }

        .feature h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .feature p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .service-detail {
                gap: 40px;
                margin-bottom: 80px;
            }
        }

        @media (max-width: 768px) {
            .service-detail {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .service-detail:nth-child(odd) .service-image,
            .service-detail:nth-child(even) .service-image {
                order: 1;
            }

            .service-detail:nth-child(odd) .service-description,
            .service-detail:nth-child(even) .service-description {
                order: 2;
            }

            .service-image {
                height: 350px;
            }

            .service-title h2 {
                font-size: 1.8rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .services-main {
                padding: 60px 0;
            }

            .service-detail {
                margin-bottom: 60px;
            }

            .service-image {
                height: 250px;
            }

            .service-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .image-overlay {
                font-size: 1.2rem;
                padding: 20px;
            }

            .service-description {
                padding: 20px 0;
            }
        }


 /* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 95px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  z-index: 9999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 70px;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.quote-btn {
  background: #1AA6A6;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #1AA6A6;
  margin: 4px 0;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links li {
    margin: 12px 0;
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}



.qrcode{
  height: 70px;
  width: 70px;
}
