
    /* Reset */
 /* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  transition: background 0.5s, color 0.5s;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Themes */
body.light { background: #fff; color: #222; }
body.dark { background: #000; color: #f5f5f5; }

/* Clouds container */
.clouds {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: -1;
}

.cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float linear infinite;
}

.red { background: rgba(255, 0, 0, 0.6); }
.blue { background: rgba(0, 128, 255, 0.6); }
.green { background: rgba(0, 255, 128, 0.6); }
.purple { background: rgba(180, 0, 255, 0.6); }
.orange { background: rgba(255, 165, 0, 0.6); }

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: inherit;
  position: relative;
  transition: all 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #888a88, #2fec48);
  border-radius: 2px;
  transition: width 0.3s ease-in-out;
}
.nav-links a:hover {
  color: #83f172;
  text-shadow: 0 0 8px rgba(213, 209, 206, 0.6);
}
.nav-links a:hover::after { width: 100%; }

/* Theme toggle */
.theme-toggle {
  cursor: pointer;
  font-size: 22px;
  border: none;
  background: none;
  color: inherit;
  transition: transform 0.3s, color 0.3s;
}
.theme-toggle:hover {
  transform: scale(1.2) rotate(15deg);
  color: #9ba09b;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    width: 240px;
    padding: 100px 20px;
    gap: 25px;
    transition: right 0.3s ease-in-out;
  }
  body.light .nav-links { background: rgba(255,255,255,0.9); }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; }
}

/* Clouds floating */
@keyframes float {
  from { transform: translate(var(--start-x), var(--start-y)); }
  to { transform: translate(var(--end-x), var(--end-y)); }
}

/* Content */
.content {
  text-align: center;
  padding: 100px 20px;
  font-size: 20px;
}

.card {
  width: 80%;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
    .container {
      max-width: 100vw;
      margin: 0 auto;
      padding: 0 60px 0 80px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      min-height: 100vh;
      box-sizing: border-box;
    }
    .left {
      flex: 1 1 55%;
      min-width: 400px;
      padding-top: 60px;
    }
    .top-bar {
      letter-spacing: 0.2em;
      color: #222;
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
      font-weight: 500;
    }
    .main-title {
      font-size: 4rem;
      font-weight: 900;
      color: #15171b;
      line-height: 1.1;
      margin: 0 0 1.2rem 0;
    }
    .main-title span {
      display: block;
    }
    .cta-row {
      margin-top: 2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    /* Enroll Button */
    .enroll-btn {
      background: #2abfff;
      border: none;
      outline: none;
      border-radius: 48px;
      color: #fff;
      font-weight: 700;
      padding: 18px 40px;
      font-size: 1.35rem;
      display: flex;
      align-items: center;
      box-shadow: 0 4px 20px #daf3ff7c;
      cursor: pointer;
      transition: background 0.2s;
      overflow: hidden;
    }
    .enroll-btn:hover {
      background: #1cabd8;
    }
    .enroll-btn .arrow {
  background: #000;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  margin-left: 15px;
  display: inline-block;
  font-weight: 700;
  animation: arrowMove 1s infinite alternate ease-in-out;
}

/* Arrow continuous animation */
@keyframes arrowMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(8px);
  }
}
    /* Swipe effect */
    .enroll-btn:hover .arrow {
      transform: translateX(8px);
    }

    .enroll-info {
      color: #70788a;
      font-size: 1.15rem;
    }
    .enroll-info .students {
      color: #000;
      font-weight: 700;
      margin-left: 0.25rem;
    }

    .right {
      position: relative;
      flex: 1 1 40%;
      min-width: 350px;
      min-height: 600px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: transparent;
      padding-top: 40px;
      box-sizing: border-box;
    }
    .main-img {
      border-radius: 32px;
      width: 380px;
      height: auto;
      display: block;
      position: relative;
      margin: 0 auto;
      z-index: 1;
    }
    .google-cert {
      position: absolute;
      top: 50px;
      right: 40px;
      background: #fff;
      box-shadow: 0 2px 16px #bbd4ff34;
      border-radius: 16px;
      padding: 12px 26px;
      font-weight: 600;
      display: flex;
      align-items: center;
      z-index: 2;
    }
    .google-cert img {
      height: 33px;
      margin-right: 10px;
    }
    .students-card {
      position: absolute;
      left: 20px;
      bottom: 140px;
      background: #fff;
      box-shadow: 0 2px 16px #bbd4ff34;
      border-radius: 16px;
      padding: 11px 25px;
      font-size: 1rem;
      gap: 11px;
      display: flex;
      align-items: center;
      z-index: 2;
    }
    .students-card .profile {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: -9px;
      border: 2px solid #fff;
      box-shadow: 0 2px 8px #b2cdf80d;
    }
    .students-card .count {
      font-weight: 700;
      color: #1f1b1d;
      margin-left: 10px;
    }
    .reviews-card {
      position: absolute;
      right: 22px;
      bottom: 38px;
      background: #fff;
      box-shadow: 0 2px 16px #bbd4ff34;
      border-radius: 16px;
      font-size: 1rem;
      min-width: 210px;
      padding: 14px 25px;
      gap: 10px;
      display: flex;
      align-items: center;
      z-index: 2;
    }
    .reviews-card .stars {
      color: #fc0;
      margin-right: 4px;
      font-size: 1.1em;
    }
    .reviews-card img {
      height: 24px;
      margin-right: 7px;
    }

    @media (max-width: 950px) {
      .container {
        flex-direction: column;
        padding: 30px 20px 0 20px;
      }
      .left, .right {
        min-width: auto;
        width: 100%;
        padding: 0;
        margin: 0 auto;
      }
      .main-img {
        width: 90vw;
      }
      .google-cert, .reviews-card, .students-card {
        position: static;
        margin: 10px 0;
        box-shadow: none;
        padding: 10px 0;
        background: transparent;
      }
      .students-card .profile {
        margin-right: 6px;
        border: none;
        box-shadow: none;
      }
      .enroll-btn {
        width: 100%;
        justify-content: center;
      }
    }
    @media (max-width: 600px) {
      .main-title {
        font-size: 2rem;
      }
      .top-bar {
        font-size: 0.9rem;
      }
      .enroll-btn {
        font-size: 1.1rem;
        padding: 14px 32px;
      }
    }
.popup-form {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  justify-content: center;
  align-items: center;
  z-index: 99999; /* Increased to make sure it's above everything */
  animation: fadeIn 0.3s ease-in-out;
  pointer-events: auto; /* Ensure popup accepts clicks */
}

.form-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100000; /* keep above overlay */
}

/* Close (×) button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  color: #555;
  cursor: pointer;
  transition: 0.3s;
}
.close-btn:hover {
  color: #000;
}

/* Inputs and textarea */
.form-content input,
.form-content textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.form-content input:focus,
.form-content textarea:focus {
  border-color: #000;
}

/* Submit button */
.submit-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}
.submit-btn:hover {
  background: #333;
}

/* Thank you message */
.thank-you {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}
.thank-you i {
  font-size: 50px;
  color: #22c55e;
  margin-bottom: 10px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}




.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.scroll-content {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.scroll-content img {
  height: 120px;
  margin: 0 30px;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.scroll-content img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* Continuous scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
        }

        .course {
            margin: 5% auto;
            width: 90%;
        }

        .course h3 {
            font-size: 1em;
            color: rgb(28, 28, 28);
            letter-spacing: 1px;
            margin-bottom: 1%;
        }

        .course h1 {
            font-size: 2.5em;
            letter-spacing: 2px;
            margin-bottom: 1%;
        }

        .course p {
            letter-spacing: 1px;
            font-weight: 500;
            color: grey;
            margin-bottom: 3%;
        }

         .coursecount{
            margin-bottom:10px; 
           font-weight:500; 
           color: #d8d8d8;}
        .course button {
            padding: 8px 20px;
            border-radius: 50px;
            border: none;
            font-size: 1em;
            margin-right: 10px;
            cursor: pointer;
            background: #eee;
        }

        .course button.active {
            background: #222;
            color: #fff;
        }

        .course_cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        
        .course_card {
            height: 500px;
            width: 350px;
            background-color: #fff;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 0 15px 2px black;
        }

        .course_card .top {
            position: relative;
            height: 35%;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            border-radius: 20px 20px 0 0; 
        }

        .course_card .top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: inherit; 
            z-index: 0;
            border-radius: 20px 20px 0 0;
        }

        .course_card .top > * {
            position: relative;
            z-index: 1;
            padding: 15px;
            color: #fff;
        }

        .course_card .top h3 {
            margin-bottom: 10px;
            font-size: 14px;
        }

        .course_card .top h2 {
            font-size: 2.3em;
            letter-spacing: 1px;
        }

        .course_card .bottom {
            flex: 1;
            background: #f8f8f8;
            padding: 15px;
            display: flex;
            flex-direction: column;
        }

        .course_card .bottom h5 {
            color: grey;
            margin-top: 10px;
            margin-bottom: 20px;
            font-size: 12px;
        }

        .course_card .bottom h4 {
            font-size: 1em;
            margin-bottom: 20px;
        }

        .course_card .bottom button {
          margin: auto;
            background: transparent;
            border: none;
            color: grey;
            cursor: pointer;
        }
        .course_card .bottom button a{
          text-decoration: none;
          color: black;
        }
        
         
        #courseCount{
            letter-spacing: 2px;
            margin: 20px 10px;
        }








/* ---------- Above Footer ---------- */
.above-footer {
  background: #fff;
  padding: 20px 50px;
}

.af-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.af-logo { height: 50px; }
.af-content h2 {
  margin: 0;
  font-size: 24px;
  color: #0d1b2a;
  font-weight: 600;
}

/* ---------- Footer Styles ---------- */

/* Main Footer */
.main-footer {
  background: #fefeff;
  color: #101010;
  padding: 60px 40px;
  text-align: left;
  transition: background 0.5s, color 0.5s;
}
.footer-columns { display: flex; justify-content: space-between; gap: 60px; flex-wrap: nowrap; }
.footer-column { flex: 1 1 220px; margin: 0; }
.footer-column h3 { margin-bottom: 20px; font-size: 22px; color: #090909; }
.footer-column p { margin: 8px 0; font-size: 16px; line-height: 1.8; }
.footer-column a { color: grey; text-decoration: none; transition: color 0.3s; font-size: 16px; }
.footer-column a:hover { color: black; }
.footer-column p i { margin-right: 10px; color: #080808; }

/* Social Footer */
.social-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: background 0.5s, color 0.5s;
}
.social-left p { margin: 0; font-size: 16px; font-weight: 600; color: #000000; letter-spacing: 0.5px; text-transform: uppercase; }
.social-right a { display: inline-flex; align-items: center; margin-left: 15px; text-decoration: none; color: gray; font-size: 16px; transition: color 0.3s; }
.social-right a i { margin-right: 10px; font-size: 18px; color: black; }
.social-right a:hover { color: black; }

/* Footer Bottom 2 */
.footer-bottom2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fefeff;
  color: #101010;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
  transition: background 0.5s, color 0.5s;
}

.footer-bottom2 span { color: #ccc; }
.footer-bottom2 a { color: #616060; text-decoration: none; transition: color 0.3s; font-weight: 500; }
.footer-bottom2 a:hover { color: #000; }
.footer-logo {
  width: 100vw;          /* take full viewport width */
  height: 300px;         /* adjust height as needed */
  overflow: hidden;
}

.footer-logo .footer-img {
  width: 100%;           /* fill horizontally */
  height: 100%;          /* fill vertically */
  object-fit: cover;     /* keep aspect ratio, crop if needed */
  display: block;
}


/* ---------------- Dark Theme Footer ---------------- */
body.dark .main-footer { background: #111; color: #f5f5f5; }
body.dark .main-footer a { color: #ccc; }
body.dark .main-footer a:hover { color: #fff; }

body.dark .social-footer { background: #111; color: #f5f5f5; box-shadow: 0 4px 15px rgba(255,255,255,0.05); }
body.dark .social-footer a { color: #ccc; }
body.dark .social-footer a:hover { color: #fff; }

body.dark .footer-bottom2 { background: #111; color: #f5f5f5; }
body.dark .footer-bottom2 a { color: #ccc; }
body.dark .footer-bottom2 a:hover { color: #fff; }

body.dark .footer-column h3 { color: #f9f7f7; }

body.dark .social-left p {color: #f5f5f5;}
body.dark .above-footer {background-color: #000;}
body.dark .af-content h2{color: #f9f7f7;}
body.dark .social-right a i{color: #f9f7f7;}
body.dark .footer-column p i {color: #f9f7f7;}
/* body.dark .footer-image img { } */
/* Show light logo in light mode */
body.dark .top-bar{color: white;}
body.dark .main-title{color: white;}
body.dark .enroll-info{color: white;}
body.dark .enroll-info .students{color: white;}
body.dark .google-cert {background-color: #000;}
body.dark .students-card { background-color: #000;}
body.dark .students-card .count{color: #ccc;}
body.dark .reviews-card {background-color: #000;}
body.dark .course h3{color: white;}
body.dark .course p{color: white;}
body.dark .courseCount {color: white;}
body.dark .course_card .bottom{background-color: #000;}
body.dark .course_card .bottom button a{color: white;}

/* When body has dark mode */
body.dark .nav-logo {
  content: url("logo-dark.png");
}
/* When body has dark mode */
body.dark .af-logo {
  content: url("logo-dark.png");
}




/* Large laptops / small desktops */
@media (max-width: 1200px) {
  .about-card { padding: 30px; }
  .main-heading { font-size: 32px; }
  .above-footer {
  background: #fff;
  padding: 20px 0px;
}

}

/* Tablets (portrait & landscape) */
@media (max-width: 992px) {
  .about-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-left, .about-right {
    flex: 1 1 100%;
    padding: 0;
  }
  .main-heading { font-size: 28px; }
  .about-right p { font-size: 15px; }
  .about-bottom { flex-direction: column; gap: 20px; }
  .footer-logo .footer-img { height: 150px;
    width: 100%;
    object-fit: cover;
     }
  .above-footer {
  background: #fff;
  padding: 20px 0px;
}

}

/* Large mobiles (480px–768px) */
@media (max-width: 768px) {
  .about-card { padding: 25px; }
  .main-heading { font-size: 24px; }
  .small-heading { font-size: 14px; }
  .about-right p { font-size: 14px; line-height: 1.6; }
  .footer-logo{
    text-align: center;
  }
  .footer-logo .footer-img {  
    
    width: 100%;
    object-fit: cover;
   
   }
   .above-footer {
  background: #fff;
  padding: 20px 0px;
}
}

/* Standard mobiles (360px–480px) */
@media (max-width: 480px) {
  .about-card { padding: 20px; border-radius: 15px; }
  .main-heading { font-size: 20px; }
  .about-right p { font-size: 13px; }
  .about-bottom { gap: 15px; }
  .card .af-content h2 {display: none;}
  .footer-logo .footer-img { height: 150px;
    width: 100%;
    object-fit: contain;
     }
  .above-footer {
  background: #fff;
  padding: 20px 20px;
}
  
}

/* Small mobiles (320px–360px) */
@media (max-width: 360px) {
  .main-heading { font-size: 18px; }
  .small-heading { font-size: 12px; }
  .about-right p { font-size: 12px; }
  .about-card { padding: 15px; }
  .footer-logo .footer-img { 
   
    width: 100%;
    object-fit: contain;
    }
}
/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .footer-columns {
        gap: 40px;
    }
    .social-right a{
      padding: 5px;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        flex-wrap: wrap;      /* allow columns to wrap */
        gap: 30px;
    }
    .footer-column {
        flex: 1 1 100%;       /* full width for each column */
    }
    .social-right a{
      padding: 5px;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        gap: 20px;
    }
    .footer-column h3 {
        font-size: 16px;      /* slightly smaller headings */
    }
    .footer-column p,
    .footer-column a {
        font-size: 14px;      /* smaller text for mobile */
    }
    .social-right a{
      padding: 5px;
    }
}
/* ======= RESPONSIVE STYLES ONLY ======= */


/* Mobile view */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  body {
    padding-top: 70px; /* equal to nav height to prevent content overlap */
  }
  .container {
    flex-direction: column; /* stack left and right */
    text-align: center;
  }

  .right {
    margin-top: 30px; /* space between left and right */
    width: 100%; /* take full width */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .right img.main-img {
    max-width: 90%;
    height: auto;
  }

  .google-cert{
    position: relative;  /* remove any absolute positioning */
    top:-510px;
    left: 30px;
    text-align: center;
    padding: 20px;
    background-color: white;
   
  }
  .reviews-card {
    position: relative;  /* remove any absolute positioning */
    top: -280px;
    left: 30px;
    text-align: center;
    background-color: white;
   
  }
   .students-card{
     position: relative;  /* remove any absolute positioning */
     bottom:150px;
     left: -50px;
    text-align: center;
    background-color: white;
   }

  .students-card img.profile {
    width: 35px;
    height: 35px;
    margin-right: -8px;
  }

  .reviews-card .stars {
    font-size: 18px;
    margin-right: 5px;
  }
}
@media (max-width: 480px) {
  .container {
    flex-direction: column; /* stack left and right */
    text-align: center;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  body {
    padding-top: 70px; /* equal to nav height to prevent content overlap */
  }
  .right {
    margin-top: 30px; /* space between left and right */
    width: 100%; /* take full width */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .right img.main-img {
    max-width: 90%;
    height: auto;
  }

  .google-cert{
    position: relative;  /* remove any absolute positioning */
    top:-450px;
    left: 30px;
    text-align: center;
    padding: 20px;
    background-color: white;
   
  }
  .reviews-card {
    position: relative;  /* remove any absolute positioning */
    top: -280px;
    left: 30px;
    text-align: center;
    background-color: white;
   
  }
   .students-card{
     position: relative;  /* remove any absolute positioning */
     bottom:150px;
     left: -50px;
    text-align: center;
    background-color: white;
   }

  .students-card img.profile {
    width: 35px;
    height: 35px;
    margin-right: -8px;
  }

  .reviews-card .stars {
    font-size: 18px;
    margin-right: 5px;
  }
}






/* index page down part */



/* Container */
/* .experts-extra-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  margin: 60px auto 0;
  max-width: 1000px;
} */

/* Card Base */
/* .info-card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.info-card .rating{
  font-size: 3em;
} */

/* Labels */
/* .card-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  letter-spacing: 2px;
  margin-bottom: 15px;
} */

/* Headings */
/* .info-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
} */

/* Liked Card */
/* .rating {
  font-size: 28px;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 10px;
}
.reviews {
  font-size: 14px;
  color: #555;
} */

/* Offers Card */
/* .offer-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.tag {
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.tag.purple { background: #6c5ce7; }
.tag.orange { background: #e67e22; }
.discount {
  font-size: 16px;
  font-weight: 700;
  color: #e74c3c;
} */
.experts-extra-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

/* Common Card Styles */
.info-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  flex: 1 1 45%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 60vh;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Card Labels */
.card-label {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Card Headings */
.info-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: black;
  margin-bottom: 15px;
  line-height: 1.4;
}
body.dark .info-card h2{
  color: white;
}
/* Liked Card Specifics */
.liked-card {
  background: linear-gradient(135deg, #f9fafb, #fff);
  /* border-left: 6px solid yellow; */
}

.liked-card .rating {
  font-size: 5em;
  color: #fbbf24;
  font-weight: 700;
 
  margin-bottom: 50px;
  animation: starPulse 1.8s infinite ease-in-out;
}

.liked-card .reviews {
  color: #475569;
  font-size: 15px;
}

/* Star Glow Animation */
@keyframes starPulse {
  0%, 100% {
    text-shadow: 0 0 5px #facc15, 0 0 10px #facc15, 0 0 20px #facc15;
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px #facc15, 0 0 40px #facc15;
    transform: scale(1.1);
  }
}

/* Offers Card Specifics */
.offers-card {
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  /* border-left: 6px solid #6366f1; */
  text-align: center;
}

.offers-card .offer-desc {
  color: #475569;
  font-size: 15px;
  margin-bottom: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tag {
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
  padding: 5px 10px;
  color: #fff;
  
}

.tag.purple {
  background: #6366f1;
  height: 30vh;
  width: 60%;
  font-size: 1em;
  text-align: center;
  padding-top: 55px;
  margin: auto;
 align-items: flex-end;

}

.tag.orange {
  background: #fb923c;
}

.discount {
  font-size: 15px;
  font-weight: 700;
  color: #16a34a;
  animation: discountBlink 1.8s infinite alternate;
  position: absolute;
  top:160px;
  left: 210px;
  background-color:white;
  border-bottom-left-radius: 40px;
}

/* Discount Blinking Animation */
@keyframes discountBlink {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Hover Accent Glow */
.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(99, 102, 241, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.info-card:hover::after {
  opacity: 1;
}

/* Mouse Glow Effect */
.info-card {
  --x: 50%;
  --y: 50%;
}
.info-card:hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover::after {
  transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .experts-extra-cards {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    width: 100%;
  }
  .discount{
    position: absolute;
   top: 210px;
   left: 130px;
  }
}

/* Dark Theme */
body.dark .info-card {
  background: #1e1e1e;
  color: #eee;
}
body.dark .card-label { color: #aaa; }
body.dark .offer-desc,
body.dark .reviews { color: #bbb; }

/* Responsive */
@media (max-width: 768px) {
  .experts-extra-cards {
    flex-direction: column;
    gap: 20px;
  }
}

/* feedbak section */

        .feedback-section {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            padding-top: 20px;
        }

        .section-header {
            margin-bottom: 60px;
        }

        .feedback-label {
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 4px;
            color: #64748b;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .main-title {
            font-size: 72px;
            font-weight: 900;
            color: #1e293b;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .subtitle {
            font-size: 18px;
            font-weight: 600;
            color: #64748b;
            line-height: 1.6;
        }

        .google-badge {
            position: absolute;
            top: 100px;
            right: 250px;
            background: white;
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            gap: 16px;
            border: 1px solid #f1f5f9;
        }

        .badge-content {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .badge-rating {
            font-size: 14px;
            color: #64748b;
            font-weight: 700;
        }

        .badge-stars {
            color: #fbbf24;
            font-size: 16px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .google-logo {
            font-size: 24px;
            font-weight: 800;
        }

        .google-g { color: #4285f4; }
        .google-o1 { color: #ea4335; }
        .google-o2 { color: #fbbc04; }
        .google-g2 { color: #4285f4; }
        .google-l { color: #34a853; }
        .google-e { color: #ea4335; }

        .badge-reviews {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
            margin-top: 4px;
        }

        .testimonials-container {
            margin-top: 60px;
            overflow: hidden;
            position: relative;
            height: 380px;
        }

        .testimonials-track {
            display: flex;
            gap: 40px;
            animation: scroll 45s linear infinite;
            width: max-content;
        }

        .testimonials-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
            width: 460px;
            height: 300px;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .testimonial-text {
            font-size: 17px;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: 18px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 6px;
        }

        .author-college {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
        }

        /* Enhanced avatar colors with better gradients */
        .avatar-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .avatar-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .avatar-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        .avatar-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
        .avatar-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
        .avatar-6 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
        .avatar-7 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
        .avatar-8 { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
        .avatar-9 { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
        .avatar-10 { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }

        @media (max-width: 968px) {
            .main-title {
                font-size: 56px;
            }

            .testimonials-container {
                height: 340px;
            }

            .testimonial-card {
                width: 420px;
                height: 280px;
                padding: 35px;
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 48px;
            }

            .google-badge {
                position: static;
                margin-top: 30px;
                width: fit-content;
            }

            .testimonials-container {
                height: 320px;
            }

            .testimonial-card {
                width: 380px;
                height: 260px;
                padding: 30px;
            }

            .testimonial-text {
                font-size: 16px;
            }

            .author-name {
                font-size: 17px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 40px;
            }

            .testimonials-container {
                height: 300px;
            }

            .testimonial-card {
                width: 340px;
                height: 240px;
                padding: 25px;
            }

            .testimonial-text {
                font-size: 15px;
                margin-bottom: 25px;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            .author-name {
                font-size: 16px;
            }

            .author-college {
                font-size: 13px;
            }
        }




/* Titles and subtitles */
body.dark .main-title {
    color: #f8fafc; /* near white */
}
body.dark .subtitle,
body.dark .feedback-label {
    color: white; /* softer gray */
}

/* Google badge */
body.dark .google-badge {
    background: #1e293b;
    border: 1px solid #334155;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
body.dark .badge-rating,
body.dark .badge-reviews {
    color: #cbd5e1;
}

/* Testimonial cards */
body.dark .testimonial-card {
    background: #1e293b;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
body.dark .testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
body.dark .testimonial-text {
    color: #e2e8f0;
}
body.dark .author-name {
    color: #f8fafc;
}
body.dark .author-college {
    color: #94a3b8;
}

/* Avatar shadows look better on dark */
body.dark .author-avatar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Google logo colors stay same (don’t invert) */


/* Support Card */
.support-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  margin: 40px auto;
  overflow: hidden;
  max-width: 1200px;
}

/* Text Section */
.support-card-para {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 12px;
}

.support-card-heading {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.support-card-para-grey {
  font-size: 16px;
  color: #777;
  margin: 0;
}

/* Image Section */
.support-images {
  position: relative;
  width: 360px;
  height: 360px;
}

.man {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Background Circles */
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

.circle.green {
  width: 220px;
  height: 220px;
  background: #7dd3fc; /* teal/greenish */
  top: 40px;
  left: -30px;
}

.circle.blue {
  width: 200px;
  height: 200px;
  background: #c4b5fd; /* light blue/purple */
  top: 0;
  left: 120px;
}

.circle.yellow {
  width: 200px;
  height: 200px;
  background: #fde68a; /* light yellow */
  bottom: 20px;
  left: 60px;
}

/* Speech Bubble */
.speech-bubble {
  position: absolute;
  top: 100px;
  left: -20px;
  width: 120px;
  height: 80px;
  border: 4px solid black;
  border-radius: 50%;
  background: transparent;
  z-index: 2;
}


/* ---------------- DARK THEME ---------------- */
body.dark .support-card {
  background: #1e1e1e; /* Dark background */
  box-shadow: 0 2px 10px rgba(255,255,255,0.05);
}

body.dark .support-card-para {
  color: #aaa;
}

body.dark .support-card-heading {
  color: #fff;
}

body.dark .support-card-para-grey {
  color: #bbb;
}

body.dark .speech-bubble {
  border-color: #fff;
}

body.dark .circle.green {
  background: #0284c7; /* darker teal */
  opacity: 0.25;
}

body.dark .circle.blue {
  background: #7c3aed; /* darker purple */
  opacity: 0.25;
}

body.dark .circle.yellow {
  background: #facc15; /* golden yellow */
  opacity: 0.25;
}




.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.contact-card {
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background: #ffffff; /* default, will be overridden by nth-child */
}

.contact-card:hover {
  transform: translateY(-8px);
}

/* Background colors like in your image */
.contact-card:nth-child(1) {
  background: #e3f2fd; /* light blue */
}

.contact-card:nth-child(2) {
  background: #ffecdc; /* peach */
}

.contact-card:nth-child(3) {
  background: #fce4ec; /* light pink */
}

/* Headings */
.contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0;
}

/* Paragraph styling */
.contact-card p {
  font-size: 15px;
  margin: 15px 0;
  color: #333;
}

/* Buttons inside card */
.contact-card .card-button {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #fcfdfc;
  color: #111;
  text-decoration: none;  
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

.contact-card .card-button:hover {
  background: #f1f1f1;
}






/* carrer page css */


/* body {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', 'Poppins', sans-serif;
      background: white;
      overflow-x: hidden;
    } */
    /* * { 
      -webkit-font-smoothing: antialiased; 
      -moz-osx-font-smoothing: grayscale; 
      transform: translateZ(0); 
      backface-visibility: hidden;
      box-sizing: border-box;
    } */
    html { scroll-behavior: smooth; }
    .gpu-accelerated { transform: translate3d(0, 0, 0); will-change: transform; transform-style: preserve-3d; }

    .gradient-bg-1 { background-color: #00f2fe; }
    .gradient-bg-2 { background-color: #667eea; }
    .gradient-bg-3 { background-color: #38f9d7; }
    .gradient-bg-4 { background-color: #667eea; }
    .gradient-bg-5 { background-color: #54a0ff; }
    .gradient-bg-6 { background-color: yellowgreen; }

    .glass { 
      background:rgba(255,255,255,0.1); 
      backdrop-filter:blur(20px); 
      border:1px solid rgba(255,255,255,0.2); 
      box-shadow:0 8px 32px rgba(0,0,0,0.1); 
    }

    @keyframes slideInUp{
      from{opacity:0;transform:translate3d(0,60px,0) scale(0.95);}
      to{opacity:1;transform:translate3d(0,0,0) scale(1);}
    }
    @keyframes slideInLeft{
      from{opacity:0;transform:translate3d(-60px,0,0) scale(0.95);}
      to{opacity:1;transform:translate3d(0,0,0) scale(1);}
    }

    .animate-slide-up{animation:slideInUp .6s cubic-bezier(.25,.46,.45,.94) forwards;}
    .animate-slide-left{animation:slideInLeft .6s cubic-bezier(.25,.46,.45,.94) forwards;}
    
    .delay-100{animation-delay:.05s;} 
    .delay-200{animation-delay:.1s;} 
    .delay-300{animation-delay:.15s;} 
    .delay-400{animation-delay:.2s;} 
    .delay-500{animation-delay:.25s;} 
    .delay-600{animation-delay:.3s;}
    .delay-700{animation-delay:.35s;}

    .magnetic-btn{
      position:relative;
      overflow:hidden;
      transition:transform .3s cubic-bezier(.25,.46,.45,.94),box-shadow .3s cubic-bezier(.25,.46,.45,.94);
      cursor: pointer;
      border: none;
    }
    .magnetic-btn::before{
      content:'';
      position:absolute;
      top:50%;
      left:50%;
      width:0;
      height:0;
      background:rgba(255,255,255,.2);
      border-radius:50%;
      transform:translate(-50%,-50%);
      transition:width .4s ease,height .4s ease;
    }
    .magnetic-btn:hover::before{width:200px;height:200px;}
    .magnetic-btn:hover{transform:translate3d(0,-3px,0) scale(1.02);box-shadow:0 15px 30px rgba(0,0,0,0.15);}

    .shimmer{position:relative;overflow:hidden;}
    .shimmer::after{
      content:'';
      position:absolute;
      top:0;
      left:-100%;
      width:100%;
      height:100%;
      background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
      animation:shimmer 1.5s infinite;
    }
    @keyframes shimmer{0%{transform:translateX(-100%);}100%{transform:translateX(100%);}}

    .green-apply-btn{
      background:linear-gradient(135deg,#22c55e,#16a34a,#15803d);
      background-size:200% 200%;
      animation:gradientMove 2s ease infinite;
      position:relative;
      overflow:hidden;
    }
    .green-apply-btn::after{
      content:'';
      position:absolute;
      top:-50%;
      left:-50%;
      width:200%;
      height:200%;
      background:linear-gradient(45deg,transparent,rgba(255,255,255,.1),transparent);
      transform:rotate(45deg);
      transition:all .4s;
    }
    .green-apply-btn:hover::after{animation:shine .4s ease-in-out;}
    @keyframes gradientMove{0%,100%{background-position:0% 50%;}50%{background-position:100% 50%;}}
    @keyframes shine{0%{transform:translateX(-100%) translateY(-100%) rotate(45deg);}100%{transform:translateX(100%) translateY(100%) rotate(45deg);}}

    .smooth-transition{transition:all .25s cubic-bezier(.25,.46,.45,.94);}
    ::-webkit-scrollbar{width:6px;}
    ::-webkit-scrollbar-track{background:rgba(255,255,255,.05);}
    ::-webkit-scrollbar-thumb{background:rgba(255,255,255,.2);border-radius:3px;}

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hero-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      text-align: center;
      position: relative;
      z-index: 10;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 900;
      margin-bottom: 1rem;
      color: #1f2937;
      opacity: 0;
    }

body.dark .hero h1 {
  color: white;
}

    .hero h2 {
      font-size: 2.5rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
      color: #374151;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.01em;
      opacity: 0;
    }
    body.dark .hero h2 {
  color: white;
}

    /* Mission Box */
    .content-box {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 15px;
      padding: 10px 50px;
      max-width: 1000px;
      width: 90%;
      max-height: 40vh;
      margin: 60px auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
    }
    body.dark .content-box {
      background-color: #000;
    }
    
   
    .left { flex: 1; }
    .left h5 { 
      font-size: 14px; 
      font-weight: bold; 
      letter-spacing: 2px; 
      color: #111; 
      margin-bottom: 10px;
      margin-top: 0;
    
    }
body.dark .left h5{
  color: white;
}

    .left h1 { 
      font-size: 42px; 
      font-weight: bold; 
      color: black; 
      line-height: 1.2;
      margin: 0;
    }
    body.dark .left h1 {
      color: white;
    }

    body.dark .left h1{ color: white;}
    .right { 
      flex: 1; 
      color: #666; 
      font-size: 16px; 
      line-height: 1.6; 
      margin-left: 40px; 
    }
    .right p { margin: 0; }

body.dark .right p{
  color: white;
}

    /* Jobs Section */
    .jobs-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 32px 24px;
      position: relative;
      z-index: 10;
    }
    .jobs-header {
      text-align: left;
      margin-bottom: 64px;
    }
    .jobs-header p {
      font-size: 2rem;
      color: #4b5563;
      font-weight: 600;
      opacity: 0;
      margin: 0;
    }
    body.dark .jobs-header p{
      color: white;
    }
    .jobs-list {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }

    /* Job Cards */
    .job-card {
      border-radius: 24px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      opacity: 0;
    }
    .job-card-inner {
      border-radius: 24px;
      padding: 48px;
    }
    .job-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      flex-wrap: wrap;
      gap: 24px;
    }
    .job-info {
      flex: 1;
    }
    .job-info h3 {
      font-size: 2rem;
      font-weight: bold;
      color: black;
      margin-bottom: 16px;
      margin-top: 0;
      transition: all 0.25s cubic-bezier(.25,.46,.45,.94);
    }
    .job-info h3:hover {
      transform: scale(1.05);
    }
    .job-meta {
      color: rgba(0,0,0,0.8);
      font-size: 1.25rem;
      margin: 0;
    }
    .apply-btn {
      background: rgba(0,0,0,0.2);
      backdrop-filter: blur(12px);
      color: black;
      padding: 16px 32px;
      border-radius: 16px;
      font-weight: bold;
      font-size: 1.125rem;
      border: 1px solid rgba(255,255,255,0.3);
    }
    .job-details {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: all 0.5s ease-out;
      border-top: 1px solid rgba(255,255,255,0.2);
      margin-top: 0;
      padding-top: 0;
    }
    .job-details.expanded {
      max-height: 2000px;
      opacity: 1;
      margin-top: 32px;
      padding-top: 32px;
    }
    .job-description {
      color: rgba(0,0,0,0.9);
      line-height: 1.6;
      font-size: 1.25rem;
    }
    .job-description p {
      margin-bottom: 24px;
    }
    .apply-now-container {
      text-align: center;
      margin-top: 40px;
    }
    .apply-now-btn {
      color: black;
      padding: 20px 48px;
      border-radius: 16px;
      font-weight: bold;
      font-size: 1.25rem;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    @media(max-width: 1024px) {
      .hero h1 { font-size: 2.5rem; }
      .hero h2 { font-size: 2rem; }
      .jobs-header p { font-size: 1.75rem; }
      .job-info h3 { font-size: 1.5rem; }
      .job-meta { font-size: 1rem; }
      .job-card-inner { padding: 32px; }
    }

    @media(max-width: 768px) {
      .hero h1 { font-size: 2rem; }
      .hero h2 { font-size: 1.5rem; }
      
      .right { 
        margin-left: 0; 
        margin-top: 20px; 
      }
      .left h1 { font-size: 32px; }
      .job-header {
        flex-direction: column;
        align-items: flex-start;
      }
      .jobs-header p { font-size: 1.5rem; }
    }

  @media (max-width: 768px) {
  .content-box {
    flex-direction: column;
    text-align: center;
    padding: 5px;
    max-height: none; 
    overflow: visible; 
    height: 80vh;
  }
  .left{
    height: 10%;
  }
  .left h5
  {
    margin-top: 60px;
    font-size: 1.8em;
  }
  .right{
    height: 10%;
    text-align: justify;
    padding: 20px;
  }


  .right {
    margin-left: 0;
    margin-top: 0px;
  }
}

@media (max-width : 480px){
  .man {
 
  height: 400px;
  width: 200px;
}
}

.section_cards_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap; 
  padding: 30px;
  gap: 10px;
}

.section_cards_container > .card {
  flex: 1 1 300px; 
  max-width: 350px;
  min-height: 400px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 0px 3px 2px grey;
  transition: all ease-in 0.2s;
  color: black;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section_cards_container .card:hover {
  transform: scale(1.05);
}

.section_cards_container .requestBtn button {
  margin-top: 20px;
  height: 50px;
  width: 100%;
  max-width: 220px;
  background-color: #52b963;
  border-radius: 20px;
  border: none;
  font-size: 1.2em;
  color:black;
  transform-origin: center;   
  animation: swing 1.5s ease-in-out infinite alternate;
  cursor: pointer;
}

@keyframes swing {
  from { transform: rotate(-10deg); }  
  to   { transform: rotate(10deg); }  
}


.waveform {
  margin: 20px 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px; 
  position: relative;
}

.bar {
  width: 6px;
  margin-left: 10px;
  background: #4cc9ff;
  border-radius: 10px;
  animation: bounce 1s infinite ease-in-out;
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.5s; }
.bar:nth-child(7) { animation-delay: 0.6s; }
.bar:nth-child(8) { animation-delay: 0.7s; }
.bar:nth-child(9) { animation-delay: 0.8s; }
.bar:nth-child(10) { animation-delay: 0.9s; }

@keyframes bounce {
  0%, 100% { height: 20px; }
  50% { height: 80px; }
}


 .section_cards_container .card button {
  height: 45px;
  width: 100%;
  border-radius: 20px;
  border: none;
  font-size: 1em;
  cursor: pointer;
  transition: all ease-in 0.2s;
}

.section_cards_container.card button:hover {
  transform: scale(1.05);
}

#b1 { background-color: #21ba3b; }
#b2 { background-color: #4cc9ff; }
#b3 { background-color: #0078FF; }


 .section_cards_container .dialogueBox_container {
  margin-top: 20px;
  animation: zoomPulse 2s ease-in-out infinite;
}

.section_cards_container .dialogue_box {
  min-width: 120px;
  border-radius: 20px;
  padding: 15px;
  font-weight: 800;
  text-align: center;
  background-color: #0078FF;
  box-shadow: 2px 5px 10px 4px rgb(41, 40, 40);
  margin-bottom: 10px;
}

.section_cards_container .dialogue_box2 {
  min-width: 150px;
  border-bottom-left-radius: 20px;
  border-top-left-radius:20px;
  padding: 10px;
  font-weight: 500;
  color: black;
  background-color: white;
  margin-left: 50px;
  box-shadow: 0px 0px 15px 4px rgb(41, 40, 40);
}

@keyframes zoomPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 1024px) {
  .cards_container {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .card {
    max-width: 100%;
    min-height: auto;
  }

  .requestBtn button {
    max-width: 180px;
    height: 45px;
    font-size: 1em;
    margin-bottom: 10px;
    animation: pulse 1.5s ease-in-out infinite;

  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  .waveform {
    height: 60px;
    gap: 4px;
  }

  .bar {
    width: 5px;
  }
}


body.dark .section_cards_container > .card {background-color: #000; color: white;}







/* ===== POPUP BACKDROP ===== */
.popup-form {
  display: none; /* Hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

/* ===== POPUP CARD ===== */
.form-content {
  background: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  width: 400px;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.35s ease-out;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn:hover {
  color: #ff4d4d;
}

/* ===== HEADING ===== */
.form-content h2 {
  margin-bottom: 18px;
  color: #111;
  font-size: 22px;
  font-weight: 700;
}

/* ===== FORM INPUTS ===== */
.form-content input,
.form-content select {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0 18px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  background-color: #f9f9f9;
  transition: border 0.3s, box-shadow 0.3s;
}

.form-content input:focus,
.form-content select:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
  background-color: #fff;
}

/* ===== DROPDOWN ===== */
.form-content select {
  appearance: none;
  cursor: pointer;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #111, #333);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}
.submit-btn:hover {
  background: linear-gradient(135deg, #333, #000);
  transform: translateY(-2px);
}

/* ===== SUCCESS MESSAGE ===== */
#successMsg {
  margin-top: 15px;
  font-size: 15px;
  color: #28a745;
  display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}






