/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffaee;
    color: #333;
    margin: 0;
    padding: 0;
    font-size: 16px;
}
.bg-light {
 
    background-color: white !important;}

a {
    text-decoration: none;
}
.py-5 {
    padding: 4rem !important;
}
.navbar-toggler-icon {

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    z-index: 9999;
    background-color: #fff9eb;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .spinner {
    border: 6px solid #f3e0ff;
    border-top: 6px solid #6a1b9a;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
/* Hero Section */
.hero {
    position: relative;
    background-image: url('canva.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fde5b2;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #ffe8b2;
}

/* Button Enhancements */
.btn-warning {
    color: white;
    background-color: #452242;
    opacity: 1;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-warning:hover {
    background-color: #7a3d78;
    border-color: #7a3d78;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: #9b4d96;
    margin-bottom: 20px;
}

/* Card Styles for Experiences */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.card .card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}
.card-body {
    padding: 1.5rem;
}

/* Partners Section */
#partners img {
    padding: 0px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
#partners img:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
#testimonials {

}
#testimonials .card {
    background-color: #fff1ce;
    border: none;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
#testimonials img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}
#testimonials p {
    font-style: italic;
}
#testimonials h6 {
    margin-top: 1rem;
    font-weight: 600;
    color: #7a3d78;
}

/* FAQ Section */
#faq {
    background-color: #fff;
    padding: 4rem 0;
}
#faq .accordion-item {
    border-radius: 0;
}
#faq .accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    border: none;
    box-shadow: none;
    padding: 1.25rem 1.5rem;
    transition: background-color 0.3s ease;
}
#faq .accordion-button:not(.collapsed) {
    background-color: #ffe1e1;
}
#faq .accordion-body {
    background-color: #fff;
    color: #666;
    border-top: 1px solid #ddd;
    padding: 1rem 1.5rem;
}

/* Light gray content box */
.light-gray-box {
    border: 1px solid #D3D3D3;
    padding: 15px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background-color: #9b4d96;
    color: #F8F3E7;
    padding: 20px 0;
    text-align: center;
}

/* Extra gap between sections */
.gap-bottom {
    margin-bottom: 60px;
}

/* Navbar */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem 2rem;
    max-width: 95%;
    margin: 1rem auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.navbar-logo img {
    scale: 1.3;
    height: 48px;
    transition: transform 0.3s ease;
}
.navbar-logo img:hover {
    transform: scale(1.05);
}
.navbar-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar-links li a {
    font-weight: 500;
    font-size: 1rem;
    color: #6a1b9a;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 3px;
    transition: all 0.3s ease-in-out;
}
.navbar-links li a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0%;
    height: 2px;
    background: #6a1b9a;
    transition: width 0.3s ease-in-out;
}
.navbar-links li a:hover::after {
    width: 100%;
}
.navbar-links li a:hover {
    color: #9b4d96;
}

/* Mobile nav dropdown */
.mobile-nav-list {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 1rem 1rem;
    padding: 1rem;
    text-align: center;
}
.mobile-nav-list li {
    margin-bottom: 1rem;
}
.mobile-nav-list li a {
    font-weight: 500;
    color: #6a1b9a;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .carousel-item .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 400px) {
    #experiences{
        padding:1rem !important;
    }

    .section-title {
        font-size: 2rem;
    
    }}
@media (max-width: 480px) {
    #testimonials{

}
    #experiences{
        padding:1.5rem !important;
    }
    .hero{
        height: 94vh;
    }
    
    .hero h1 {
        font-size: 1.5rem !important;
    }
    .hero p {
        font-size: 0.9rem !important;
        margin-bottom: auto !important;
        margin-top: 10px !important;
    }
    .btn-warning {
        width: 48% !important;
        font-size: small !important;
    }
    .light-gray-box {
        margin-top: -37px;
        width: 78% !important;
    }
}



.carousel-container {
    position: relative;
    overflow: hidden;
  }
  
  #experienceTrack {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
  }
  
  .experience-card {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  
  /* Tablet */
  @media (max-width: 992px) {
    .experience-card {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  /* Mobile */
  @media (max-width: 576px) {
    .experience-card {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #9b4d96; /* your main purple */
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 5px 12px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .carousel-nav:hover {
    background-color: #6a1b9a; /* slightly darker hover effect */
    transform: translateY(-50%) scale(1.05);
  }
  
  .carousel-nav.prev {
    left: 10px;
  }
  
  .carousel-nav.next {
    right: 10px;
  }
  