@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}




/* Back to top */

.backtotop{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
}

.button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(20, 20, 20);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: relative;
  }
  
  .svgIcon {
    width: 12px;
    transition-duration: 0.3s;
    color: white;
  }
 
  
  .button:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: 0.3s;
    background-color: rgb(181, 160, 255);
    align-items: center;
  }
  
  .button:hover .svgIcon {
    /* width: 20px; */
    transition-duration: 0.3s;
    transform: translateY(-200%);
  }
  
  .button::before {
    position: absolute;
    bottom: -20px;
    content: "Back to Top";
    color: white;
    /* transition-duration: .3s; */
    font-size: 0px;
  }
  
  .button:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    /* transform: translateY(-30px); */
    transition-duration: 0.3s;
  }
  

/* Top header bar */

header{
    width: 100%;
    height: auto;
    background-color:#ce647b ;
}
.top-header {
    max-width: 1220px;
    margin: 0 auto;
    background-color: #ce647b;
    color: white;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: white;
    border-radius: 50%;
    color: #ce647b;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Main navigation bar */
nav {
    /* background:url(assests/mapBg.png) ;
    background-position: center;
    background-size: contain; */
    width: 100%;
    background-color: white;
    position: sticky;  /* sticks inside body */
    top: 0;            /* stays at very top */
    z-index: 1000;     /* keeps above content */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); /* optional shadow */
}


.main-navbar {
    margin: 0 auto;
    max-width: 1220px;
    /* background-color: white; */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.logo img {
    height: 70px;
    transition: height 0.3s ease; /* smooth shrink */
}

.main-navbar.scrolled .logo img {
    height: 50px; /* smaller logo when sticky */
}


.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: #ce647b;
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-right: 10px;
}
 

.donate-btn {
    background-color: #3f6b76;
    color: white;
    border: none;
    font-size: 20px;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.donate-btn:hover {
    transform: scale(1.1);
    background-color: #ce647b;
}

/* Dropdown menus */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown a:last-child {
    border-bottom: none;
}

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding-right: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1001;
}

.sidebar.open {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.sidebar-links {
    list-style: none;
    margin-top: 40px;
}

.sidebar-links li {
    margin-bottom: 15px;
}

.sidebar-links a {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-dropdown {
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sidebar-dropdown.open {
    max-height: 500px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Responsive styles */
@media (max-width: 995px) {
    .top-header {
        font-size: 12px;
    }
    
    .contact-info {
        gap: 10px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo {
        position: static;
        transform: none;
    }
    
    .nav-actions {
        margin-left: auto;
    }
}

@media (max-width: 576px) {
    .top-header {
        flex-direction: column;
        gap: 10px;
        padding: 8px 15px;
    }
    
    .contact-info {
        flex-direction: row;
        gap: 5px;
    }
    
    .donate-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 440px) {
    .contact-info {
        flex-direction: column;
    }
}


.hero-section{
    width: 100%;
    padding-top: 0px;
    margin-bottom: 20px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: start;
    z-index: 1;
    box-shadow: 0px 0px 200px 5px black inset;
}

.hero-section video{
    width: 100%;
    height: auto;
    z-index: -1;
}



/* Section Segment */

section{
    padding-top: 5rem;
    width: 100%;
    height: auto;
}

.section-heading{
    text-align: center;
    font-family: "Rubik", Sans-serif;
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #252525;
    max-width: 450px;
    margin: 0 auto;
}


@media  (max-width: 450px) {
    .section-heading{
        font-size: 50px;
    }
}


.section-description{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}



/* WHO WE ARE CARDS SECTION */
.who-we-are-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  .card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Image Section */
  .image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
  }
  
  .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Overlay Effect */
  .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    backdrop-filter: blur(2px);
  }
  
  .overlay h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
  }
  
  .overlay h3 span {
    color: #ffeb3b;
    font-style: italic;
  }
  
  /* Title */
  .card-title h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 10px;
    color: #222;
  }
  
  /* Description */
  .card-description p {
    font-size: 15px;
    color: #555;
    padding: 0 15px 15px;
    line-height: 1.6;
  }
  
  /* Button */
  .card-button {
    margin-bottom: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 22px;
    background: #ce647b;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #ed728d;
  }
  
  /* Responsive Layouts */
  @media (max-width: 1024px) {
    .who-we-are-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .who-we-are-cards {
      grid-template-columns: 1fr;
      padding: 20px;
    }
    .overlay h3 {
      font-size: 18px;
    }
  }
  



/* Map Area Layout */
.our-impact {
    padding: 2rem 1rem;
    background: #fff;
    text-align: center;
  }
  

  
  .map-area {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .map-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  
  svg#wrapper {
      width: 600px;
    height: auto;
    border-radius: 12px;
  }
  
  @media (max-width:1024px) {
      svg#wrapper{
          width: 400px;
      }
  }
  
  @media (max-width:850px) {
      svg#wrapper{
          width: 300px;
      }
  }
  
  /* ---------------- Polaroid Images ---------------- */
  .impact-images, .impact-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .polaroid {
    position: relative;
    background: #fff;
    padding: 10px 10px 20px;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transform: rotate(-2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .polaroid:nth-child(2) {
    transform: rotate(2deg);
  }
  .polaroid:nth-child(3) {
    transform: rotate(-1.5deg);
  }
  
  .polaroid img {
    width: 160px;
    height: auto;
    border-radius: 4px;
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  /* Tape effect */
  .polaroid::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 200, 0.8);
    border: 1px dashed rgba(0,0,0,0.2);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  
  /* Hover effect */
  .polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
  }
  
  /* ---------------- Fade-in Animation ---------------- */
  .fade {
    opacity: 0;
  }
  .fade.show {
    opacity: 1;
    transition: opacity 0.5s ease-in;
  }
  
  /* ---------------- Responsive ---------------- */
  @media (max-width: 768px) {
    .map-area {
      grid-template-columns: 1fr;
    }
  
    .impact-left,
    .impact-images {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .polaroid img {
      width: 120px;
    }
  }
  
  #Haryana_label, #delhi_label, #up_label, #rajasthan_label  {
      display: none;
      transition: 0.2s linear;
  }
  
  /* Show labels when hovering state */
  #Haryana:hover ~ #Haryana_label,
  #Delhi:hover ~ #delhi_label,
  #Rajasthan:hover ~ #rajasthan_label,
  #Uttar_Pradesh:hover ~ #up_label {
    display: block;
  }
  
  
  #Uttar_Pradesh, #Delhi, #Haryana, #Rajasthan{
      transition: 0.2s linear;
  }
  
  #Uttar_Pradesh:hover{
      filter: drop-shadow(2px 4px 6px black);
                  transform: translateY(-4px) scale(1.001);
                  fill: rgb(56, 118, 29);
                  box-shadow: 2px -2px 10px rgb(56, 118, 29);
  }
  
  #Delhi:hover{
      filter: drop-shadow(2px 4px 6px black);
                  transform: translateY(-4px) scale(1.001);
                  
                  box-shadow: 2px -2px 10px rgb(255, 255, 51);
  }
  
  #Haryana:hover{
      filter: drop-shadow(2px 4px 6px black);
                  transform: translateY(-4px) scale(1.001);
                  
                  box-shadow: 2px -2px 10px rgb(60, 120, 216);
  }
  
  #Rajasthan:hover{
      filter: drop-shadow(2px 4px 6px black);
                  transform: translateY(-4px) scale(1.001);
                  
                  box-shadow: 2px -2px 10px rgb(206, 100, 123);
  }

.map-btn{
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 7px;
    color: white;
    background: #ed728d;
    border: 1px solid #ed728d;

}








/* Why do we do it */
#whatwedo {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
  }


  .whatwedo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    place-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Card Styling */
  .whatwedo-card {
    position: relative;
    padding: 30px 20px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-height: 280px;
  }

  .whatwedo-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: start;
    z-index: 3;
    position: relative;
  }

  .whatwedo-card p {
    text-align: start;
    font-size: 0.95rem;
    line-height: 1.4;
    z-index: 3;
    position: relative;
  }

  /* Background image */
  .whatwedo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: inherit;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 0;
  }

  /* Gradient overlay */
  .whatwedo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    z-index: 1;
    transition: background 0.5s ease;
  }

  /* Hover effects */
  .whatwedo-card:hover::before {
    background-image: var(--hover-image);
    opacity: 1;
  }

  .whatwedo-card:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
    backdrop-filter: blur(3px);
  }

  .whatwedo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  /* Specific background colors + hover images */
  .unemployment { background-color: #009fe3; --hover-image: url('assests/unemployment.png'); }
  .social { background-color: #ce6d6d; --hover-image: url('assests/social-events.avif'); }
  .women { background-color: #8b0000; --hover-image: url('assests/rj3.jpeg'); }
  .education { background-color: #f19c1b; --hover-image: url('assests/education.avif'); }
  .healthcare { background-color: #e0001a; --hover-image: url('assests/healthcare.jpg'); }
  .underprivileged { background-color: #5e7e7f; --hover-image: url('assests/underprivileged.jpg'); }
  .environment { background-color: #0e3f91; --hover-image: url('assests/enviornment.jpg'); }

  /* Responsive */
  @media screen and (max-width: 768px) {
    .whatwedo-card {
      padding: 20px;
      min-height: 240px;
    }
  }


/* Be a part of team */

section.beapartofteam {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  section.beapartofteam h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #2c3e50;
  }

  .team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: auto;
  }

  .card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  .card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2c3e50;
  }

  .card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
  }

  .card button {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
  }

  .card button:hover {
    background: #c2185b;
  }

  /* ---------- Popup Form ---------- */
  .popup-overlay {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
  }

  .form-main-container{
    width: auto;
    height: auto;
    position: relative;
  }

  .form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
  }

  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f1f1;
  }

  .form-header h2 {
    font-size: 1.8rem;
    color: #2c3e50;
  }

  .close-btn-form {
    font-size: 1.8rem;
    position: absolute;
    top: 7px;
    right: 15px;
    cursor: pointer;
    color: #888;
    background: none;
    border: none;
    z-index: 999;
    font-weight: bold;
    transition: color 0.3s;
  }

  .close-btn-form:hover {
    color: #e91e63;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-row .form-group {
    flex: 1 1 200px;
    margin-bottom: 0;
  }

  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #444;
  }

  .required::after {
    content: '*';
    color: #e91e63;
    margin-left: 3px;
  }

  input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.3s;
  }

  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
  }

  .phone-input {
    display: flex;
  }

  .phone-prefix {
    flex: 0 0 60px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-weight: 600;
  }

  .phone-input input {
    border-radius: 0 6px 6px 0;
  }

  .declaration {
    background: #f9f9f9;
    padding: 1.2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #e91e63;
  }

  .declaration p {
    font-style: italic;
    line-height: 1.5;
    color: #555;
  }

  .submit-btn {
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: background 0.3s;
  }

  .submit-btn:hover {
    background: #388e3c;
  }

  /* Confirmation modal */
  .confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .modal-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .modal-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
  }

  .modal-confirm {
    background: #e91e63;
    color: white;
  }

  .modal-cancel {
    background: #f1f1f1;
    color: #333;
  }

  @media (max-width: 768px) {
    section.beapartofteam h2 {
      font-size: 2rem;
    }
    
    .form-container {
      padding: 1.5rem;
    }
    
    .form-header h2 {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    section.beapartofteam {
      padding: 2rem 1rem;
    }
    
    .card {
      padding: 1rem;
    }
    
    .form-container {
      padding: 1.2rem;
    }
    
    .form-row {
      flex-direction: column;
      gap: 0;
    }
  }







/* why join us */



    /* ---------- Base Section ---------- */
    .whyjoinus {
        
      padding: 4rem 2rem;
      background: #f7f7f7;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .why-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      max-width: 1200px;
      width: 100%;
      align-items: center;
    }

    /* ---------- Left Content ---------- */
    .why-text h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #222;
      margin-bottom: 1.5rem;
    }

    .why-text ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: start;
    }

    .why-text ul li {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      line-height: 1.6;
      position: relative;
      padding-left: 25px;
      color: #333;
    }

    .why-text ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #ff6600; /* Accent color */
      font-size: 1.5rem;
      line-height: 1;
    }

    .why-text strong {
      font-weight: 700;
    }

    /* ---------- Right Image ---------- */
    .why-image {
        
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .why-image img {
      width: 100%;
      max-width: 500px;
      height: auto;
      object-fit: cover;
      border-radius: 12px;
      
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 992px) {
      .why-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .why-text h2 {
        font-size: 2rem;
      }

      .why-text ul li {
        font-size: 1rem;
      }

      .why-image img {
        max-width: 400px;
        margin: 0 auto;
      }
    }

    @media (max-width: 600px) {
      .why-text h2 {
        font-size: 1.8rem;
      }
    }







/* ------ FOOTER CSS ------ */
.site-footer {
    background-color: #ce647b; /* Pink background */
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 40px 20px 20px;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: space-between; /* Better spacing */
    gap: 40px; /* Space between blocks */
    max-width: 100%;
    margin: 0 auto;
  }
  
  .footer-part {
    flex: 1 1 45%; /* Two parts side by side */
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
  }
  
  .footer-section {
    max-width: 300px;
    text-align: center;
  }
  
  .footer-section.logo-section {
    text-align: center;
  }
  
  .footer-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 50%;
    background-color: white;
    object-fit: cover;
  }
  
  .footer-about {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .footer-section-links h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-section-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section-links ul li {
    margin-bottom: 6px;
  }
  
  .footer-section-links ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s linear;
  }
  
  .footer-section-links ul li a:hover {
    color: black;
  }
  
  .qr-container {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .qr-container img {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  
  .footer-contact-info {
    font-size: 14px;
    flex-direction: column;
    line-height: 1.5;
  }

  .footer-contact-info .phone{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .phone hr{
    width: 15px;
    transform: rotate(90deg);
    height: 100%;
  }

  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .footer-top {
      align-items: center;
      text-align: center;

    }
    
    .footer-part {
        flex: 1 1 45%; /* Two parts side by side */
        display: flex;
        justify-content: space-evenly;
        gap: 40px;
    }

    .footer-part:nth-child(1){
        flex-direction: column-reverse;
    }
  
    .footer-part {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .footer-section {
      text-align: center;
    }
  }
  


  /* qr-popup */

  /* Popup Overlay */
.qr-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Popup Box */
  .qr-popup {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    text-align: center;
  }
  
  .qr-popup h3 {
    margin-bottom: 15px;
  }
  
  /* Cancel Button */
  .qr-popup-cancel {
    position: absolute;
    top: 10px; right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
  }
  
  /* Form Fields */
.qr-popup-form input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.state-select {
  position: relative;
  margin: 8px 0;
}

.state-select input {
  margin-bottom: 0;
}

.state-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  max-height: 180px;
  overflow-y: auto;
  padding: 6px 0;
  z-index: 5;
  text-align: left;
}

.state-dropdown::-webkit-scrollbar {
  width: 6px;
}

.state-dropdown::-webkit-scrollbar-thumb {
  background: rgba(206, 100, 123, 0.5);
  border-radius: 3px;
}

.state-option {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease;
}

.state-option:hover,
.state-option:focus {
  background: rgba(206, 100, 123, 0.1);
  outline: none;
}

.state-option.active {
  background: rgba(206, 100, 123, 0.2);
}

.qr-popup-form button {
  background: white;
  color: black;
  border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
  }
  
  .qr-popup-form button:hover {
    background: #e0559e;
    color: white;
  }
  
  /* Steps */
  .qr-popup-step1,
  .qr-popup-step2 {
    display: none;
  }
  
  .qr-popup-step1.active,
  .qr-popup-step2.active {
    display: block;
  }
  
  .qr-popup-step2 img {
    width: 100%;
    max-width: 200px;
    margin: 15px auto;
    display: block;
  }
  
