 :root {
      --brand-1: #1e3c72;
      --brand-2: #2a5298;
      --accent-1: #ffc107;
      --text-1: #0f172a;
      --text-2: #334155;
      --bg: #f8f9fa;
      --card: #ffffff;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    [data-theme="dark"] {
      --bg: #0b1220;
      --card: #0f172a;
      --text-1: #e2e8f0;
      --text-2: #cbd5e1;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    html, body { height: 100%; }
    body {
      font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
      background: #fff;
      color: var(--text-2);
      overflow-x: hidden;
    }


  .text-dark {
    color: #333 !important;
  }

  .text-dark:hover {
    color: #007bff !important;
  }

  .form-control-sm {
    border-radius: 20px;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ddd;
  }

  .btn-outline-secondary {
    border-radius: 50%;
    border: 1px solid #ddd;
    padding: 0.375rem 0.5rem;
    transition: background-color 0.2s ease;
  }

  .btn-outline-secondary:hover {
    background-color: #f1f1f1;
    border-color: #ccc;
  }

  .fa-phone, .fa-user, .fa-user-plus, .fa-magnifying-glass, .fa-cart-shopping, .fa-facebook-f, .fa-twitter, .fa-instagram {
    font-size: 1rem;
  }

  .form-control-sm:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
  }

    .theme-toggle {
      border: 0; background: rgba(255,255,255,.15); color: #fff;
      width: 40px; height: 40px; border-radius: 50%;
      display: grid; place-items: center; transition: transform .2s ease;
    }
    .theme-toggle:hover { transform: rotate(-10deg) scale(1.05); }

    /* ✅ Only Hero Carousel ke liye */
.hero-carousel,
.hero-carousel .carousel-item,
.hero-carousel .carousel-item img {
  height: 72vh;
}

.hero-carousel .carousel-item img {
  width: 100%;
  object-fit: cover;
  filter: brightness(.75);
}


    .carousel-item.active img { animation: kenburns 9s ease-in-out forwards; }
    @keyframes kenburns {
      0% { transform: scale(1) translateZ(0); }
      100% { transform: scale(1.08) translateZ(0); }
    }
/* Navbar */
.navbar {
  background-color: #fff !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
  /* Navbar Height Control: Reduce default padding */
  padding-top: 5px !important; 
  padding-bottom: 5px !important;
}

/* Navbar Height Control: Reduce padding on the container */
.navbar .container {
    padding-top: 5px !important; /* Reduce vertical padding */
    padding-bottom: 5px !important; /* Reduce vertical padding */
}

/* Navbar Height Control: Tweak logo size if needed */
/* .navbar-brand img {
    height: 40px !important;
    width: auto;
} */

.navbar .nav-link {
  color: #333;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}
.navbar .nav-link:hover {
  color: #007bff;
  border-bottom: 2px solid #dc3545;
}

/* Navbar Height Control: Adjust desktop list item margins */
.navbar-nav .nav-item.mt-2 {
    margin-top: 0 !important; /* Remove or reduce extra top margin */
    margin-bottom: 0 !important; /* Ensure no extra bottom margin */
    display: flex;
    align-items: center; /* Vertically align items */
}


.icon-circle-mobile {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #dc3545;
  color: white;
  transition: transform 0.2s ease;
}
.icon-circle-mobile:hover { transform: scale(1.1); }

.social-icons .social-icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #dc3545;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.social-icons .social-icon:hover {
  background-color: #dc3545;
  color: #fff;
}

.toggler-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  color: #dc3545;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
  font-size: 1.05rem;
}
.navbar-toggler .navbar-toggler-icon { display: none !important; }

.navbar-toggler.active .toggler-icon {
  background: #dc3545;
  color: #fff;
  transform: rotate(90deg);
}
.navbar-toggler:active .toggler-icon { transform: scale(.95); }

.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  background: #fff;
  border-top: 1px solid #ddd;
  transform: translateY(-20px);
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 1rem;
  display: block;
  text-align: center;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.mobile-menu a:hover {
  background: #f2f2f2;
  color: #007bff;
}

.no-underline { text-decoration: none !important; color: inherit; }
.no-underline:hover { text-decoration: none !important; color: #007bff; }

@media (max-width: 1024px) {
  .navbar-nav { display: none !important; }
  .navbar-toggler { display: inline-flex !important; }
}
@media (min-width: 1025px) {
  .navbar-nav { display: flex !important; }
  .navbar-toggler { display: none !important; }
}

@media (max-width: 1024px) {
  .navbar .container {
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 2px 0 !important;
  }
.navbar {
    padding: 2px 0 !important; /* top-bottom height reduce */
  }
  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    padding: 8px 0;
  }

  .navbar-toggler {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .d-flex.align-items-center.gap-3 {
    width: 100%;
    justify-content: center !important;
  }

  .icon-circle-mobile {
      margin-left: 15px;
  }
}



/* 🔹 Container wrapper */
.select-wrapper {
  position: relative;
  width: 100%;
}

.searchable-select {
  position: relative;
  width: 100%;
}

/* 🔹 Display area (closed select look) */
.select-display {
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 10px 35px 10px 10px; /* space for arrow */
  background: white;
  cursor: pointer;
  position: relative;
  font-size: 14px;
}

/* 🔹 Down arrow icon */
.select-display::after {
  content: "\f078"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #555;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

/* 🔹 Rotate arrow when dropdown open */
.searchable-select.active .select-display::after {
  transform: translateY(-50%) rotate(180deg);
}

/* 🔹 Dropdown options box */
.searchable-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 999;
  display: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 🔹 Show when active */
.searchable-select.active .options {
  display: block;
}

/* 🔹 Search input inside dropdown */
.searchable-select .options input {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

/* 🔹 Each option */
.searchable-select .option {
  padding: 8px 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.searchable-select .option:hover {
  background-color: #f2f2f2;
}



    .carousel-caption {
      bottom: 18%;
      background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
      border: 1px solid rgba(255,255,255,.25);
      backdrop-filter: blur(7px);
      border-radius: 16px; padding: 20px 24px;
      box-shadow: var(--shadow);
    }
    .carousel-caption h2 { font-weight: 800; }

    .section-title {
      text-align: center; margin: 64px 0 28px; font-weight: 900; letter-spacing: .4px;
      background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }

    .search-card {
      background: var(--card);
      border-radius: 20px; padding: 22px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(0,0,0,.05);
    }

    .btn-gradient {
      position: relative; overflow: hidden; border: 0; font-weight: 600;
      background: linear-gradient(135deg, #2563eb);
      color: white ;
    }
    .btn-gradient .ripple {
      position: absolute; border-radius: 50%; transform: scale(0);
      animation: ripple 600ms linear; background: rgba(255,255,255,.6);
    }
    @keyframes ripple { to { transform: scale(4); opacity: 0; } }

    .card { border: none; background: var(--card); box-shadow: var(--shadow); border-radius: 18px; }
    .card-img-top { height: 200px; object-fit: cover; border-top-left-radius: 18px; border-top-right-radius: 18px; }
    .card.hoverable { position: relative; transition: transform .25s ease;
      outline: 1px solid rgba(0,0,0,.06);
    }
    .card.hoverable::before {
      content: ""; 
      position: absolute; 
      inset: -1px; z-index: -1; 
      border-radius: 20px;
      opacity: 0; 
      transition: opacity .25s ease; 
      filter: blur(10px);
    }
    .card.hoverable:hover { transform: translateY(-6px); }
    .card.hoverable:hover::before { opacity: 1; }

    .feature i { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 14px; margin: 0 auto 14px; background: rgba(99,102,241,.12); }

    .testimonial-card { background: var(--card); border-radius: 16px; box-shadow: var(--shadow); padding: 22px; text-align: center; border: 1px solid rgba(0,0,0,.06); }
    .testimonial-card img { border-radius: 50%; width: 72px; height: 72px; object-fit: cover; margin-bottom: 10px; }

    footer { background: linear-gradient(180deg, var(--brand-1), #0b2a5c); color: #fff; padding: 40px 0; margin-top: 64px; position: relative; }
    footer a { color: var(--accent-1); text-decoration: none; }
    .social-icons a { color: white; font-size: 1.3rem; margin: 0 10px; opacity: .85; }
    .social-icons a:hover { opacity: 1; transform: translateY(-2px); }

    .back-to-top {
      position: fixed; right: 18px; bottom: 18px; width: 46px; height: 46px; border-radius: 50%;
      display: grid; place-items: center; 
      background: #dc3545;
      color: #fff; border: none; box-shadow: var(--shadow); cursor: pointer; opacity: 0; visibility: hidden; transition: all .25s ease; z-index: 999;
    }
    .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(-6px); }

  
    
/* explore collection sectionn */
.library-section {
    padding: 60px 20px;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.images {
    flex: 1 1 400px;
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: end;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.img1 {
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: block;
}

.img2 {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: absolute;
    bottom: 10px;
    top:230px;
    left: -100px;
    object-fit: cover;
    width: 100%;
}
.text-content {
    flex: 1 1 500px;
}

.sub-heading {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.description {
    color: #555;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: red;
}

.stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
}

.stat {
    flex: 1 1 200px;
    text-align: center;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.red-circle {
    background-color: red;
    color: white;
}

.yellow-circle {
    background-color: gold;
    color: black;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-label {
    color: #555;
}
/* ✅ Single full-height image on left */
.images {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-stack {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hide the second image */
.img2 {
  display: none !important;
}

/* ✅ Same height alignment for both columns */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* both columns same height */
  gap: 40px;
}

/* ✅ Stats Section – 2 columns in mobile view */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Optional: make text center in smaller screens */
@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .images, .text-content {
    width: 100%;
  }
}



/* Responsive */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .images {
        order: 2;
    }

    .text-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .img2 {
        top: 35%;
        left: 5%;
        width: 85%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 8px 15px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .img2 {
        top: 30%;
        left: 5%;
        width: 90%;
    }
}



.Features-section {
    background-color: #1a1a1a;
    color: white;
}

.feature-card {
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
}

.contact-card {
    background: white;
    color: black;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.overlap-contact {
    position: relative;
    top: -50px;
}
.big-heading {
        font-size: 3rem; 
        font-weight: bold;
    }

    .buttons {
        display: flex;
        gap: 20px;
    }

    .btn {
        display: flex;
        align-items: center;
        border: 2px solid transparent;
        padding: 0 15px 0 0px;        
        font-size: 1rem;
        background: none;
        cursor: pointer;
        border-radius: 100px;
        transition: all 0.3s ease;
    }

    .btn:hover {
        opacity: 0.9;
    }

    .red-btn {
        border-color: red;
        color: black;
    }

    .yellow-btn {
        border-color: gold;
        color: black;
    }

    .icon-circle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
        color: white;
    }

    .red-bg {
        background-color: red;
    }

    .yellow-bg {
        background-color: gold;
    }
    .contact-link {
    text-decoration: none;
    color: black;
    font-weight: bold;
}


.subscribe-section {
    background: #fff;
    padding: 0px 1px;
    display: flex;
    justify-content: center;
}

.subscribe-wrapper {
    display: flex;
    gap: 40px;
    width: 1100px;
}

.subscribe-left {
    width: 60%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ffffff;
    padding: 50px;
}

.subscribe-right {
    width: 35%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    background: #f8f8f8;    
}

.subscribe-left small {
    color: #b71c1c;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.subscribe-left h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.subscribe-left p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.countdown {
    display: flex;
    gap: 10px;
}

.countdown-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 20px;
    text-align: center;
    min-width: 60px;
}

.countdown-box h1 {
    font-size: 40px;
    margin: 0 0 5px 0;
}

.countdown-box button {
    background: #f7c02f;
    border-radius: 5px;
    padding: 6px 10px;
    text-align: center;
    min-width: 80px;
    font-weight: bold;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.countdown-box button.red-btn {
    background: #b71c1c;
    color: white;
}

.countdown-box button.yellow-btn {
    background: #f7c02f;
    color: black;
}


.subscribe-right h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-top: 2px;
    padding:20px;
}

.subscribe-right form{
padding: 8px 60px;
}

.subscribe-right input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.subscribe-right textarea {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    min-height: 80px;
    box-sizing: border-box;
}


.subscribe-right button {
    width: 100%;
    background: #f7c02f;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
}

.subscribe-right button:hover {
    background: #e0aa28;
}
.form-header{
      background: #8a8a86ff;
      color:#fff;
}
@media (max-width: 991px) {
    .subscribe-wrapper {
        flex-direction: column;
        width: 90%;
        gap: 20px;
    }

    .subscribe-left,
    .subscribe-right {
        width: 100%;
        padding: 30px;
    }

    .subscribe-left h2 {
        font-size: 28px;
    }

    .subscribe-right h3 {
        font-size: 24px;
        padding: 15px;
    }

    .subscribe-right form {
        padding: 8px 20px;
    }

    .countdown {
        justify-content: center;
    }
}

/* ===== Mobile View (max-width: 767px) ===== */
@media (max-width: 767px) {
    .subscribe-section {
        padding: 0px 10px;
    }

    .subscribe-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .subscribe-left,
    .subscribe-right {
        width: 100%;
        padding: 20px;
    }

    .subscribe-left h2 {
        font-size: 22px;
    }

    .subscribe-right h3 {
        font-size: 20px;
        padding: 10px;
    }

    .subscribe-right form {
        padding: 8px 10px;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 8px;
    }

    .countdown-box {
        flex: 1 1 45%;
        min-width: auto;
        padding: 8px 10px;
    }

    .countdown-box h1 {
        font-size: 24px;
    }

    .countdown-box button {
        font-size: 12px;
        min-width: auto;
        padding: 5px 8px;
    }
}

.footer {
    background: #1c1c1c;
    color: #ccc;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}
.footer-logo h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}
.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #aaa;
}
.footer-social a {
    display: inline-block;
    color: #fff;
    background: #333;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px;
    transition: background 0.3s;
}
.footer-social a:hover {
    background: #f7c02f;
    color: #000;
}
.footer h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer ul li {
    margin-bottom: 8px;
}
.footer ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer ul li a:hover {
    color: #f7c02f;
}
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 40px);
    gap: 10px;
}
.footer-gallery div {
    background: #333;
    width: 40px;
    height: 40px;
    border-radius: 4px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #aaa;
}

.footer-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    gap: 8px;
    margin-top: 10px;
}

.footer-image img {
    width: 140px;   /* control size here */
    height: 70px;  /* keep them uniform */
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.footer-image img:hover {
    transform: scale(1.1); /* zoom effect on hover */
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 1 row = 2 columns */
    gap: 10px;
    margin-top: 10px;
}

.footer-gallery div {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.footer-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.footer-gallery img:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        align-items: center;
    }
    .footer-gallery {
        justify-content: center;
    }
    .footer-social {
        text-align: center;
    }
}

  .testimonial-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .user-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  .testimonial-card:hover .user-img img {
    transform: scale(1.05);
    border-color: #ff5722;

  }
  .star-rating {
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #ffc107;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .testimonial-card:hover .star-rating {
    transform: scale(1.2);
    color: #ff9800;
    animation: shine 1s infinite alternate;
  }
  @keyframes shine {
    0% { text-shadow: 0 0 2px #ff9800, 0 0 5px #ff9800; }
    100% { text-shadow: 0 0 5px #ff5722, 0 0 10px #ff5722; }
  }
  .read-more-btn {
    background: #ff5722;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .read-more-btn:hover {
    background: #e64a19;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
  }
  .quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(0,0,0,0.1);
  }
  .section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
  }
  .carousel-control-prev,
  .carousel-control-next {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    opacity: 1;
  }
  .arrow {
    font-size: 2rem;
    color: #ff5722;
  }

  /* Test Series Card Specific Styling */
    .test-series-card {
        transition: transform 0.3s, box-shadow 0.3s;
        background-color: #fcfcfc;
    }
    .test-series-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }
    .stats .badge {
        font-size: 0.8rem;
        padding: 0.5em 0.7em;
        font-weight: 600; 
    }
    
    /* Responsive Styling adjustments for mobile */
    @media (max-width: 767.98px) {
        /* Mobile Specific Test Series Adjustments */
        .search-card .d-grid {
            margin-top: 15px;
        }
        .form-select-lg {
            padding: 0.5rem 1rem; /* Adjust padding for mobile selects */
            font-size: 1rem;
        }
        .section-title {
            font-size: 1.5rem;
        }
    }

  /* FAQ Card Shadow */
.faq-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  margin-bottom: 25px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Accordion Button Shadow */
.accordion-button {
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  padding: 1rem 1.5rem;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.accordion-button:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.accordion-body {
  background: #fff;
  color: #333;
  padding: 1rem 1.5rem;
  border-top: 1px solid #ddd;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.03);
}
.faq-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
}

  .btn-gradient {
    background: linear-gradient(45deg, #007bff);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .hoverable {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .btn-gradient {
    background: linear-gradient(45deg, #007bff);
    color: #fff;
    font-weight: 600;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
@media (max-width: 900px) {
  .feature-card-mt {
    margin-top: 20px !important;
  }
}




.instructor-card {
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
  min-width: 250px;
}
.instructor-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0px 15px 35px rgba(0,0,0,0.2);
}

.instructor-img {
  position: relative;
  display: inline-block;
}
.instructor-img img {
  border: 6px solid #fff;
  transition: transform 0.4s ease;
}
.instructor-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: flex;
  gap: 10px;
  transition: 0.4s ease-in-out;
}
.instructor-card:hover .overlay {
  transform: translate(-50%, -50%) scale(1);
}
.overlay a {
  background: #ff416c;
  color: #fff;
  padding: 8px 10px;
  border-radius: 50%;
  transition: 0.3s;
}
.overlay a:hover {
  background: #ff4b2b;
}

/* 🚀 Carousel CSS */
.instructor-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  animation: slide 25s linear infinite;
  background:white;
  padding:6px;
}

.instructor-card { flex: 0 0 32%; max-width: 32%; }

@media (max-width: 992px) {
  .instructor-card { flex: 0 0 50%; max-width: 50%; }
}

@media (max-width: 576px) {
  .instructor-card { flex: 0 0 100%; max-width: 100%; }
}
