:root {
    --primary-blue: #273474;
    --accent-blue: #14396C;
    --accent-orange: #32C035;
    --bg-white: #FFFFFF;
    --bg-light-grey: #F8F9FA;
    /* --section-blue-bg: #F0F7FF; */
    --section-blue-bg: #dcedff;
     --section-green-bg: #ebf9eb;
    --footer-bg: #212529;
    --text-primary: #343A40;
    --text-secondary: #6c757d;
    --border-color: #DEE2E6;
    --header-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    /* background-color: var(--section-green-bg); */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px !important;
    text-align: center;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    padding: 2px 15px;;
    font-size: 12px;
    position: sticky !important; 
    /* top: 18 !important;          */
    top: 0px;
    z-index: 1001 !important; 
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar .contact-info a {
    color: var(--bg-white);
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
    font-size: 16px;
}

.top-bar .contact-info a:hover {
    color: var(--accent-orange);
}

.top-bar .contact-info i {
    margin-right: 8px;
}

.top-bar .top-bar-buttons {
    display: flex;
}

.top-bar .top-bar-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 8px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--bg-white);
    font-weight: bold;
    margin-left: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* .top-bar .call-btn {
    background-color: var(--accent-orange);
} */

.top-bar .call-btn:hover {
    background-color: #28a745; /* Slightly darker green on hover */
}

.top-bar .whatsapp-btn {
    background-color:  var(--primary-blue); 
}

.top-bar .whatsapp-btn:hover {
    background-color: #28a745; /* Slightly darker WhatsApp green on hover */
}

.top-bar .top-bar-btn i {
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar .contact-info {
        margin-bottom: 10px;
    }

    .top-bar .contact-info a {
        display: block;
        margin: 5px 0;
    }

    .top-bar .top-bar-buttons {
        width: 100%;
        justify-content: center;
    }

    .top-bar .top-bar-btn {
        flex-grow: 1;
        margin: 0 5px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .top-bar .top-bar-btn {
        font-size: 12px;
        padding: 8px 10px;
    }
    .top-bar .contact-info a {
        font-size: 12px;
    }
}

/* --- HEADER --- */
.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    /* top: 0;
    z-index: 1000; */
    top: 35px;
    z-index: 1000; 
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

/* --- NAVIGATION --- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav>ul>li {
    position: relative;
}

.main-nav>ul>li>a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    padding: 25px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.main-nav>ul>li>a:hover {
    color: var(--accent-blue);
}

.main-nav>ul>li>a .fa-chevron-down {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.main-nav>ul>li:hover>a .fa-chevron-down {
    transform: rotate(180deg);
}

.btn {
    display: inline-block;
   padding: 3px 10px !important;
    background: var(--accent-orange);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 300 !important;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.btn:hover {
    background: #45ac58;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-blue);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    z-index: 1001;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.main-nav>ul>li:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a,
.dropdown-menu li span {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: var(--section-blue-bg);
    color: var(--primary-blue);
}

.dropdown-menu li span {
    color: var(--text-secondary);
    font-weight: 500;
}

.dropdown-menu li span i {
    margin-right: 8px;
    color: var(--accent-blue);
    width: 16px;
}


/* --- Hamburger (nav-toggle) --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  padding: 0;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* .main-nav.nav-active ~ .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.main-nav.nav-active ~ .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.main-nav.nav-active ~ .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
} */



.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--bg-white);
    position: fixed;              
    /* top: 70px; */
    left: 0;
    right: 0;
    /* height: calc(100vh - 70px);    */
    overflow-y: auto;             
    border-top: 1px solid var(--border-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1001;
     top: calc(var(--header-height) + 35px); /* This will be 60px + ~35px = 95px */
    height: calc(100vh - (var(--header-height) + 35px)); /* Adjust height accordingly */
  }

  .main-nav.nav-active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
  }

  .main-nav > ul > li {
    width: 100%;
    position: relative;
  }

  .main-nav > ul > li > a {
    padding: 15px 20px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 15px;
  }

  .main-nav > ul > li.dropdown-active > .dropdown-menu {
    max-height: 500px; 
  }

  .btn {
    width: 100%;
    margin: 10px auto;
    text-align: center;
    display: block; 
    padding: 10px 20px !important; 
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- HERO SECTION --- */
.hero {
     display: flex;
    flex-wrap: wrap; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    padding: 60px 20px;
    gap: 40px; 
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
       position: relative;
            padding: 100px 0; 
            overflow: hidden; 
            min-height: 400px; 
            display: flex; 
            flex-direction: column;
            justify-content: center;
            align-items: center;
    
}

 .hero__background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% auto;
            height: 100% auto;
            object-fit: cover; 
            z-index: -1; 
            margin-left: 400px;
            
        }

        .hero__background-image--left {
        position: absolute;
        top: 0;
        left: 0;
        height: 100% auto; /* Similar sizing to the right image for consistency */
        width: auto;
        object-fit: cover;
        z-index: -1;
        max-width: 15%;
        margin-top: 20px !important;
    }

.hero-text {
      max-width: 800px;
    text-align: center;
}

.hero-text .btn {
    padding: 10px 24px !important;
    font-size: 1.1rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* .hero-animations {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex: 1 1 400px;
} */

.hero-search {
   flex: 1 1 auto;
    width: 100%; 
    position: relative;
    margin-top: 0px;
    max-width: 900px;
     z-index: 1;
  }

  .search-toggle {
    display: flex;
    width: fit-content;              
    border: 1px solid var(--border-color);
    border-bottom: none;              
    border-radius: 8px 8px 8px 8px;
    overflow: hidden;
    background: transparent;
    z-index: 2;
  }

  .search-toggle .toggle-btn {
    appearance: none;
    border: none;
    margin: 0;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    background: var(--bg-white);
    color: var(--text-primary);
    border-right: 1px solid var(--border-color);
    line-height: 1;
  }

  .search-toggle .toggle-btn:last-child { border-right: none; }
  .search-toggle .toggle-btn.active {
    background: var(--accent-blue);
    color: var(--bg-white);
  }

  .search-form {
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px 8px 8px 8px;
    margin-top: 10px;                
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
  }

  .search-input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-primary);
  }
  .search-input::placeholder { color: #9aa0a6; font-weight: 500; }

  .search-btn {
    background: var(--accent-blue);
    color: var(--bg-white);
    padding: 14px 22px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
    margin-right: 5px;
    font-size: 1rem;
  }
  .search-btn:hover { background: var(--accent-blue); }

.get-started-btn-wrapper {
    width: 100%; 
    text-align: center;
    margin-top: 30px; 
    margin-bottom: 50px;
}

.hero-search .btn {
    display: inline-block; 
    padding: 10px 24px !important;
    font-size: 1.1rem;
}

 @media (max-width: 720px) {
    .hero { flex-direction: column; }
    .hero-search { max-width: 100%; width: 100%;  }
    .search-toggle { width: 100%; }
    .search-toggle .toggle-btn { flex: 1; text-align: center; }
  }

@media (max-width: 768px) {
    .hero {
        padding-bottom: 30px;
    }

    .services {
        padding-top: 40px;
    }

    .services .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 20px;
        gap: 20px;
    }
    .hero-text {
        max-width: 100%; 
    }
    .hero-text h1 {
        font-size: 2.5rem; 
    }
    .hero-text p {
        font-size: 1.1rem; 
    }
    .hero-search {
        max-width: 100%; 
        margin-top: 15px;
    }
}

@media (max-width: 1024px) { /* Adjust breakpoint for tablets */
    .hero__background-image,
     .hero__background-image--left  {
        display: none;
    }
}

@media (max-width: 768px) { /* Existing breakpoint for smaller screens */
    .hero__background-image,
     .hero__background-image--left  {
        display: none;
    }
}


    /* Tenders by */
    .tender-categories-section {
    padding: 60px 0;
    background-color: var(--section-blue-bg); 
}

.tender-categories-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.category-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.category-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; 
    
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary-blue);
}

.view-all-link .fas {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-link:hover .fas {
    transform: translateX(5px);
}

/* Responsive adjustments for tender categories section */
@media (max-width: 992px) {
    .tender-categories-section {
        padding: 50px 0;
    }
    .category-card {
        padding: 25px;
    }
    .category-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    .category-card h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    .category-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .tender-categories-section {
        padding: 40px 0;
    }
    .category-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    .category-card {
        max-width: 350px; 
        margin: 0 auto;
    }
    .category-icon {
        font-size: 2.8rem;
    }
    .category-card h3 {
        font-size: 1.3rem;
    }
    .category-card p {
        font-size: 0.9rem;
    }
}


/* --- SERVICES SECTION --- */
.services {
  padding: 80px 0;
  background: var(--bg-white);
}

.services .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.services .section-subtitle {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
  text-align: center;
}

.service-content p {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  text-align: center;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-image img {
  width: 380px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px (0,0,0,0.1);
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 30px;
  max-width: 1200px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-image img {
    width: 200px;
  }
}

@media (min-width: 576px) {
  .services {
    padding: 60px 0;
  }
  .service-image img {
    max-width: 300px;
  }
  .service-card {
    padding: 25px;
    margin: 0 auto; 
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .services .section-title {
    font-size: 2rem;
  }
  .services .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
  }
  .service-grid {
    gap: 50px;
  }
  .service-image img {
    width: 380px; 
    max-width: none; 
  }
  .service-row {
    flex-direction: row;
    text-align: left; 
  }
  .service-row.reverse {
    flex-direction: row-reverse;
  }
  .service-content h3,
  .service-content p {
    text-align: left;
  }
  .service-card {
    padding: 30px;
    max-width: 720px; 
  }
}

@media (min-width: 992px) {
  .services {
    padding: 80px 0;
  }
  .service-grid {
    gap: 70px;
  }
  .service-card {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .service-card {
    max-width: 1140px;
  }
  .service-grid {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Testimonials Section */
.testimonials {
  background: var(--section-blue-bg);
  padding: 60px 20px;
  text-align: center;
}

.testimonials .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.testimonials .section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.quote-icon {
  font-size: 28px;
  color: var(--accent-blue);
  margin-bottom: 15px;
  display: block;
}

.testimonial-card blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent-orange);
  font-size: 0.95rem;
  text-align: right;
}

.testimonial-swiper .swiper-pagination {
  margin-top: 25px;
  position: relative;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: var(--accent-blue);
  opacity: 0.4;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--accent-orange);
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 575.98px) {
  .testimonials {
    padding: 40px 15px;
  }

  .testimonials .section-title {
    font-size: 1.75rem;
  }

  .testimonials .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .quote-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .testimonial-card blockquote {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .testimonial-author {
    font-size: 0.85rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .testimonials {
    padding: 50px 20px;
  }

  .testimonials .section-title {
    font-size: 2rem;
  }

  .testimonials .section-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .quote-icon {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .testimonial-card blockquote {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .testimonials {
    padding: 60px 30px;
  }

  .testimonials .section-title {
    font-size: 2.25rem;
  }

  .testimonials .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  .quote-icon {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .testimonial-author {
    font-size: 0.95rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .testimonials {
    padding: 70px 40px;
  }

  .testimonials .section-title {
    font-size: 2.5rem;
  }

  .testimonials .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 45px;
  }
}
@media (min-width: 1200px) {
  .testimonials {
    padding: 80px 50px;
  }

  .testimonials .section-title {
    font-size: 2.75rem;
  }

  .testimonials .section-subtitle {
    font-size: 1.15rem;
    margin-bottom: 50px;
  }
}

/* --- PROCESS SECTION --- */
.process-section {
    padding: 5rem 2rem;
    /* background: var(--bg-white); */
    background-color: var(--bg-light-grey);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    position: relative;
}

.process-timeline-nav {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.timeline-track {
    position: absolute;
    /* left: 10px; */
    left: 28px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
}

.timeline-progress {
    width: 100%;
    background-color: var(--accent-orange);
    height: var(--progress-height, 0%);
    transition: height 0.2s ease-out;
}

.timeline-nav-list {
    list-style: none;
    padding-left: 40px;
}

.timeline-nav-item a {
    padding: 1rem 0;
    display: block;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease, font-weight 0.3s ease;
    /* position: relative; */
}

.timeline-nav-item.is-active a {
    color: var(--primary-blue);
    font-weight: 700;
}

/* .timeline-nav-item.is-active a::before {
    transform: translateY(-50%) scale(1);
}

.timeline-nav-item a::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%) scale(0.5);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    border: 3px solid var(--bg-white);
    transition: transform 0.3s ease;
} */

.timeline-icon {
    width: 24px; 
    height: 24px; 
    margin-right: 10px; 
    filter: grayscale(100%) brightness(150%); 
    transition: filter 0.3s ease, transform 0.3s ease;
}

.timeline-nav-item.is-active a .timeline-icon {
    filter: none; 
    transform: scale(1.1); 
}

.timeline-nav-list {
    list-style: none;
    padding-left: 20px;
}

.process-steps-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-content-card {
    /* background: var(--section-blue-bg); */
    /* background-color: var(--bg-white); */
    /* background-color: var(--section-green-bg); */
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-height: 40vh;
    position: sticky;
    top: 150px;
     /* background: url("./images/generated-image\ \(10\).png") no-repeat center center/cover ; */
     background: url("/assests/images/generated-image (15).png") no-repeat center center/cover;
}

.step-content-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
}

.step-content-card p {
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.section-title{
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2rem; 
    color: var(--primary-blue);
    margin-bottom: 1rem; 
    text-align: center;
}

.section-title p {
    font-size: 1.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem !important;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .process-section {
        padding: 3rem 1rem; 
    }
    .process-grid {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .process-timeline-nav {
        position: static; 
        top: auto;
        height: auto;
        padding-bottom: 2rem; 
        overflow-x: auto; 
        white-space: nowrap; 
    }
    .timeline-track {
        display: none; 
    }
    .timeline-nav-list {
        display: flex; 
        padding-left: 0;
        justify-content: center;
    }
    .timeline-nav-item a {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
        white-space: normal;
        text-align: center;
    }
    .timeline-nav-item.is-active a {
        border-bottom: 3px solid var(--accent-orange); 
        padding-bottom: calc(0.5rem - 3px); 
    }
    .timeline-icon {
        width: 20px;
        height: 20px;
        margin-right: 5px;
        vertical-align: middle;
    }
    .step-content-card {
        padding: 1.5rem;
        min-height: auto;
        position: static; 
        top: auto;
        background-size: cover;
    }
    .step-content-card h3 {
        font-size: 1.25rem; 
    }
    .step-content-card p {
        font-size: 1rem; 
    }
    .section-title {
        margin-bottom: 30px; 
    }
    .section-title h2 {
        font-size: 1.5rem; 
    }
    .section-title p {
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .process-section {
        padding: 4rem 1.5rem;
    }
    .process-grid {
        gap: 3rem; 
    }
    .process-timeline-nav {
        top: 100px;
    }
    .timeline-nav-list {
        padding-left: 20px;
    }
    .timeline-nav-item a {
        font-size: 1.1rem; 
    }
    .step-content-card {
        padding: 2rem;  
        top: 100px; 
    }
    .step-content-card h3 {
        font-size: 1.4rem;
    }
    .step-content-card p {
        font-size: 1.05rem;
    }
    .section-title h2 {
        font-size: 1.75rem;
    }
    .section-title p {
        font-size: 1.3rem;
    }
}

@media (min-width: 1400px) {
    .process-section {
        max-width: 1400px; 
        margin: 0 auto;
    }

    .process-grid {
        gap: 6rem; 
    }
}

/* ---  FAQ Section --- */
.faq {
    padding: 5rem 2rem;
    background: var(--bg-white);
    /* background-color: var(--section-green-bg); */
}

.faq .container {
    max-width: 1100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}



.faq-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: left;
}

.faq-intro p {
    color: var(--text-secondary);
    text-align: left;
     margin-bottom: 0rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-white);
    /* background-color: var(--section-green-bg); */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 20px;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--section-blue-bg);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem; 
    color: var(--accent-orange);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: -1px;
}

.faq-item.active .faq-answer {
    padding-top: 20px;
}

.faq-image {
    /* position: absolute; */
    /* bottom: 0; 
    left: 0;  */
    z-index: 1; 
    width: 300px;
    height: auto;
}

.faq-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 0px;
} 

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        text-align: center;
        margin-bottom: 2rem;
    }

    .faq-intro h2,
    .faq-intro p {
        text-align: center;
    }

     .faq-image {
        position: static; 
        text-align: center; 
        width: 100%;
        margin: 2rem auto 0; /* Center the image and add top margin */
        text-align: center;
        max-width: 250px; /* Limit max width on small screens if it gets too big */
    }
    }


/* Footer */
 
.main-footer {
    background-color: var(--accent-blue);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0 10px;
}

.main-footer .container {
    display: grid;
    grid-template-areas:
        "services contact-info"
        "addresses addresses"
        "bottom bottom";
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
    position: relative;
    padding: 20px;
}

.footer-col.our-services-col {
    grid-area: services;
}

.footer-contact-info-group {
    grid-area: contact-info;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-addresses-group {
    grid-area: addresses;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-bottom {
    grid-area: bottom;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col.our-services-col a { 
    color: var(--bg-white); 
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col.our-services-col a:hover {
    color: var(--accent-orange);
}

.footer-col h5 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.contact-item p, .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-orange);
}

.address-card {
    background-color: rgba(0, 0, 0, 0.1); 
    padding: 20px;
    border-radius: 8px;
}

.address-card h6 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.address-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.social-icons a {
    color: var(--bg-white);
    font-size: 1.4rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-orange);
}

@media (max-width: 900px) {
    .main-footer .container {
        grid-template-areas:
            "services"
            "addresses"
            "contact-info"
            "bottom";
        grid-template-columns: 1fr; 
    }

    .footer-addresses-group {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-icons {
        margin-top: 10px;
    }
}


/* --- Inquiry Form Modal Styles --- */
.form-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    padding: 10px; 
    box-sizing: border-box;
    transition: opacity 0.2s ease, visibility 0s 0.2s;
}

.form-modal-overlay.modal-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease, visibility 0s;
}

.form-modal {
    background-color: var(--bg-white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 380px; 
    position: relative;
    transform: scale(0.95);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.form-modal-overlay.modal-visible .form-modal {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 1.4rem; 
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.close-modal-btn:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.form-modal-header, .modal-header {
    text-align: center;
    margin-bottom: 8px; 
}

.modal-header h2, 
.form-modal-header h2 {
    font-size: 1.2rem; 
    color: var(--primary-blue);
    margin: 0 0 2px 0;
    font-weight: 700;
}

.modal-header p,
.form-modal-header p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
}

.inquiry-form .form-group {
    margin-bottom: 6px;
}

.inquiry-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 1px;
    font-size: 0.75rem; 
    color: var(--primary-blue);
}

.inquiry-form input {
    width: 100%;
    height: 30px; 
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.inquiry-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 8px;
    margin-bottom: 8px;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 14px !important; 
    height: 14px !important; 
    margin-right: 6px;
    border: 1px solid var(--primary-blue);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    outline: none;
    flex-shrink: 0;
    top: 2px; 
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid var(--bg-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-group label {
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.7rem; 
    line-height: 1.3;
    margin: 0;
}

.checkbox-group label a {
    color: var(--primary-blue); 
    text-decoration: none;
}

.inquiry-form .submit-btn {
    width: 100%;
    padding: 8px !important;
    font-size: 0.95rem;
    margin-top: 5px;
    cursor: pointer;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 4px;
}

@media screen and (max-width: 480px), screen and (max-height: 600px) {
    .form-modal-overlay {
        padding: 0; 
        align-items: flex-end; 
    }

    .form-modal {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 12px 12px 0 0;
        padding: 20px 20px 30px 20px;
        transform: translateY(100%); 
    }
    
    .form-modal-overlay.modal-visible .form-modal {
        transform: translateY(0);
    }

    .modal-header h2, 
    .form-modal-header h2 {
        font-size: 1.1rem;
        text-align: left; 
    }
    
    .modal-header p,
    .form-modal-header p {
        text-align: left;
    }

    .close-modal-btn {
        top: 10px;
        right: 15px;
        font-size: 1.8rem; 
        padding: 10px;
    }

    .inquiry-form input {
        height: 35px; 
        font-size: 16px; 
    }

    .checkbox-group label {
        font-size: 0.75rem;
    }
    
    .inquiry-form .submit-btn {
        padding: 12px !important; 
        font-size: 1rem;
    }
}

/* Franchise */
.btn.open-franchise-modal {
    background-color: var(--accent-orange);
    color: var(--primary-blue);
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn.open-franchise-modal:hover {
    background-color: #28a745;
}

.f-modal-overlay {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.6); 
    align-items: center; 
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.f-modal-overlay.active {
    display: flex; 
}

.f-franchise-form-container {
    background-color: var(--bg-white);
    margin: auto; 
    padding: 15px 15px 10px 15px; 
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative; 
    width: 100%; 
    max-width: 400px; 
    box-sizing: border-box; 
    transform: translateY(-20px); 
    opacity: 0; 
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.f-modal-overlay.active .f-franchise-form-container {
    transform: translateY(0);
    opacity: 1; 
}

.f-franchise-form-container h2 {
    color: var(--primary-blue);
    text-align: center;
    margin: 0 0 10px 0 !important; 
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.f-close-button {
    color: var(--footer-bg);
    position: absolute;
    top: 5px; 
    right: 10px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.f-close-button:hover {
    color: var(--primary-blue);
}

.f-form-group {
    margin-bottom: 6px; 
}

.f-form-group label {
    display: block;
    margin-bottom: 1px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.8rem; 
}

.f-form-group input[type="text"],
.f-form-group input[type="tel"],
.f-form-group input[type="email"] {
    width: 100%;
    padding: 4px 8px; 
    height: 30px; 
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-primary);
    background-color: var(--bg-light-grey);
    box-sizing: border-box; 
    transition: border-color 0.2s ease;
}

.f-form-group input:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.f-checkbox-group {
    display: flex; 
    align-items: flex-start; 
    margin-top: 8px;
    margin-bottom: 8px; 
    font-size: 0.75rem; 
    color: var(--primary-blue); 
    line-height: 1.2;
}

.f-checkbox-group input[type="checkbox"] {
    margin-right: 6px; 
    width: 14px; 
    height: 14px; 
    cursor: pointer;
    border: 1px solid var(--primary-blue);
    border-radius: 2px;
    position: relative;
    top: 1px;
}

.f-submit-button {
    width: 100%;
    padding: 8px; 
    background-color: var(--accent-orange);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 5px;
    text-transform: uppercase;
}

.f-submit-button:hover {
    background-color: #2da32f; 
}

@media screen and (max-width: 480px), screen and (max-height: 600px) {
    .f-modal-overlay {
        padding: 0; 
        align-items: flex-end;
    }

    .f-franchise-form-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 8px 8px 0 0; 
        padding: 15px 20px 20px 20px;
        transform: translateY(100%); 
    }
    
    .f-modal-overlay.active .f-franchise-form-container {
        transform: translateY(0);
    }

    .f-franchise-form-container h2 {
        font-size: 1rem;
        margin-bottom: 8px !important;
        text-align: left; 
    }

    .f-close-button {
        top: 10px;
        right: 15px;
        font-size: 1.8rem; 
    }

    .f-form-group input[type="text"],
    .f-form-group input[type="tel"],
    .f-form-group input[type="email"] {
        height: 35px;
        font-size: 16px; 
    }
    
    .f-submit-button {
        padding: 10px;
        margin-top: 10px;
    }
}

/* Pop up */
 /* .p-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.p-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.p-franchise-form-container {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.p-modal-overlay.is-visible .p-franchise-form-container {
    transform: translateY(0);
}

.p-close-button {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 20x;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.p-close-button:hover {
    color: var(--text-primary);
}

.p-franchise-form-container h2 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 5px;
    text-align: center;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 5px;
    display: inline-block;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.p-form-group {
    margin-bottom: 20px;
}

.p-form-group label {
    display: block;
    margin-bottom: 1px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
}

.p-form-group input[type="text"],
.p-form-group input[type="tel"] ,
.p-form-group input[type="email"] 
 {
    width: calc(100% - 20px);
    padding: 5px 3px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.p-form-group input[type="text"]:focus,
.p-form-group input[type="tel"]:focus,
.p-form-group input[type="email"]:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(39, 52, 116, 0.2);
    outline: none;
}

.f-checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.f-checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    accent-color: var(--accent-orange); 
}

.f-checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.p-submit-button {
    display: block;
    width: 100%;
    padding: 10px 10px;
    background-color: var(--accent-orange);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.p-submit-button:hover {
    background-color: #2da82d;
    transform: translateY(-2px);
}

.p-submit-button:active {
    transform: translateY(0);
}

.register-form-open .p-modal-overlay,
.franchise-form-open .p-modal-overlay {
    display: none !important;
} */ 

/* ---PopUp Overlay --- */

.p-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center; 

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;

    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
    padding: 10px; 
    box-sizing: border-box;
}

.p-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.p-franchise-form-container {
    background-color: var(--bg-white, #fff);
    width: 100%;
    max-width: 340px; 
    padding: 15px;    
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    box-sizing: border-box;
    margin: auto; 
    transform: translateY(-15px);
    transition: transform 0.2s ease;
}

.p-modal-overlay.is-visible .p-franchise-form-container {
    transform: translateY(0);
}

.p-close-button {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--text-secondary, #666);
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px; 
}

.p-close-button:hover {
    color: var(--primary-blue, #000);
}

.p-franchise-form-container h2 {
    color: var(--primary-blue, #000);
    font-size: 1.1rem; 
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px 0;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--accent-orange, orange);
}

.p-form-group {
    margin-bottom: 8px; 
}

.p-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue, #000);
    margin-bottom: 2px;
}

.p-form-group input[type="text"],
.p-form-group input[type="tel"],
.p-form-group input[type="email"] {
    width: 100%;
    height: 32px; 
    padding: 4px 8px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color, #ccc);
    border-radius: 4px;
    box-sizing: border-box; 
    transition: border-color 0.2s;
}

.p-form-group input:focus {
    outline: none;
    border-color: var(--primary-blue, blue);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.f-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 10px 0;
}

.f-checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--accent-orange, orange);
    position: relative;
    top: 2px; 
}

.f-checkbox-group label {
    font-size: 0.75rem; 
    color: var(--text-secondary, #555);
    line-height: 1.3;
    cursor: pointer;
}

.p-submit-button {
    width: 100%;
    padding: 10px;
    background-color: var(--accent-orange, orange);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.p-submit-button:hover {
    background-color: #d98e00; 
    transform: translateY(-1px);
}

@media screen and (max-width: 480px), screen and (max-height: 600px) {
    
    .p-modal-overlay {
        align-items: flex-start; 
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .p-franchise-form-container {
        max-width: 95%; 
        margin: 0 auto; 
        transform: scale(0.98); 
    }

    .p-modal-overlay.is-visible .p-franchise-form-container {
        transform: scale(1);
    }

    .p-form-group input[type="text"],
    .p-form-group input[type="tel"],
    .p-form-group input[type="email"] {
        font-size: 16px; 
        height: 40px; 
    }

    .p-submit-button {
        padding: 12px; 
        font-size: 1rem;
    }

    .p-close-button {
        font-size: 1.6rem;                              
        top: 10px;
        right: 15px;
    }
}




 /*.p-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.p-franchise-form-container {
    background: var(--bg-white);
    padding: 0;
    width: 650px;
    max-width: 98%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: 1px solid var(--border-color);
    position: relative;
}

.p-close-button {
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: var(--primary-blue);
    font-weight: bold;
}

.customPopupForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 12px;
}

.customPopupForm .p-form-group:nth-child(5),
.customPopupForm .f-checkbox-group,
.customPopupForm .g-recaptcha,
.customPopupForm .p-submit-button {
    grid-column: span 2;
}

.p-franchise-form-container h2 {
    text-align: center;
    margin: 0;
    padding: 10px 0 6px 0;
    font-size: 20px;
    color: var(--primary-blue);
    border-bottom: 1px solid var(--border-color);
    background: var(--section-blue-bg);
    border-radius: 10px 10px 0 0;
}

.p-form-group label {
    margin: 0 0 2px 0;
    display: block;
    font-size: 13px;
    color: var(--text-primary);
}

.p-form-group input,
.p-form-group textarea {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--bg-light-grey);
    font-size: 14px;
    color: var(--text-primary);
    box-sizing: border-box;
    height: 30px;
    transition: all 0.15s ease-in-out;
}

.p-form-group input:focus,
.p-form-group textarea:focus {
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 4px rgba(39, 52, 116, 0.3);
}

.p-form-group textarea {
    height: 50px !important;
    border-radius: 10px;
    resize: none;
}

.f-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-primary);
}

.f-checkbox-group input {
    width: 14px;
    height: 14px;
    accent-color: var(--primary-blue);
}

.g-recaptcha {
    transform: scale(0.90);
    transform-origin: 0 0;
    margin: 0;
    margin-bottom: 0px;
}

.p-submit-button {
    padding: 8px 0;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: 0.2s ease;
    margin-top: 0px;
}

.p-submit-button:hover {
    background: var(--accent-blue);
} */





/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 9999;
}
.whatsapp-float img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.whatsapp-float img:hover {
    transform: scale(1.1);
}
