/* ================= GLOBAL FIX ================= */
* {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1024px) {
  body {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  h3 { font-size: 22px; }
}

@media (max-width: 768px) {
  body {
    font-size: 17px;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 20px; }

  p {
    font-size: 16px;
    line-height: 1.7;
  }
}


/* === tablet ==== */
@media (max-width: 1024px) {

  .nav-logo img {
    height: 40px;
  }

  .brand-text {
    font-size: 26px;
  }

  .menu-toggle {
    width: 32px;
    height: 26px;
  }
}


/* === Mobile  === */
@media (max-width: 768px) {

  .nav-logo img {
    height: 44px;
  }

  .nav-container{
    justify-content: space-evenly;
  }

  .brand-text {
    font-size: 28px;
  }

  .menu-toggle {
    width: 36px;
    height: 28px;
  }

  .menu-toggle span {
    height: 3.5px;
  }
}




/* ================= HAMBURGER ================= */
.menu-toggle {
  display: none;
  width: 28px;
  height: 22px;
   padding: 8px;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #2B5794;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* ================= DESKTOP ================= */
.desktop-only {
  display: flex;
}

/* desktop dropdown (click based) */
.desktop-dropdown {
  position: relative;
}

.desktop-dropdown-menu {
  display: none;
  position: absolute;
  top: 130%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  padding: 10px 0;
  z-index: 1000;
}

.desktop-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: #0a2540;
  text-decoration: none;
  white-space: normal;
}

.desktop-dropdown-menu a:hover {
  background: #f1f5f9;
}

.desktop-dropdown.active .desktop-dropdown-menu {
  display: block;
}

/* ================= MOBILE MENU BASE ================= */
.mobile-menu {
  display: none; 
}

/* ================= MOBILE / TABLET ================= */
@media (max-width: 1024px) {

  /* hide desktop completely */
  .desktop-only {
    display: none !important;
  }

  /* show hamburger */
  .menu-toggle {
    display: block;
  }

  /* mobile menu wrapper */
  .mobile-menu {
    position: fixed;
    top: 67px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .mobile-menu.active {
    display: flex;
  }

  /* common menu buttons */
  .mobile-menu > a,
  .mobile-dropdown > .dropdown-toggle {
    width: 100%;
    max-width: 320px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1f4fa3;
    background: #ffffff;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .mobile-menu > a:hover,
  .mobile-dropdown > .dropdown-toggle:hover {
    background: #e6fffb;
    border-color: #2dd4bf;
    color: #0f766e;
  }

  /* ================= SERVICES (ACCORDION) ================= */
  .mobile-dropdown {
    width: 100%;
    max-width: 320px;
  }

  .dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .mobile-dropdown.active .arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-left: 14px;
    border-left: 2px solid #2dd4bf;
    width: 100%;
  }

  .mobile-dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    font-size: 14.5px;
    color: #475569;
    text-decoration: none;
    text-align: center;
  }

  .dropdown-menu a:hover {
    color: #2dd4bf;
  }

  /* ================= CTA BUTTONS ================= */
  .mobile-cta {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-cta.primary {
    background: #2dd4bf;
    color: #003b3d;
  }

  .mobile-cta.outline {
    border: 1px solid #2dd4bf;
    color: #2dd4bf;
  }
}

/* ================= SAFETY ================= */
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {

  .hero-container {
    grid-template-columns: 1fr;
  }

  /* Video upar */
  .hero-video {
    order: -1;
  }

  /* Text niche */
  .hero-content {
    order: 1;
  }

}

@media (max-width: 768px) {
  .service-card {
    min-width: 280px;   /* 👈 360 se kam */
  }
}


@media (max-width: 768px) {
  .services-slider {
    padding-left: 10px;
    padding-right: 10px;
  }
}


/* =======  Hero SEction =========== */
/* ============================= */
/* 📱 HERO MOBILE DESIGN */
/* ============================= */

@media (max-width: 768px) {

  .hero-section {
    padding: 6rem 1rem 2rem 1rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  /* 🔹 Video Top */
  .hero-video {
    order: -1;
    width: 100%;
    height: auto;
    max-width: 340px;
    margin: 0 auto 10px;
    border-radius: 14px;
    overflow: hidden;
  }

  .hero-video video {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* 🔹 Heading Smaller & Clean */
  .hero-content h1 {
    font-size: 2rem;   
    line-height: 1.3;
    margin-bottom: 10px;
    padding: 0 5px;
    font-weight: 800;
  }

  .hero-content h1 span {
    display: inline;  
  }

  .hero-content h1 br{
    display: none;
  }

 
  /* 🔹 Paragraph Clean */
  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 100%;
    margin: 10px auto 0;
    text-align: center;
  }

  /* 🔹 Button Full Width */
  .hero-buttons {
    margin-top: 22px;
  }

  .hero-buttons a{
    font-size: 1.2rem;
  }

  .hero-buttons .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border-radius: 8px;
    margin-right: 0;
  }
}

/* HERO TABLETS  */

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section{
    padding: 10px 50px;
    padding-top: 6rem;
  }
  .hero-content h1 {
    font-size: 38px;
  }
  .hero-content p{
        font-size: 16px;
  }
  .btn-primary{
    padding: 8px 16px;
  }
}





/* ==== Our SErvices  */
@media (max-width: 768px) {
  .services-section {
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    overflow: hidden;
  padding: 3rem 1rem;
  }
   .services-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    text-align: center;
    margin-left: 0;
  }
    .services-slider {
    gap: 30px;
    padding-left: 0px;
    padding-right: 0px;
  }
     .service-card {
    min-width: 100%;
    max-width: 100%;
    padding: 60px 60px;
    border-radius: 16px;
  }
   .service-card .icon {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 14.5px;
    line-height: 1.55;
  }
   .service-link {
    margin-top: 16px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
   
  
  .service-card{
min-width: 100%;
    max-width: 100%;
    padding: 50px 50px;
    }

/* ---- Our Services for Tablet */
@media (min-width: 769px) and (max-width: 1024px) {

  .section-title{
    font-size: 36px;
  }
      .service-card {
        min-width: 386px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .services-arrow,
  #servicesDots {
    display: none;
  }
}




}
/* ===== Why Factnest */
@media (max-width: 768px) {
  .why-section{
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 1px;
  }

   .why-left {
    padding-left: 0;
  }

  .why-left::before {
    display: none;   /* blue vertical line remove */
  }

  .why-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .why-subtitle {
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 100%;
  }

  .why-right {
    grid-template-columns: 1fr;
    gap: 18px;
  }

   .why-item {
    
    padding: 0px 16px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }
   .why-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .why-item p {
    font-size: 14.5px;
    line-height: 1.55;
  }
}


/* ==== For Tablet use  */
@media (min-width: 769px) and (max-width: 1024px) {

  /* ===== Section padding ===== */
  .why-section {
    padding: 28px 40px;
  }

  /* ===== Grid spacing ===== */
  .why-wrapper {
    gap: 48px;   /* pehle zyada lag raha tha */
  }

  /* ===== Left content ===== */
  .why-title {
    font-size: 36px;   /* desktop 44px → tablet 36px */
    line-height: 1.2;
    margin-bottom: 10px;
    
  }

  .why-subtitle {
    font-size: 16.5px;
    line-height: 1.6;
    max-width: 360px;
  }

  /* ===== Vertical accent line ===== */
  .why-left::before {
    height: 75%;
  }

  /* ===== Right cards grid ===== */
  .why-right {
    gap: 28px 32px;
  }

  /* ===== Individual item ===== */
  .why-item {
    padding: 18px 20px;
     margin-bottom: 12px;
  }

  .why-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .why-item p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ==== About Section ==== */
@media (max-width: 768px) {
  .about-strong {
    padding: 2rem 1rem;
  }

  .about-heading {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .about-statement {
    font-size: 15.5px;
    line-height: 1.6;
    
  }

   .about-highlights {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 0;
    margin-bottom: 0;
  }

   .about-highlight h4 {
    font-size: 17px;
    margin-bottom: 0px;
  }

  .about-highlight p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  
}
@media (max-width: 768px) {

  /* kill extra vertical height */
  .about-highlight {
    padding-top: 10px;
    min-height: auto;
  }

  /* animation div spacing control */
  .about-highlight.fade-up {
    transform: none;
  }

  /* heading tight */
  .about-highlight h4 {
    margin: 0 0 4px 0;
    line-height: 1.25;
  }

  /* paragraph tight */
  .about-highlight p {
    margin: 0;
    line-height: 1.45;
  }

  /* grid gap ultra compact */
  .about-highlights {
    gap: 10px;
  }
}

/* === For tablet About section */
/* ================= ABOUT SECTION – TABLET ================= */
@media (min-width: 769px) and (max-width: 1024px) {

  /* section padding kam */
  .about-strong {
    padding: 48px 40px;
  }


  /* heading thoda chota */
  .about-heading {
    font-size: 36px;
    margin-bottom: 18px;
  }

  /* main paragraph */
  .about-statement {
    font-size: 17px;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 36px;
  }

  /* highlights grid spacing */
  .about-highlights {
    gap: 36px;
  }

  /* highlight title */
  .about-highlight h4 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  /* highlight text */
  .about-highlight p {
    font-size: 14.5px;
    line-height: 1.55;
  }
}

/* === Compilance SEction */
/* ========== COMPLIANCE – MOBILE STACKED LAYOUT ========== */
@media (max-width: 768px) {

  .compliance-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* left content upar */
  .compliance-left {
    order: 1;
  }

  /* right content niche */
  .compliance-right {
    order: 2;
        gap: 6px;
  }

  /* size tuning */
  .compliance-section {
    padding:3rem 1rem;
  }

  .compliance-title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .compliance-lead {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 8px;
  }

  .compliance-note {
    font-size: 14px;
  }

  .compliance-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .compliance-item p {
    font-size: 14px;
    line-height: 1.45;
  }
  .compliance-item p {
    display: none;
  }

  .compliance-item h4 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .compliance-item {
    padding: 0px 14px;
  }
  .compliance-wrapper{
    gap: 5px;
  }
}


/* === footer === */


/* For mobile  */
@media (max-width: 768px) {

  .footer {
    padding: 40px 0 20px;
  }

  .footer-card {
    padding: 32px 20px 20px;
    border-radius: 22px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  /* Hide extra columns */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    display: none;
  }

  .footer-desc {
    font-size: 13px;
    margin: auto;
  }

  .footer-cta {
    padding: 20px;
  }

  .footer-cta h3 {
    font-size: 16px;
  }

  .footer-btn {
    font-size: 14px;
    padding: 10px;
  }

  .footer-contact {
    font-size: 12px;
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 12px;
  }

  .footer-links a {
    margin: 0 8px;
  }

  html { font-size: 13.5px; }

  /* ===== clean footer (mobile) ===== */

  .clean-footer {
    padding: 2.5rem 1.25rem 2rem;
    margin: 2rem 1rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }

  .clean-footer-container {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }

  /* Hide link columns on mobile */
  .footer-links {
    display: none;
  }

  /* Brand */
  .footer-logo {
    justify-content: center;
    font-size: 1.25rem;
  }

  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 20rem;
    margin: 0.75rem auto 0;
  }

  /* Social icons */
  .footer-social {
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
  }

  .footer-social a {
    font-size: 1rem;
  }

  /* Bottom bar */
  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    font-size: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .bottom-links a {
    margin: 0 0.6rem;
    font-size: 0.8rem;
  }

  /* ===== second mobile variation (same order preserved) ===== */

  .clean-footer {
      padding: 3.5rem 1rem 1.5rem 1rem;
        margin: 1rem 1rem;
        border-radius: 2rem;
  }

  .clean-footer-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: center;
  }

  /* Logo */
  .footer-logo {
    justify-content: center;
    font-size: 1.5rem;
  }

  .footer-logo img {
    height: 2.4rem;
  }

  /* Brand text */
  .footer-brand p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 22rem;
    margin: 1rem auto 0;
  }

  /* Social icons */
  .footer-social {
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.2rem;
  }

  .footer-social a {
    font-size: 1.15rem;
  }

  /* Bottom */
  .footer-bottom {
    flex-direction: column;
    gap: 0.9rem;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
  }

  .bottom-links a {
    margin: 0 0.75rem;
    font-size: 0.9rem;
  }
}


/* ================= TABLET & BELOW ================= */
@media (max-width: 1024px) {

  .footer {
    padding: 56px 0 24px;
  }

  .footer-card {
    padding: 44px 40px 24px;
  }

  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }

  /* CTA full width niche */
  .footer-cta {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 20px auto 0;
  }

  .footer-cta h3 {
    font-size: 18px;
  }

  .footer-desc {
    font-size: 14px;
  }

  html { font-size: 14.5px; }
}


/* ================= TABLET ONLY ================= */
@media (min-width: 769px) and (max-width: 1024px) {

  .clean-footer {
    padding: 3.5rem 3rem 2.5rem;
    margin: 3rem 2rem;
  }

  .clean-footer-container {
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
  }

  /* Brand block */
  .footer-brand p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.65;
    max-width: 20rem;
  }

  .footer-social {
    margin-top: 1.2rem;
    gap: 1rem;
  }

  /* Column headings */
  .footer-links h4 {
    margin-bottom: 1rem;
  }

  /* Links spacing */
  .footer-links a {
    margin-bottom: 0.65rem;
    line-height: 1.5;
  }

  /* Bottom bar */
  .footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.2rem;
    font-size: 0.85rem;
  }
}


/* ================= FOOTER – TABLET SAME AS MOBILE ================= */
@media (min-width: 769px) and (max-width: 1024px) {

  .clean-footer {
    padding: 3.5rem 2rem 3rem;
    margin: 3rem 2rem;
    border-radius: 2rem;
  }

  .clean-footer-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: center;
  }

  /* Hide all link columns */
  .footer-links {
    display: none;
  }

  /* Center logo */
  .footer-logo {
    justify-content: center;
    font-size: 1.75rem;
  }

  .footer-logo img {
    height: 2.4rem;
  }

  /* Brand text */
  .footer-brand p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 22rem;
    margin: 1rem auto 0;
  }

  /* Social icons */
  .footer-social {
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.2rem;
  }

  .footer-social a {
    font-size: 1.15rem;
  }

  /* Bottom bar */
  .footer-bottom {
    flex-direction: column;
    gap: 0.9rem;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
  }

  .bottom-links a {
    margin: 0 0.75rem;
    font-size: 0.9rem;
  }
}

/*  Contact form ------------- */

@media (min-width: 769px) and (max-width: 1024px) {

  .contact-section .container{
margin-top:5rem ;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: .5rem;
    padding: .5rem;
  }

  .contact-heading {
    font-size: 2rem;
  }

  .contact-subtext {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .contact-info h3 {
    font-size: 1.375rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .thankyou-card {
    padding: 3rem 2rem;
  }

  .thankyou-card h2 {
    font-size: 2rem;
  }
}

/* for mobile --- Thankyou section */
@media (max-width: 768px) {

  .contact-section {
    padding: 5rem 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
  }

  .contact-heading {
    font-size: 1.55rem;
  }

  .contact-subtext {
    font-size: .85rem;
    margin-bottom: .5rem;
  }

  .contact-info h3 {
    font-size: 1rem;
  }

  .contact-info li {
    font-size: 0.65rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.65rem;
    padding: 0.65rem 0.9rem;
  }

  .contact-form button {
    font-size: 0.9rem;
    padding: 0.65rem;
  }

  @media (max-width: 550px) {
        .contact-section .container {
        max-width: 25rem;
    }

  }

  /* Thank You Section */
  .contact-thankyou {
    padding: 1rem 1rem;
  }

  .thankyou-card {
    padding: 2.5rem 1.5rem;
    border-radius: 1.25rem;
  }

  .thankyou-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .thankyou-card h2 {
    font-size: 1.6rem;
  }

  .thankyou-card p {
    font-size: 0.9rem;
  }
}

/* Contact form detailing */
/* ===== CONTACT DETAILS BASE ===== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Each item */
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-details span{
  font-size: 0.65rem;
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 1024px) {

  .contact-details {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Email & Phone in same row */
  .contact-details li:nth-child(1),
  .contact-details li:nth-child(2) {
    width: calc(50% - 0.5rem);
  }

  /* Location full width */
  .contact-details li:nth-child(3) {
    width: 100%;
  }
}

/* ================= MOBILE SMALL ================= */
@media (max-width: 768px) {
   .contact-section .container{
    max-width: 30rem;
   }
  /* Tighten spacing for small screens */
  .contact-details {
    gap: 0.75rem;
  }

  .contact-details li {
    gap: 0.7rem;
  }
}

/* Some fixes for Menu options in Detailed Services section  */
@media (max-width: 1024px) {

  .top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000; /* 🔥 sabse upar */
  }

  .menu-toggle {
    position: relative;
    z-index: 10001; /* 🔥 header se bhi upar */
    cursor: pointer;
  }

}

@media (max-width: 1024px) {
  .services-details {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 1024px) {
  .services-layout,
  .services-details .container {
    position: relative;
    z-index: 1;
  }
}


/* menu -section  */
@media (max-width: 768px) {
  
  .mobile-menu {
    border-radius: 16px;
    transform: scale(1); 
  }
  .hero-section .hero-buttons a {
    padding: 0.6rem 0.9rem;   
    font-size: 0.85rem;      
    border-radius: 0.6rem;
  }
}

/* Request-btn in Hero section  */
@media (max-width: 1024px) {
  .hero-section .request-verification-btn {
    display: inline-flex;
  }

  .hero-section .hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
  }

  .hero-section .hero-buttons a {
   
    text-align: center;
    border-radius: 5px;
    font-size: 1rem;
  }
}


/* Size of Enterprises  */
/* ===== TABLET VIEW FIX ===== */
@media (min-width: 768px) and (max-width: 1024px){

  .services-section-alt{
    padding:80px 16px;
  }

  .services-title{
    font-size:2.4rem;
    margin-bottom:50px;
  }

  .services-grid-alt{
    grid-template-columns:repeat(2, 1fr); /* ⭐ 2 cards per row */
    gap:28px;
  }

  .service-box{
    padding:48px 26px;   /* thoda tall look */
    border-radius:14px;
  }

  .service-box .icon{
    width:68px;
    height:68px;
    margin-bottom:22px;
  }

  .service-box h3{
    font-size:1.45rem;
    margin-bottom:12px;
  }

  .service-box p{
    font-size:.95rem;
    margin-bottom:68px;
  }

  .btn-red{
    padding:11px 26px;
    font-size:.95rem;
    
  }
}

/* New changes in form */


.verification-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.verification-row {
  display: flex;
  align-items: center;
  justify-content: space-between; /* text left, checkbox right */
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
}

.verification-row:hover {
  background: #f0fdfa;
  border-color: #2dd4bf;
}

.label-text {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
}

.verification-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2dd4bf;
  cursor: pointer;
}
