.bg-secondary {
  background-color: #FF8300 !important;
}

.text-primary {
  color: #90258f !important;
}

.btn-primary {
  color: #000;
  background-color: #860e83;
  border-color: #09aa2a;
}

/* Ultra-specific override */
.btn.btn-primary.rounded-pill,
.btn.btn-secondary.rounded-pill,
.btn.btn-primary:not(.rounded-circle),
.btn.btn-secondary:not(.rounded-circle) {
    border-radius: 0.3rem !important;
}

/* Override Bootstrap variables */
:root {
    --bs-btn-border-radius: 0.3rem;
    --bs-btn-border-radius-sm: 0.3rem;
    --bs-btn-border-radius-lg: 0.3rem;
}

.counter-facts .counter::before {
  content: "";
  position: absolute;
  height: 105px;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 10px 10px 0 0;
  background-color: #EE0C3C;
}

/* Base styles for animated logo */
.animated-logo {
    width: 120px;
    height: 120px;
    position: relative;
}

.logo-img {
    width: 100%;
    height: auto;
}

/* Animation Option 1: Smooth Spin */
.logo-spin {
    animation: smoothSpin 2s linear infinite;
}

@keyframes smoothSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animation Option 2: Pulse and Spin */
.logo-pulse-spin {
    animation: pulseSpin 2s ease-in-out infinite;
}

@keyframes pulseSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Animation Option 3: Bounce and Rotate */
.logo-bounce-rotate {
    animation: bounceRotate 1.5s ease-in-out infinite;
}

@keyframes bounceRotate {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0) rotate(180deg); }
    75% { transform: translateY(-20px) rotate(270deg); }
}

/* Animation Option 4: 3D Flip */
.logo-flip {
    animation: flip3D 2s ease-in-out infinite;
}

@keyframes flip3D {
    0% { transform: perspective(400px) rotateY(0); }
    50% { transform: perspective(400px) rotateY(180deg); }
    100% { transform: perspective(400px) rotateY(360deg); }
}

/* Animation Option 5: Morphing */
.logo-morph {
    animation: morph 3s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { 
        border-radius: 50%;
        transform: rotate(0deg) scale(1);
    }
    25% { 
        border-radius: 20%;
        transform: rotate(90deg) scale(1.1);
    }
    50% { 
        border-radius: 50%;
        transform: rotate(180deg) scale(1);
    }
    75% { 
        border-radius: 20%;
        transform: rotate(270deg) scale(1.1);
    }
}

/* Fade out effect */
#spinner {
    transition: opacity 0.5s ease-out;
}

#spinner.hide {
    opacity: 0;
    pointer-events: none;
}
/* Add shadow and glow effect */
.animated-logo {
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}

.logo-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(0,0,0,0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(128,0,128,0.8)); }
}

/* Add background animation */
#spinner {
    background: linear-gradient(45deg, #f3f4f6, #ffffff);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


@media (min-width: 992px) {
  .sticky-top.navbar-light {
    position: fixed;
    background: #F9F500 !important;
  }
}

mark, .mark {
  padding: .2em;
  background-color: #fcf8e357;
}

/* Courses Section */
.courses-section {
    padding: 60px 20px;
    background-color: #f8f9fa80;
    font-family: Arial, sans-serif;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #007bff;
    font-weight: bold;
}

/* Course Card */
.course-card {
    background-color: #ffffff;
    padding: 25px 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Course Title */
.course-title {
    color: #343a40;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Paragraphs inside card */
.course-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Emphasized text */
.course-card em {
    color: #007bff;
}


/* Section Styling */
.admission-section {
    padding: 60px 20px;
    background: #ffffffd1;
    font-family: Arial, sans-serif;
}

.section-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
    font-weight: bold;
}

/* Grid Layout */
.admission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Box Style */
.admission-box {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.admission-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Box Title */
.box-title {
    font-size: 1.3rem;
    color: #fff;
    margin: -25px -25px 20px -25px;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
}

/* Different Colors per Section */
.box-title.admission { background: #007bff; }
.box-title.fees { background: #28a745; }
.box-title.facilities { background: #ff9800; }
.box-title.rules { background: #e91e63; }
.box-title.office { background: #6f42c1; }

/* Content */
.admission-box p, .admission-box ul {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.admission-box ul {
    margin: 10px 0 0 20px;
    list-style: disc;
}

/* Make Office Hours Full Width */
.office-full {
    grid-column: 1 / -1;  /* spans across the full grid */
}

/* Two-column inside Office Hours */
.office-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.office-left, .office-right {
    flex: 1;
    min-width: 250px;
}

.office-left p, .office-right p {
    margin: 8px 0;
    color: #333;
    font-size: 15px;
}



.achievements-showcase {
  padding: 100px 20px;
  background: linear-gradient(to right, #fff4f9, #f8f8ff);
  font-family: "Poppins", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #7c007c;
  margin-bottom: 70px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: #ff8300;
  margin: 15px auto 0;
  border-radius: 3px;
}

.achievement-category {
  margin-bottom: 80px;
}

.category-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
  text-align: center;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.achievement-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(124, 0, 124, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,131,0,0.2), transparent 70%);
  transform: rotate(25deg);
  transition: all 0.5s ease;
}

.achievement-card:hover::before {
  top: -20%;
  left: -20%;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(124, 0, 124, 0.2);
}

.achievement-card .year {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff8300;
  background: rgba(255, 131, 0, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.achievement-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}


.past-events-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 20px auto 0;
        }

        .filter-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 8px 20px;
            border: 2px solid var(--primary-color);
            background: white;
            color: var(--primary-color);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-color);
            color: white;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .event-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .event-image {
            height: 200px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .event-card:hover .event-image img {
            transform: scale(1.1);
        }

        .event-date {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-color);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
            z-index: 1;
        }

        .event-date .day {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .event-date .month {
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .zoom-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .event-image:hover .zoom-overlay {
            opacity: 1;
        }

        .zoom-icon {
            color: white;
            font-size: 2rem;
        }

        .event-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .event-location {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .event-location i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        .event-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .event-description {
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .event-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .event-status {
            background: #28a745;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .event-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .event-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .load-more {
            text-align: center;
            margin-top: 50px;
        }

        .load-more-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .load-more-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        /* Image Modal Styles */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: relative;
            margin: auto;
            padding: 0;
            width: 90%;
            max-width: 900px;
            top: 50%;
            transform: translateY(-50%);
        }

        .modal-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        }

        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--secondary-color);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .events-grid {
                grid-template-columns: 1fr;
            }
            
            .event-date {
                width: 50px;
                height: 50px;
            }
            
            .event-date .day {
                font-size: 1.2rem;
            }

            .modal-content {
                width: 95%;
            }
        }
		
		/* Custom Filter Button Styles */
.btn-filter {
    color: #8e44ad; /* Purple text color */
    border-color: #8e44ad; /* Purple border */
    background-color: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background-color: rgba(142, 68, 173, 0.1); /* Light purple background on hover */
    color: #8e44ad;
    border-color: #8e44ad;
}

.btn-filter.active {
    background-color: #8e44ad; /* Solid purple background for active button */
    color: white;
    border-color: #8e44ad;
    box-shadow: 0 2px 5px rgba(142, 68, 173, 0.3);
}

.btn-filter:focus {
    box-shadow: 0 0 0 0.2rem rgba(142, 68, 173, 0.25);
}


/*audio*/
/* Background */
.audio-downloads {
  padding: 80px 20px;
  background: linear-gradient(135deg, #4b0082, #8e44ad, #ff5500);
  color: #fff;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

/* Search Bar */
.search-box {
  text-align: center;
  margin-bottom: 40px;
}

.search-box input {
  width: 85%;
  max-width: 450px;
  padding: 14px 20px;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Grid */
.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.audio-card {
  background: #fff;
  color: #333;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.audio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.audio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.audio-content {
  padding: 20px;
  position: relative;
}

.audio-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #4b0082;
}

.audio-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.tag {
  display: inline-block;
  background: #ff5500;
  color: #fff;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.download-btn {
  display: inline-block;
  background: linear-gradient(to right, #ff5500, #ff8300);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: linear-gradient(to right, #ff8300, #ff5500);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255,83,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .audio-content h3 {
    font-size: 1.1rem;
  }
  .audio-content p {
    font-size: 0.9rem;
  }
}



/*image gallery*/


/* গ্যালারির ফোল্ডারগুলো স্টাইল করা */
.gallery-folders {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.folder {
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.folder:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.folder img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.folder h3 {
    margin: 10px 0;
    font-size: 1.1em;
    color: #333;
}

/* মডাল স্টাইল */
.modal {
    display: none; 
    position: fixed; 
    z-index: 10; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    border-radius: 10px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* মডালের ভেতরের ছবির গ্রিড */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* গ্যালারির শিরোনামের ডিজাইন */
.header-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8; /* হালকা ব্যাকগ্রাউন্ড কালার */
    border-bottom: 3px solid #007bff; /* মেইন কালারের একটি লাইন */
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-section h1 {
    font-family: 'Arial', sans-serif;
    font-size: 2.8em; /* বড় ফন্ট সাইজ */
    color: #333; /* গাঢ় টেক্সট কালার */
    margin-bottom: 10px;
    font-weight: 700;
}

.header-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

/* শিরোনামের নিচে একটি ছোট ডিভাইডার */
.divider {
    width: 80px;
    height: 4px;
    background-color: #ff6f61; /* আকর্ষণীয় হাইলাইট কালার */
    margin: 0 auto;
    border-radius: 2px;
}


/* আপনার আগের CSS কোড এর নিচে এই নতুন কোডগুলো যোগ করুন */
/* .gallery-folders { ... }
.folder { ... }
...
মডাল স্টাইল ইত্যাদি
*/




.video-gallery {
  padding: 80px 20px;
  background: #fafafa;
  font-family: "Poppins", sans-serif;
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #4b0082;
  margin-bottom: 10px;
}

.gallery-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.video-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.video-info p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-modal-content iframe {
  width: 100%;
  height: 500px;
  display: block;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}


/* Teachers Page Styles */
.teachers-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Hero Section with Parallax */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://picsum.photos/seed/teachers/1920/1080.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.8) 0%, rgba(65, 105, 225, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Department Navigation */
.department-nav {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(248, 249, 250, 0.95);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    color: #495057;
}

.nav-items {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.nav-items::-webkit-scrollbar {
    display: none;
}

.dept-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: #495057;
}

.dept-btn:hover,
.dept-btn.active {
    background: #4169e1;
    color: white;
    border-color: #4169e1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

/* Featured Teacher */
.featured-teacher {
    padding: 80px 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.featured-subject {
    color: #4169e1;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.featured-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.featured-achievements {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 15px;
}

.achievement i {
    color: #4169e1;
    font-size: 1.2rem;
    width: 24px;
}

.view-profile-btn {
    background: #4169e1;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    background: #3151c7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

/* Teachers Section */
.teachers-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.search-container input {
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    width: 300px;
    outline: none;
}

.search-btn {
    background: #4169e1;
    border: none;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #3151c7;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Teacher Card with Flip Effect */
.teacher-card {
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.teacher-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-front {
    background: white;
}

.card-back {
    background: linear-gradient(135deg, #4169e1 0%, #3151c7 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.teacher-details {
    padding: 20px;
}

.teacher-details h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.teacher-subject {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 15px;
}

.teacher-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #ffd700;
}

.teacher-rating span {
    color: #6c757d;
    margin-left: 5px;
}

.back-content {
    padding: 30px;
    text-align: center;
}

.back-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.back-subject {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.teacher-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.contact-btn {
    background: white;
    color: #4169e1;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: white;
    color: #4169e1;
    border: 2px solid #4169e1;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #4169e1;
    color: white;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #4169e1 #f1f1f1;
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: #4169e1;
    border-radius: 10px;
}

.testimonial {
    min-width: 400px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: #1a1a1a;
}

.testimonial-author p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.cta-secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featured-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .featured-achievements {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-container input {
        width: 100%;
    }
    
    .teachers-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .testimonial {
        min-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-items {
        gap: 10px;
    }
    
    .dept-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .teacher-card {
        height: 350px;
    }
    
    .teacher-photo {
        height: 200px;
    }
    
    .back-content {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
/* Teachers Page Styles */
.teachers-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Hero Section with Parallax - Updated to Purple */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../img/teacher.png') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.9) 0%, rgba(128, 0, 128, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Department Navigation */
.department-nav {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(248, 249, 250, 0.95);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    color: #495057;
}

.nav-items {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.nav-items::-webkit-scrollbar {
    display: none;
}

.dept-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: #495057;
}

.dept-btn:hover,
.dept-btn.active {
    background: #663399;
    color: white;
    border-color: #663399;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 51, 153, 0.3);
}

/* Featured Teacher */
.featured-teacher {
    padding: 80px 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.featured-subject {
    color: #663399;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.featured-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.featured-achievements {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 15px;
}

.achievement i {
    color: #663399;
    font-size: 1.2rem;
    width: 24px;
}

.view-profile-btn {
    background: #663399;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    background: #552288;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 51, 153, 0.3);
}

/* Teachers Section - Updated to Purple Background */
.teachers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #4a148c;
}

.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.search-container input {
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    width: 300px;
    outline: none;
}

.search-btn {
    background: #663399;
    border: none;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #552288;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Teacher Card with Flip Effect */
.teacher-card {
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.teacher-card.hidden {
    display: none;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.teacher-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-front {
    background: white;
}

.card-back {
    background: linear-gradient(135deg, #663399 0%, #552288 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.teacher-details {
    padding: 20px;
}

.teacher-details h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.teacher-subject {
    color: #663399;
    font-weight: 500;
    margin-bottom: 15px;
}

.teacher-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #ffd700;
}

.teacher-rating span {
    color: #6c757d;
    margin-left: 5px;
}

.back-content {
    padding: 30px;
    text-align: center;
}

.back-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.back-subject {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.teacher-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.contact-btn {
    background: white;
    color: #663399;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: white;
    color: #663399;
    border: 2px solid #663399;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #663399;
    color: white;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #4a148c;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #663399 #f1f1f1;
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: #663399;
    border-radius: 10px;
}

.testimonial {
    min-width: 400px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: #1a1a1a;
}

.testimonial-author p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a148c 0%, #663399 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: #ffd700;
    color: #4a148c;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.cta-secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background: white;
    color: #4a148c;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featured-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .featured-achievements {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-container input {
        width: 100%;
    }
    
    .teachers-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .testimonial {
        min-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-items {
        gap: 10px;
    }
    
    .dept-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .teacher-card {
        height: 350px;
    }
    
    .teacher-photo {
        height: 200px;
    }
    
    .back-content {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}


/* Parents Review Page Styles */
.reviews-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../img/parents.png') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.9) 0%, rgba(128, 0, 128, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Filter Section */
.filter-section {
    background: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(248, 249, 250, 0.95);
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.search-btn {
    background: #663399;
    border: none;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #552288;
}

.filter-options {
    display: flex;
    gap: 15px;
}

.rating-filter, .date-filter {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    background: white;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-filter:focus, .date-filter:focus {
    outline: none;
    border-color: #663399;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.parent-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.parent-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f3e5f5;
}

.parent-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.parent-role {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-rating {
    text-align: right;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.review-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.review-content {
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.6;
    font-size: 1rem;
}

.review-footer {
    border-top: 1px solid #f1f3f4;
    padding-top: 15px;
}

.review-actions {
    display: flex;
    gap: 20px;
}

.action-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.action-btn:hover {
    color: #663399;
}

.action-btn i {
    font-size: 1rem;
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: white;
    color: #663399;
    border: 2px solid #663399;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #663399;
    color: white;
    transform: translateY(-2px);
}

/* Submit Review Section */
.submit-review-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #663399 0%, #552288 100%);
    color: white;
    text-align: center;
}

.submit-review-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.submit-review-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.submit-review-btn {
    background: #ffd700;
    color: #663399;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-review-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-content {
    text-align: center;
}

.stats-content h2 {
    font-size: 2.5rem;
    color: #4a148c;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 2rem;
    color: #663399;
    margin-bottom: 10px;
}

.rating-bar {
    height: 8px;
    background: #f1f3f4;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #663399 0%, #9c27b0 100%);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.stat-item p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: none;
    }
    
    .filter-options {
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-rating {
        text-align: left;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .parent-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .review-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .submit-review-content h2 {
        font-size: 2rem;
    }
}

/* Registration Page Styles */
.registration-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://picsum.photos/seed/registration/1920/1080.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.9) 0%, rgba(128, 0, 128, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-steps {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #663399;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-text {
    font-weight: 500;
}

/* Registration Section */
.registration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.registration-form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #663399 0%, #552288 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    opacity: 0.9;
}

.registration-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    color: #663399;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    font-size: 1.1rem;
}

.parent-guardian-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.parent-guardian-section h4 {
    color: #663399;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #663399;
    box-shadow: 0 0 0 3px rgba(102, 51, 153, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
}

.terms-link {
    color: #663399;
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

.terms-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.submit-btn,
.reset-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn {
    background: #663399;
    color: white;
}

.submit-btn:hover {
    background: #552288;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 51, 153, 0.3);
}

.reset-btn {
    background: #6c757d;
    color: white;
}

.reset-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Information Section */
.info-section {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #663399 0%, #552288 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.info-card h3 {
    color: #663399;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card p {
    color: #495057;
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #663399;
    width: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .registration-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-btn,
    .reset-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-header {
        padding: 20px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 20px;
    }
}


/* newstyle.css */

/* Achievement Card Container */
.achievement-card {
  border: 2px solid #007bff;
  border-radius: 12px;
  padding: 14px;
  margin: 12px 0;
  background: #eef5ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* Card Header: Year and Country */
.achievement-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.achievement-card .card-header .year {
  font-size: 14px;
  color: #007bff;
  font-weight: bold;
}

.achievement-card .card-header .country {
  font-size: 12px;
  color: #555;
}

/* Horizontal Divider */
.achievement-card hr {
  border: 0;
  border-top: 1px solid #007bff;
  margin: 6px 0;
}

/* Name and Position */
.achievement-card .card-body p.name {
  margin: 4px 0 6px 0;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.achievement-card .card-body p.position {
  font-size: 14px;
  font-style: italic;
  color: #333;
  margin: 0;
}

/* Short Brief */
.achievement-card .card-body p.brief {
  margin-top: 6px;
  line-height: 1.5;
  color: #111;
}

.achievement-card .card-body p.brief b {
  color: #007bff;
}
.zoom-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zoom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.zoomable-img {
  cursor: zoom-in;
  height: 250px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.modal-content {
  border-radius: 10px;
}

.zoom-image {
  max-height: 80vh;
  transition: transform 0.3s ease;
}

.zoom-image:hover {
  transform: scale(1.05);
  cursor: zoom-out;
}



/* Admission section styling */
.admission-section {
    padding: 20px 0;
}

.section-heading {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.admission-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.admission-box:hover {
    transform: translateY(-5px);
}

.box-title {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.admission-box ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.admission-box li {
    margin-bottom: 8px;
}

.office-full {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .bg-breadcrumb-course .container {
        max-width: 100% !important;
        padding: 0 15px;
    }
    
    .display-3 {
        font-size: 1.75rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .admission-box {
        margin-bottom: 15px;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .admission-box {
        padding: 15px;
    }
    
    .box-title {
        font-size: 1.2rem;
    }
    
    ul {
        padding-left: 15px;
    }
    
    li {
        margin-bottom: 5px;
        font-size: 0.9rem;
    }
}


/* Toast notification styles */

.toast {
  width: 800px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255,255,255,.85);
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  border-radius: 10px;
  height: 480px;
}
.toast-header {
    border-bottom: none;
    padding: 0.75rem 1rem;
}

.toast-body {
    padding: 1rem;
}

/* Animation for the toast */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate__fadeInDown {
    animation-name: slideDown;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

/* Success and error icons styling */
.toast-header .rounded-circle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-header i {
    font-size: 18px;
}

/* Spinner styling */
.spinner-grow {
    width: 1.5rem;
    height: 1.5rem;
}


.success-card {
    border-left: 4px solid #28a745;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.success-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    text-align: center;
}

.success-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.success-title {
    font-weight: 600;
    margin: 0;
    font-size: 1.25rem;
}

.success-content {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.success-message {
    line-height: 1.7;
    color: #495057;
}

.success-message p {
    margin-bottom: 15px;
}

.success-message p:last-child {
    margin-bottom: 0;
}

.success-footer {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
}

/* Custom scrollbar for message area */
.success-content::-webkit-scrollbar {
    width: 6px;
}

.success-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.success-content::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 3px;
}

.success-content::-webkit-scrollbar-thumb:hover {
    background: #218838;
}

/* Toast styling */
.toast {
    min-width: 500px;
    max-width: 850px;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .toast {
        min-width: 90%;
        max-width: 90%;
    }
    
    .success-content {
        max-height: 250px;
    }
}
.section-title2 {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: #4a148c;
}