@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f6f5f5;
  color: #fff;
  max-width: 100%;
  overflow-x: hidden;

}

/* Navbar */

.navbar { 
  background: #000; 
  padding: 25px 25px; 
  height: 100px; 
}

/* FLEXBOX ALIGNMENTS */ 
.navbar { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 20px 50px; 
}

/* LOGO */ 
.logo img { 
  height: 45px; 
  padding-left: 40px; 
}

/* NAV CONTAINER */ 
.nav-container { 
  display: flex; 
  align-items: center; 
  gap: 40px; /* space between menu and contact button */ 
} 

/* NAV LINKS */ 
.nav-links { 
  display: flex; 
  align-items: center; 
  list-style: none; 
  padding-right: 150px; 
  gap: 30px; /* equal spacing between all menu items */ 
} 

.nav-links li a { 
  text-decoration: none; 
  color: #fff; 
  font-size: 16px; 
} 

.nav-links li a:hover { 
  color: #cac9c8; 
} 

/* DROPDOWN */ 
.dropdown { 
  position: relative; 
} 

.dropdown-menu { 
  position: absolute; 
  top: 35px; 
  left: 0; 
  background: white; 
  width: 220px; 
  list-style: none; 
  padding: 10px 0; 
  border-radius: 6px; 
  display: none; 
} 

.dropdown-menu li a { 
  padding: 10px 18px; 
  display: block; 
  color: black; 
}

.dropdown:hover .dropdown-menu { 
  display: block; 
}

/* CONTACT BUTTON */ 
.contact-btn { 
  background-color: transparent; 
  color: #fff; 
  border: 1.5px solid #fff; 
  padding: 12px 30px; 
  border-radius: 25px; 
  cursor: pointer; 
  font-size: 16px; 
  text-decoration: none; 
} 

.contact-btn:hover { 
  background-color: #fff; 
  color: #000; 
}

.close-btn {
    display: none;
}



/* MENU ICON DEFAULT */
.menu-icon {
    width: 28px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon div {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
}
/* MENU → X TRANSFORM */
.menu-icon.active div:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}
.menu-icon.active div:nth-child(2) {
    opacity: 0;
}
.menu-icon.active div:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

/* MOBILE NAV PANEL */
.nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: 0.4s ease;
    z-index: 1001;
}

/* PANEL SHOW */
.nav-container.active {
    right: 0;
}



/* footer-section */
.new-footer {
    width: 100%;
    padding: 60px 30px;
    background: #000;
    color: #a5a3a3;
    font-family: "Poppins", sans-serif;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-info a {
    color: #a5a3a3;       /* your footer theme अनुसार बदलो */
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
    color: #fff;
}


.footer-info i {
    color: #fff;
    margin-right: 7px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-left: 28px;
    text-align: left;
    justify-content: flex-start;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    padding: 5px;
}

.footer-col ul li:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.8;
}

.bottom-left a {
    margin-right: 20px;
    font-size: 13px;
    color: #a5a3a3;
}

.footer-socials i {
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-socials i:hover {
    color: #fff;
}


.menu-icon {
    width: 35px;
    height: 28px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon div {
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* MENU ICON ACTIVE ANIMATION */
.menu-icon.active div:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.menu-icon.active div:nth-child(2) {
    opacity: 0;
}

.menu-icon.active div:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}



/* project-section */

.title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
}

.subtitle {
    text-align: center;
    font-size: 20px;
    color: #242424;
    margin-bottom: 40px;
}

.projects-container {
    display: grid;
    width: 90%;
    height: 100%;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-box {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    transition: .3s;
}

.project-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-box:hover {
    transform: translateY(-5px);
}

.content {
    padding: 15px;
}

.content h3 {
    font-size: 20px;
    color: #4a4a4a;
}

.content p {
    font-size: 16px;
    color: #666;
}
.icon {
    font-size: 28px;
    display: inline-block;
    background: #eee;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 8px;
}


/* Project boxes */

.project-box {
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.project-box:hover {
    transform: translateY(-5px);
}
.project-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* RIGHT PANEL */
.right-panel {
    position: fixed;
    top: 0;
    /* right: -700px;
    width: 700px;
    height: 100vh; */
    background: #fff;
    box-shadow: -4px 0 16px rgba(0,0,0,0.25);
    padding: 40px;
    /* transition: 0.4s ease-in-out; */
    z-index: 99999;
    overflow: auto;
    right: -100%;
    width: 400px;
    height: 100vh;
    transition: 0.4s ease;
}
.right-panel.open {
    right: 0;
}

.right-panel.active {
    right: 0;
}

.panel-close {
    font-size: 30px;
    cursor: pointer;
    float: right;
    background: transparent;
    color: #f53535;
    margin-bottom: 15px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}
.panel-desc{
    color: #353535;
    font-size: 16px;
}
.panel-close {
    font-size: 24px;
    cursor: pointer;
    width: 80px;
    height: 32px;
    float: right;
    color: #ea3f3f;
}

.panel-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-top: 15px;
}

.stats-row {
    display: flex;
    gap: 18px;
    margin: 20px 0;
    color: #353535;
    font-size: 14px;
}

.stat-box {
    border: 1px solid #ddd;
    padding: 15px 60px;
    border-radius: 10px;
    text-align: center;
}
.stat-box h3 {
    color: #ff7a00;
    margin: 0;
    font-size: 20px;
}

.key-heading {
    margin-top: 20px;
    color: #000;
    font-size: 22px;
}

.features li {
    margin: 8px 0;
    color: #353535;
}

.btn-row {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* .btn1 {
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ccc;
} */

.live {
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ccc;
    background: #ff7a00;
    color: white;
    border: none;
}
.src {
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ccc;
    background: #fff;
}



/* blog-section */

.blogs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    padding: 60px;
}

.subtitle {
    color: #505050;

}

.filter-buttons {
    display: flex;
    gap: 12px;
    margin: 20px 0 30px;
    justify-content: center;
}

.filter-btn:hover {
    background-color: #a5a3a3;
    color: #000;
    cursor: pointer;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    background: #f1f1f1;
    font-size: 15px;
    transition: 0.3s;
}

.filter-btn.active {
    background: #ff7c23;
    color: #fff;
}


.blog-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.blog-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.blog-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-box .content {
    padding: 18px;
}

.read-btn {
    padding: 5px 12px;
    border-radius: 5px;
    top: 10px;
    bottom: 10px;
}

.blog-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-box p {
    color: #555;
    font-size: 15px;
}



.close-btn1 {
    font-size: 30px;
    cursor: pointer;
    float: right;
}

#panelTitle {
    color: #000;
    margin-bottom: 10px;
    border-bottom: 2px solid #474747;
}

.panel-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}


.container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

/* Blog List */
.blog-list {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.blog-box {
    padding: 20px;
    background: #f3f3f3;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.blog-box:hover {
    background: #e8e8e8;
}

/* Side Panel */


 .side-panel {
    position: fixed;
    right: -450px;
    top: 0;
    width: 420px;
    height: 100vh;
    background: #fff;
    transition: 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
    padding: 20px 30px;
    z-index: 9999;
}

.side-panel.open {
    right: 0;
}

.close-btn1 {
    cursor: pointer;
    font-size: 20px;
    float: right;
    margin-bottom: 10px;
}

.panel-image {
    width: 100%;
    border-radius: 10px;
    margin: 0;
    
}

.author-box {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.author-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.relatedLinks {
    color: #000;
    font-size: 18px;
    margin-top: 10px;
}

.related-item {
    padding: 12px;
    background: #303030;
    border-radius: 8px;
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.related-item:hover {
    color: #ff7a00;
    cursor: pointer;
}

.side-panel {
    position: fixed;
    padding: 20px 30px;
    right: -600px;
    top: 0;
    width: 600px;
    height: 100%;
    background: #fff;
    transition: .4s;
}

.side-panel.open {
    right: 0;
}

.side-panel.open {
                right: 0;
            }

.close-btn1 {
    float: right;
    font-size: 26px;
    cursor: pointer;
}
 

/* cta-section */
.cta-section {
    background-color: #dad8d8;
    margin: 30px auto;
    border-radius: 20px;
    max-width: 1200px;
}

.cta {
    text-align: center;
    padding: 80px 20px;
    font-weight: 500;
    color: rgb(93, 91, 91);
}

          .cta-section h2 {
              font-size: 42px;
              font-weight: 700;
              margin-bottom: 15px;
          }

          .cta-section p {
              font-size: 18px;
              margin-bottom: 35px;
              color: #000;
          }

          .cta-buttons {
              display: flex;
              justify-content: center;
              gap: 20px;
              flex-wrap: wrap;
          }

          .btn-orange {
              background-color: #ff8500;
              color: white;
              padding: 14px 28px;
              border-radius: 30px;
              text-decoration: none;
              font-size: 16px;
              font-weight: 600;
              transition: 0.3s;
          }

          .btn-orange:hover {
              background-color: #e87300;
          }

          .btn-dark {
              background-color: #2c5468;
              color: white;
              padding: 14px 28px;
              border-radius: 30px;
              text-decoration: none;
              font-size: 16px;
              font-weight: 600;
              transition: 0.3s;
          }

          .btn-dark:hover {
              background-color: #1e3e4d;
          }

/* HERO SECTION */
.hero-section {
    width: 90%;
    margin: 50px auto;
    padding: 80px 40px;

    background: linear-gradient(
                rgba(9, 29, 49, 0.92), 
                rgba(9, 29, 49, 0.92)
              ),
              url('https://i.imgur.com/0RIbZcO.jpg');

    background-size: cover;
    background-position: center;

    border-radius: 25px;
    text-align: center;
    color: #fff;
}

/* Heading */
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Sub text */
.hero-content p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
    color: #d8e6f3;
}



/* ========= COUNTERS SECTION ========= */
.counter-section {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 60px 5%;
    gap: 15px;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1 1 calc(50% - 15px);
    min-width: 150px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #cccccc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.icon-box img {
    width: 22px;
    height: 22px;
}

.counter-box h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
}

.counter-box p {
    font-size: 14px;
    color: #666;
}

@media (min-width: 768px) {
    .counter-box {
        flex: 0 0 calc(25% - 22.5px);
        max-width: calc(25% - 22.5px);
    }
}

/* Mobile → 2 cards per row */
@media (max-width: 767px) {
    .counter-section {
        justify-content: center;
    }

    .counter-box {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

/* Very small phones → 1 card */
@media (max-width: 480px) {
    .counter-box {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* ========= MISSION SECTION ========= */
.mission-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 5%;
}

.mission-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
}

.mission-text {
    flex: 1;
    min-width: 300px;
    color: #000;
}

.mission-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}




/* ===== VALUES SECTION ===== */

.values-section {
    padding: 70px 5%;
    text-align: center;
    margin: 20px;
    border-radius: 20px;
    background-color: #d0cece;
}

.values-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

.values-subtitle {
    font-size: 16px;
    color: #444444;
    max-width: 680px;
    margin: 0 auto 50px;
}

/* Cards Container */
.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Card Design */
.value-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    transform: 0.3s ease;
    box-shadow: 0 15px 35px rgba(183, 70, 163, 0.483);
}

/* Icon Box */
.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.value-icon img {
    width: 26px;
}

/* Icon Background Colors */
.pink { background: #ff96be; }
.purple { background: #cfb5ea; }
.blue { background: #cce5f6; }
.green { background: #aaeec2; }

/* Text */
.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-align: left;
}

.value-card p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    text-align: left;
}




/* TEAM SECTION */
.team-section {
    text-align: center;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.team-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.team-subtitle {
    font-size: 17px;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* Team Cards Container */
.team-container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

/* Team Card */
.team-card {
    background: transparent;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 3px 18px rgb(176, 185, 178);
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Image */
.team-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    margin-left: 70px;
    
}

/* Name */
.team-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

/* Role */
.team-card .role {
    color: #ff7a00;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Description */
.team-card .desc {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}




@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .side-panel {
        width: 100%;
    }
}



/* contact-section */
.contact-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      padding: 60px;
      background-color: #f3f3f3ec;
    }

    /* Left section */
    .contact-left {
      flex: 1 1 45%;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .contact-left h2 {
      font-size: 2.5rem;
      font-weight: 500;
      color: #000;
    }

    .contact-left h4 {
      font-size: 1.3rem;
      font-weight: 500;
      line-height: 1.2;
      color: #000;
    }

    .contact-left p {
      color: #555;
      font-size: 1.3rem;
      max-width: 90%;
    }

    .contact-box p a {
    color: #555;                /* Normal text color */
    text-decoration: none;      /* No underline */
    font-weight: 500;
    transition: 0.3s ease;
    }

    .contact-box p a:hover {
        color: #007bff;             /* Hover blue color */
        text-decoration: underline; /* Underline on hover */
    }

    .contact-box {
        cursor: pointer;
    }

    .contact-box p {
        margin: 0;
        color: #555;
    }


    .google-review {
      display: flex;
      align-items: center;
      gap: 10px;

    }

    .google-review img {
      width: 180px;
      height: auto;
      margin-top: 40px;
      margin-bottom: 30px;
    }

    .social-section {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .social-section p {
      font-weight: 600;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 42px;
      height: 42px;
      background: #000;
      color: #fff;
      border-radius: 50%;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      color: #fff;
      position: pointer;
    }

    /* Right section form */
    .contact-right {
      flex: 1 1 45%;
      background: #fff;
      color: #000;
      padding: 50px;
      box-shadow: 0 0 15px rgba(0,0,0,0.08);
    }

    .contact-right h3 {
      font-size: 1.3rem;
      font-weight: 500;
      padding-bottom: 20px;
      margin-bottom: 25px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    form label {
      font-weight: 500;
      font-size: 1.2rem;
    }

    .successBox {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
}

.success-card {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.success-card .icon {
    background: #daf7e3;
    color: #2ecc71;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    form input,
    form textarea {
      width: 100%;
      padding: 10px;
      border: none;
      border-bottom: 1px solid #aaa;
      font-size: 1.2rem;
      background: transparent;
      outline: none;
      transition: 0.3s ease;
    }

    form input:focus,
    form textarea:focus {
      border-bottom: 1px solid #000;
    }

    .phone-group {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .phone-group span {
      background: #f1f1f1;
      padding: 6px 12px;
      border-radius: 5px;
    }

    form textarea {
      min-height: 90px;
      resize: none;
    }

    form button {
      margin-top: 15px;
      background: black;
      color: #fff;
      border: 1.5px solid #000;
      padding: 12px 25px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 250px;
  
    }

    form button:hover {
      color: #000;
      background-color: #fff;
    }

  .phone-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 8px 0;
  margin-bottom: 20px;
  position: relative;
  overflow: visible !important;
}

/* Country select dropdown */
.country-select {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
}

.country-select img {
  width: 20px;
}

.country-list {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    width: 160px;
    margin-top: 8px;
    list-style: none;
    padding: 0;
    z-index: 999;
}

.country-list.show {
    display: block;
}

.country-list li {
    padding: 8px 12px;
    cursor: pointer;
}

.country-list li:hover {
    background: #f2f2f2;
}

.country-select {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    background: #fff;
}


/* Phone input */
.phone-group input {
  border: none;
  outline: none;
  flex: 1;
  padding-left: 10px;
  font-size: 15px;
}




.contact-section {
    width: 100%;
    padding: 80px 6%;
    text-align: center;
}


.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Contact Box */
.contact-box {
    background: #fff;
    padding: 40px 25px;
    height: 280px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid #ececec;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

/* Icon Box */
.contact-box .icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

/* Hover Animation */
.contact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.contact-box h3 {
    color: #000;
}

.contact-box p {
    color: #555;
    margin-top: 20px;
}

/* Fade In Scroll Animation */
.fade-up {
    animation: fadeUp 0.9s ease forwards;
}

.fade-up:nth-child(2) { animation-delay: 0.15s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.45s; }

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}



/* Newsletter Section */
.newsletter-section {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(180deg, #071a2f, #123253);
    border-radius: 30px;
    text-align: center;
    color: white;
    margin: 50px auto;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(40px);
}

/* Title */
.newsletter-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Sub Text */
.newsletter-section p {
    font-size: 17px;
    color: #d6d9dd;
    margin-bottom: 25px;
}

/* Form */
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Input */
.newsletter-form input {
    width: 280px;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 20px;
    font-size: 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    transition: 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #cfd5dc;
}

/* Focus */
.newsletter-form input:focus {
    border-color: #fff;
}

/* Button */
.newsletter-form button {
    background: #f57a1a;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background: #d8690f;
}

/* Animation */
.fade-up {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Section General */
.faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
}

/* Title */
.faq-title {
    color: #000;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Subtitle */
.faq-subtitle {
    font-size: 17px;
    color: #6b6f76;
    margin-bottom: 30px;
}

/* FAQ Grid */
.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

/* Boxes */
.faq-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eeeeee;
    text-align: left;
    transition: 0.3s ease;
}

/* FAQ Hover Animation */
.faq-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid pink;
}

/* Headings */
.faq-box h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}

/* Text */
.faq-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Fade Up Animation */
.fade-up {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}



/* contact-section */
.contact-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      padding: 60px;
      background-color: #f3f3f3ec;
    }

    /* Left section */
    .contact-left {
      flex: 1 1 45%;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .contact-left h2 {
      font-size: 2.5rem;
      font-weight: 500;
      color: #000;
    }

    .contact-left h4 {
      font-size: 1.3rem;
      font-weight: 500;
      line-height: 1.2;
      color: #000;
    }

    .contact-left p {
      color: #555;
      font-size: 1.3rem;
      max-width: 90%;
    }

    .google-review {
      display: flex;
      align-items: center;
      gap: 10px;

    }

    .google-review img {
      width: 180px;
      height: auto;
      margin-top: 40px;
      margin-bottom: 30px;
    }

    .social-section {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .social-section p {
      font-weight: 600;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 42px;
      height: 42px;
      background: #000;
      color: #fff;
      border-radius: 50%;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      color: #fff;
      position: pointer;
    }

    /* Right section form */
    .contact-right {
      flex: 1 1 45%;
      background: #fff;
      color: #000;
      padding: 50px;
      box-shadow: 0 0 15px rgba(0,0,0,0.08);
    }

    .contact-right h3 {
      font-size: 1.3rem;
      font-weight: 500;
      padding-bottom: 20px;
      margin-bottom: 25px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    form label {
      font-weight: 500;
      font-size: 1.2rem;
    }

    form input,
    form textarea {
      width: 100%;
      padding: 10px;
      border: none;
      border-bottom: 1px solid #aaa;
      font-size: 1.2rem;
      background: transparent;
      outline: none;
      transition: 0.3s ease;
    }

    form input:focus,
    form textarea:focus {
      border-bottom: 1px solid #000;
    }

    .phone-group {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .phone-group span {
      background: #f1f1f1;
      padding: 6px 12px;
      border-radius: 5px;
    }

    form textarea {
      min-height: 90px;
      resize: none;
    }

    form button {
      margin-top: 15px;
      background: black;
      color: #fff;
      border: 1.5px solid #000;
      padding: 12px 25px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 250px;
  
    }

    form button:hover {
      color: #000;
      background-color: #fff;
    }

  .phone-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 8px 0;
  margin-bottom: 20px;
  position: relative;
}

/* Country select dropdown */
.country-select {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
}

.country-select img {
  width: 20px;
}

.country-list {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  width: 170px;
  list-style: none;
  padding: 5px 0;
  display: none;
  z-index: 500;
}

.country-list li {
  padding: 8px 12px;
  cursor: pointer;
}

.country-list li:hover {
  background: #f0f0f0;
}

/* Phone input */
.phone-group input {
  border: none;
  outline: none;
  flex: 1;
  padding-left: 10px;
  font-size: 15px;
}


/* service-section */

.services-section {
  padding: 40px;
  width: 100%;
  background-color: #bbb;
}

.services-section h2{
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}

.sub-text {
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 25px;
  text-align: center;
}

.services-container {
  display: flex;
  gap: 30px;
}

/* LEFT SIDE MENU */
.services-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #444444;
}

.service-btn {
  padding: 14px 10px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.service-btn:hover,
.service-btn.active {
  color: #000;
  font-weight: 600;
  border-bottom: 2px solid black;
}

/* RIGHT BOX */
.service-content {
  flex: 2;
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 8px;
  min-height: 450px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.4s;
  opacity: 1;
}

.service-content.fade {
  opacity: 0;
}

.service-content img {
  width: 100%;
  height: 300px;
}

.service-content #serviceList li {
  text-decoration: underline;
}
.meeting-btn {
  padding: 12px 20px;
  background-color: transparent;
  color: #000;
  border: 1.5px solid #000;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 50px;
}

.meeting-btn:hover {
  background: black;
  color: #fff;
  border: 1.5px solid #fff;
}




/* RESPONSIVE */


@media screen and (max-width: 820px) {
  .services-container {
    flex-direction: column;
  }
}


/* --- Responsive additions appended by assistant --- */
/* Make images flexible */
img, .img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Make containers responsive */
.container, .wrapper, .main, .content {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Flexible columns */
.row, .flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col, .column, .card {
    flex: 1 1 250px;
    min-width: 220px;
}

/* Navigation: stack on small screens */
nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
    list-style: none;
}
nav li { margin: 0; }

/* Utility */
.center { text-align: center; }

/* Media queries for smaller screens */
@media (max-width: 900px) {
    .container { width: 95%; }
    .col, .column, .card { flex: 1 1 200px; min-width: 180px; }
    header .logo, nav { text-align: center; }
}

/* Small phones */
@media (max-width: 480px) {
    .row, .flex-row { gap: 12px; }
    .col, .column, .card { flex-basis: 100%; min-width: 0; }
    nav ul { flex-direction: column; gap: 8px; }
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.1rem; }
    .hero { padding: 20px 0; }
}




/* responsive */

/* navbar-section */

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {

  /* Make navbar vertical */
  .navbar {
    flex-direction: row;
    height: auto;
    padding: 20px 25px;
    gap: 20px;
    text-align: center;
  }

  /* Convert nav links into block layout */
  .nav-container {
    flex-direction: row;
    gap: 20px;
  }

  .nav-links {
    flex-direction: row;
    gap: 15px;
    padding: 0;
  }

  .nav-links li a {
    font-size: 18px;
  }

  .contact-btn {
    padding: 10px 25px;
  }
}

@media (max-width: 1024px) {


  .navbar {
    flex-direction: row;
    height: auto;
    padding: 20px 25px;
    gap: 20px;
    text-align: center;
  }

  /* Convert nav links into block layout */
  .nav-container {
    flex-direction: row;
    gap: 20px;
  }

  .nav-links {
    flex-direction: row;
    gap: 15px;
    padding: 0;
  }

  .nav-links li a {
    font-size: 18px;
  }

  .contact-btn {
    padding: 10px 25px;
  }
}


@media (max-width: 767px) {

    /* dropdown container */
    .nav-links .dropdown {
        position: relative;
    }

    /* submenu */
    .nav-links .dropdown-menu {
        position: static !important;   /* absolute remove */
        width: 100%;
        max-width: 100%;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        box-sizing: border-box;
    }
}


@media (max-width: 768px) {
    .close-btn {
        display: flex;
        width: 50px;
        height: 50px;
        font-size: 32px;
        line-height: 1;

        align-items: center;
        justify-content: center;

        position: relative;
        top: 5px;
        right: 10px;

        color: #fff;
        cursor: pointer;
        z-index: 1000;
    }
}

@media (max-width: 768px) {

    /* LOGO LEFT + MENU RIGHT EXACT LIKE IMAGE */
    .navbar {
        padding: 18px 20px;
    }

    .menu-icon {
        display: flex;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000;
        padding: 35px 20px;
        transition: 0.4s ease;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .close-btn1 {
        display: block;
        font-size: 30px;
        color: #fff;
        cursor: pointer;
        margin-bottom: 20px;
        align-self: flex-end;
    }
}

/* DESKTOP (≥ 768px) */
@media (min-width: 769px) {

    .menu-icon {
        display: none;
    }

    .close-btn {
        display: none;
    }

    .nav-container {
        position: static;
        height: auto;
        width: auto;
        background: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 25px;
    }
}


/* project-section */

/* DEFAULT: LARGE SCREENS */
.projects-container {
    display: grid;
    width: 90%;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* RIGHT PANEL DEFAULT (LARGE) */
.right-panel {
    position: fixed;
    top: 0;
    right: -700px;
    width: 700px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 16px rgba(0,0,0,0.25);
    padding: 40px;
    transition: 0.4s ease-in-out;
    z-index: 99999;
    overflow: auto;
}
.right-panel.open {
    right: 0;
}



.panel-close {
    font-size: 30px;
    cursor: pointer;
    float: right;
    color: #000;
}

.panel-close:hover {
    color: #000;
    transform: scale(1.1);
    cursor: pointer;
}

/* -------------------------------------- */
/*      768px to 1199px (TABLETS)         */
/* -------------------------------------- */
@media (max-width: 1199px) {
    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Right panel should use FULL WIDTH */
    .right-panel {
        width: 100%;
        right: -100%;
    }
    .right-panel.open {
        right: 0;
    }
}

/* -------------------------------------- */
/*      0px to 767px (MOBILE)             */
/* -------------------------------------- */
@media (max-width: 767px) {
    .projects-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .project-box img {
        height: 200px;
    }

    /* Right panel full width */
    .right-panel {
        width: 100%;
        right: -100%;
        padding: 20px;
    }

    .panel-image {
        height: 180px;
    }

    .stats-row {
        flex-direction: column;
        gap: 10px;
    }

    .stat-box {
        width: 100%;
        padding: 12px;
    }

    .btn-row {
        flex-direction: column;
    }
}


/* blog-section */

.blogs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    padding: 60px;
}

@media (max-width: 767px) {

    .blogs-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .blog-box img {
        height: 200px;
        object-fit: cover;
    }

    .filter-buttons {
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .side-panel {
        width: 100%;
        right: -100%;
    }
}

.side-panel {
    position: fixed;
    right: -600px;
    top: 0;
    width: 600px;
    height: 100vh;
    background: #fff;
    padding: 20px 30px;
    transition: .4s;
    z-index: 9999;
}

.side-panel.open {
    right: 0;
}

/* Mobile side panel full width */
@media (max-width: 767px) {
    .side-panel {
        width: 100%;
    }
}

.close-btn1 {
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    float: right;
}



.blogs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    padding: 60px;
}

.blogs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    padding: 60px;
}

/* MOBILE: 0–767px → 1 per row */
@media (max-width: 767px) {
    .blogs-container {
        grid-template-columns: repeat(1, 1fr);
        padding: 20px;
    }

    .blog-box img {
        height: 200px;
        object-fit: cover;
    }

    .filter-buttons {
        flex-wrap: wrap;
        margin-left: 0;
        justify-content: center;
    }
}


/* Mobile (0–767px) → 1 per row */
@media (max-width: 767px) {
    .blogs-container {
        grid-template-columns: repeat(1, 1fr);
        padding: 20px;
    }

    .filter-buttons {
        flex-wrap: wrap;
        align-items: left;
        margin-left: 0;
        justify-content: center;
    }

    .blog-box img {
        height: 200px;
        object-fit: cover;
    }
}

/* ===========================
   SIDE PANEL RESPONSIVE 
=========================== */

/* Default: Large Screens */
.side-panel {
    position: fixed;
    right: -600px;
    top: 0;
    width: 600px;
    height: 100vh;
    background: #fff;
    transition: 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
    padding: 20px 30px;
    z-index: 9999;
}

.side-panel.open {
    right: 0;
}



/* Tablet & Mobile → Full width */
@media (max-width: 1199px) {
    .side-panel {
        width: 100%;
        right: -100%;
    }
    .side-panel.open {
        right: 0;
    }
}

/* ===========================
   CLOSE BUTTON (CHOKDI)
=========================== */

.close-btn1 {
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    color: #333;
    background: #f2f2f2;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    transition: 0.3s ease;
}

.close-btn1:hover {
    background: #ff4343;
    color: #fff;
    transform: scale(1.1);
}

/* .hero-section */

.hero-section {
    box-sizing: border-box;
    max-width: 100%;
    margin: 50px auto;
    background: linear-gradient(
                rgba(9, 29, 49, 0.92), 
                rgba(9, 29, 49, 0.92)
              ),
              url('https://i.imgur.com/0RIbZcO.jpg');

    background-size: cover;
    background-position: center;

    border-radius: 25px;
    text-align: center;
    color: #fff;
}

/* Heading */
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Sub text */
.hero-content p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
    color: #d8e6f3;
}



/* ===== TABLET RESPONSIVE (768px ↓) ===== */
@media (max-width: 1200px) {
    .hero-section {
        padding: 70px 30px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content p {
        font-size: 17px;
    }
}

/* Tablets (992px and below) */
@media (max-width: 992px) {
    .hero-section {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* Small tablets & large phones (768px and below) */
@media (max-width: 768px) {
    .hero-section {
        margin: 40px auto;      /* center horizontally */
        padding: 50px 20px;
        border-radius: 20px;
        width: 100%;
        max-width: 700px;       /* optional – tablet width control */
        box-sizing: border-box; /* VERY IMPORTANT */
    }

    .hero-content {
        text-align: center;     /* text center */
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 15px;
    }
}


/* Mobile phones (576px and below) */
@media (max-width: 576px) {
    .hero-section {
        width: 95%;
        padding: 40px 20px;
        border-radius: 18px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Extra small phones (400px and below) */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
    }
} 






/* mission-section */


@media (max-width: 767px) {
    .mission-section {
        flex-direction: column;
        text-align: center;
    }

    .mission-image,
    .mission-text {
        width: 100%;
    }

    .mission-image img {
        width: 100%;
        height: auto;
    }
}

/* Tablet & Desktop (768px and above) → side by side */
@media (min-width: 768px) {
    .mission-section {
        flex-direction: row;
        text-align: left;
    }

    .mission-image,
    .mission-text {
        width: 50%;
    }
}

/* value-section */

@media (max-width: 767px) {
    .values-container {
        grid-template-columns: 1fr;
    }
}

/* Tablet & Desktop (768px and above) → 2 cards per row */
@media (min-width: 768px) {
    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* team-section */

@media (max-width: 767px) {
    .team-container {
        grid-template-columns: 1fr;
    }
}

/* Tablet & Desktop (768px and above) → 2 cards per row */
@media (min-width: 768px) {
    .team-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 769px) {
    .team-container {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* cta-section */

@media (max-width: 992px) {
    .cta {
        padding: 70px 20px;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
    .cta-section {
        padding: 20px;
    }

    .cta {
        padding: 60px 15px;
    }

    .cta-section h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .cta-section p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-orange,
    .btn-dark {
        width: 100%;
        max-width: 260px;
        margin: auto;
    }
}

/* Small phones (below 480px) */
@media (max-width: 480px) {
    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .cta {
        padding: 50px 12px;
    }
}




/* footer-section */

/* 📌 992px to 768px → 2 Columns */
@media (max-width: 1024px) {
    .footer-row {
        grid-template-columns: repeat(2, 2fr);
        gap: 40px;
        text-align: left;
    }

    .footer-col h4,
    .footer-col ul li,
    .footer-text,
    .footer-info p {
        text-align: left;
    }
}

/* 📌 Below 768px → 1 Column */
@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: left;
        gap: 15px;
    }
}


/* 📌 Below 768px → 1 Column */
@media (max-width: 425px) {
    .footer-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: left;
        gap: 15px;
    }
}




/* 768px and larger — 2 columns */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 767px and smaller — 1 column */
@media (max-width: 767px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}



/* contact-section */

/* ====== RESPONSIVE ====== */

/* 767px and smaller → stack (top–bottom) */
@media (max-width: 767px) {

  .contact-container {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
  }

  .contact-right {
    padding: 30px 20px;
  }

  .contact-left h2 {
    font-size: 2rem;
  }

  .contact-left p {
    font-size: 1.1rem;
  }

  form button {
    width: 100%;
  }
}

/* 768px and larger → both side by side */
@media (min-width: 768px) {

  .contact-container {
    flex-direction: row;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 48%;
  }
}


.contact-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
  padding: 30px 20px;
}

/* Full width for both sections in mobile */
.contact-left,
.contact-right {
  width: 100%;
}

/* Buttons & form elements fit mobile */
.contact-right {
  padding: 30px 20px;
}

form button {
  width: 100%;
}


/* ===== TABLET & DESKTOP (768px and above) ===== */
@media (min-width: 768px) {

  .contact-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 60px;
    gap: 40px;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 48%;   /* side by side */
    width: 48%;
  }

  .contact-right {
    padding: 50px;
  }

  form button {
    width: 250px; /* normal desktop size */
  }
}


/* ===== LARGER SCREENS (1200px+) OPTIONAL IMPROVEMENTS ===== */
@media (min-width: 1200px) {
  .contact-left p {
    max-width: 80%;
  }
}


/* faq-section */

@media (max-width: 1024px) {

    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* ---------- 767px and below (Mobile & small tablets) ---------- */
@media (max-width: 767px) {

    .faq-section {
        padding: 20px 10px;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .faq-container {
        grid-template-columns: 1fr; /* Single column */
        gap: 18px;
    }

    .faq-box {
        padding: 22px;
    }

    .faq-box h3 {
        font-size: 17px;
    }

    .faq-box p {
        font-size: 14px;
    }
}

/* ---------- 480px and below (Small mobile) ---------- */
@media (max-width: 480px) {

    .faq-title {
        font-size: 22px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-box {
        padding: 18px;
        border-radius: 12px;
    }

    .faq-box h3 {
        font-size: 16px;
    }

    .faq-box p {
        font-size: 13px;
    }
}

/* newsletter-section */

@media (max-width: 1024px) {
    .newsletter-section h2 {
        font-size: 32px;
    }
}

/* Tablets & large phones (≤ 767px) */
@media (max-width: 767px) {
    .newsletter-section {
        padding: 10px 25px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        max-width: 100%;
    }

    .newsletter-section h2 {
        font-size: 30px;
    }

    .newsletter-section p {
        font-size: 15px;
    }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
    .newsletter-section {
        padding: 40px 15px;
    }

    .newsletter-section h2 {
        font-size: 26px;
    }

    .newsletter-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .newsletter-form input {
        font-size: 15px;
        padding: 10px 16px;
    }

    .newsletter-form button {
        padding: 10px 20px;
        font-size: 15px;
    }
}