html,body {
    font-family: 'Mulish', sans-serif;
    color: #333;
}
html {
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
}

:root {
    --color-purple: #992475;
    --color-red: #c63230;
    --color-orange: #e25527;
    --color-black: #000000;
    --color-white: #ffffff;
    --font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-primary: 'Mulish', sans-serif;

    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --primary-purple: #992475;
    --primary-red: #c63230;
    --primary-orange: #e25527;
    --gradient-primary: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-black: #000000;
    --light-gray: #f8f9fa;
    --white: #ffffff;

    --gradient-1: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    --gradient-2: linear-gradient(90deg, #992475 0%, #c63230 100%);
    --gradient-3: linear-gradient(135deg, #c63230 0%, #e25527 100%);

}


.dropdown-menu {
  padding: 0px !important;
  border-radius: 0px !important;
}
.dropdown-menu .dropdown-item {
  padding: 10px 20px !important;
}
.dropdown-menu .dropdown-item {
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
.dropdown-menu li .dropdown-item:hover {
  background-color: #fff;
  color: #f76d3c !important;
}
@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}

.df-btn {
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  border-radius: 24px !important;
  transition: all 2slinear !important;
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 10005 !important;
  align-items: flex-end !important;
  line-height: 1 !important;
}
.df-btn-text {
  border-radius: 24px !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: "center" !important;
  font-weight: 500 !important;
  letter-spacing: 0.25px !important;
  transition: all 0.08slinear !important;
  cursor: pointer !important;
  padding-right: 15px !important;
  padding-left: 10px !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  font-size: 16px !important;
  margin-top: 15px !important;
  background-color: #4dc247;
  box-shadow: rgb(0 0 0 / 20%) 0px 0px 0.428571rem 0px !important;
}
.df-svg-icon {
  height: 40px !important;
  width: 40px !important;
  fill: white !important;
}

.logo{
    width: 100px;
}

/* ===========================
    Section Padding
=========================== */
.section {
    padding: 45px 0px;
    position: relative;
    overflow: hidden;
}

/* ===========================
    Typography
=========================== */
.main-heading {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.secondary-main-heading {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Responsive Typography for Mobile */
@media (max-width: 768px) {
    .main-heading,
    .secondary-main-heading {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .main-heading,
    .secondary-main-heading {
        font-size: 28px;
    }
}

@media (max-width: 375px) {
    .main-heading,
    .secondary-main-heading {
        font-size: 24px;
    }
}

/* ===========================
    Gradient Text Effect
=========================== */
.gradient-text {
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    display: inline-block;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ===== GRADIENT BUTTON ===== */
.gradient-btn {
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gradient-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    color: white;
}


/* ===========================
    Beyond Academics Section
=========================== */
#beyond-academics {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #1f2937;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-intro p {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Decorative gradient line */
.gradient-line {
    height: 4px;
    width: 120px;
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
    margin: 1rem auto;
    border-radius: 4px;
    animation: expandWidth 1s ease-out forwards;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

/* ===========================
    Activity Cards
=========================== */
.activity-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    position: relative;
}

.activity-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
}

.activity-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .activity-card-image {
        height: 320px;
    }
}

.activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover .activity-card-image img {
    transform: scale(1.1);
}

.activity-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.activity-card:hover .activity-card-overlay {
    opacity: 1;
}

.activity-card-body {
    padding: 2rem;
}

@media (min-width: 768px) {
    .activity-card-body {
        padding: 2.5rem;
    }
}

.activity-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
    position: relative;
}

@media (min-width: 768px) {
    .activity-card-title {
        font-size: 24px;
    }
}

.activity-card-underline {
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
    animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.activity-card-description {
    color: #4b5563;
    line-height: 1.7;
    font-size: 16px;
    margin-top: 1.5rem;
}

@media (max-width: 576px) {
    .activity-card-description {
        font-size: 15px;
    }
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating decorative elements */
.floating-orb-1 {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.1) 0%, rgba(226, 85, 39, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

.floating-orb-2 {
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, rgba(198, 50, 48, 0.1) 0%, rgba(153, 36, 117, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

@media (max-width: 992px) {
    .floating-orb-1,
    .floating-orb-2 {
        display: none;
    }
}

/* ===========================
    Call to Action Section
=========================== */
#cta-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.cta-orb-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.2) 0%, rgba(198, 50, 48, 0.2) 100%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 3s ease-in-out infinite;
}

.cta-orb-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: linear-gradient(135deg, rgba(198, 50, 48, 0.2) 0%, rgba(226, 85, 39, 0.2) 100%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

.cta-heading {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

@media (min-width: 768px) {
    .cta-heading {
        font-size: 42px;
    }
}

@media (min-width: 992px) {
    .cta-heading {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .cta-heading {
        font-size: 28px;
    }
}

.cta-heading .gradient-text-light {
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    display: block;
    margin-top: 0.5rem;
}

.cta-description {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .cta-description {
        font-size: 15px;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-primary-gradient {
    position: relative;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.btn-primary-gradient:active {
    transform: scale(0.95);
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.btn-primary-gradient:hover::before {
    transform: translateY(0);
}

.btn-primary-gradient span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    border-radius: 0.75rem;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icon-arrow {
    transition: transform 0.3s ease;
}

.btn-primary-gradient:hover .icon-arrow,
.btn-secondary:hover .icon-arrow {
    transform: translateX(4px);
}



.btn-secondary-glass {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-secondary-glass:active {
    transform: scale(0.95);
}

/* Icon animations */
.btn-primary-gradient:hover .arrow-icon {
    transform: translateX(5px);
}

.btn-secondary-glass:hover .arrow-icon {
    transform: translateY(-3px);
}

.arrow-icon {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

/* Fade in animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
    Accessibility & SEO
=========================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* Career page start */

/* ===== JOB CARDS ===== */
.job-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.job-card:nth-child(1) {
    animation-delay: 0.3s;
}

.job-card:nth-child(2) {
    animation-delay: 0.4s;
}

.job-card:nth-child(3) {
    animation-delay: 0.5s;
}

.job-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.job-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.job-location {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-details {
    margin: 16px 0 24px 0;
}

.job-details p {
    font-size: 14px;
    margin-bottom: 8px;
}

.job-details .label {
    font-weight: 600;
    margin-bottom: 4px;
}

.job-details .value {
    color: #374151;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: linear-gradient(to bottom right, rgba(243, 232, 255, 0.3), rgba(254, 226, 226, 0.3), rgba(255, 237, 213, 0.3));
}

.benefits-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.benefits-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.benefits-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top right, rgba(153, 36, 117, 0.2), transparent, rgba(226, 85, 39, 0.2));
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateX(-20px);
}

.benefit-item.visible {
    animation: fadeInLeft 0.5s ease forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0s; }
.benefit-item:nth-child(2) { animation-delay: 0.1s; }
.benefit-item:nth-child(3) { animation-delay: 0.2s; }
.benefit-item:nth-child(4) { animation-delay: 0.3s; }
.benefit-item:nth-child(5) { animation-delay: 0.4s; }

.benefit-item svg {
    color: #992475;
    flex-shrink: 0;
}

/* ===== FORM STYLES ===== */
.form-container {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #000000;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Mulish', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #992475;
    outline: none;
    box-shadow: 0 0 0 3px rgba(153, 36, 117, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.file-upload-label:hover {
    border-color: #992475;
}

.file-upload-label span {
    color: #6b7280;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recaptcha-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 16px;
}

.recaptcha-box input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    cursor: pointer;
}

.recaptcha-box label {
    font-size: 14px;
    cursor: pointer;
    margin: 0;
}

.recaptcha-links {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.recaptcha-links a {
    color: #6b7280;
    text-decoration: none;
}

.recaptcha-links a:hover {
    text-decoration: underline;
}

.recaptcha-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: white;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recaptcha-icon-inner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}


.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}
.fade-in.animate-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in-up.visible {
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 767px) {
    .benefits-image img {
        height: 300px;
    }

    .job-card {
        margin-bottom: 20px;
    }

}
/* Career page -ends */

/* Contact Page - starts */
.contact-hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.3;
}

.contact-hero-description {
    font-size: 18px;
    color: #374151;
    line-height: 1.75;
    max-width: 48rem;
    margin: 0 auto;
}

/* ========================================
    WELCOME BOX
======================================== */
.welcome-box {
    background: linear-gradient(135deg, #f3e8ff 0%, #fee2e2 50%, #fed7aa 100%);
    border-radius: 16px;
    padding: 48px 24px;
    margin-bottom: 48px;
    text-align: center;
}

.welcome-box h3 {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.welcome-box p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 8px;
}

.welcome-box .tagline {
    color: #1f2937;
    font-weight: 600;
    margin-top: 8px;
}

/* ========================================
    CONTACT CARDS
======================================== */
.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(to right, #992475, #c63230, #e25527);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.contact-card-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.contact-card-content {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.contact-card-content a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #c63230;
}

/* ========================================
    CONTACT FORM
======================================== */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    opacity: 0;
    transform: translateX(-30px);
}

.contact-form-wrapper.animate-in {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.contact-form-wrapper .form-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
}

.form-control-custom:focus {
    border-color: #c63230;
    box-shadow: 0 0 0 3px rgba(198, 50, 48, 0.1);
}

.form-control-custom::placeholder {
    color: #9ca3af;
}

textarea.form-control-custom {
    resize: none;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(to right, #992475, #c63230, #e25527);
    color: #ffffff;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* ========================================
    MAP SECTION
======================================== */
.map-wrapper {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    height: 100%;
    min-height: 600px;
    opacity: 0;
    transform: translateX(30px);
}

.map-wrapper.animate-in {
    animation: fadeInRight 0.6s ease-out forwards;
}

.map-header {
    padding: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.map-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.map-header p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.map-container {
    width: 100%;
    height: calc(100% - 88px);
    min-height: 512px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 675px) {

    .contact-card {
        padding: 24px;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .welcome-box {
        padding: 24px 16px;
    }
    .welcome-box h3 {
        font-size: 22px;
    }
    .welcome-box p {
        font-size: 16px;
    }
}

.delay-1 {
    animation-delay: 0.1s;
}
.delay-2 {
    animation-delay: 0.2s;
}
.delay-3 {
    animation-delay: 0.3s;
}
.delay-hero {
    animation-delay: 0.2s;
}

/* Contact Page - ends */

/* Facility - starts */
.gradient-purple-orange {
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
}
.gradient-orange-red {
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
}
.gradient-red-purple {
    background: linear-gradient(135deg, var(--color-red), var(--color-purple));
}
.bg-gradient-purple-orange {
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
}
.bg-gradient-orange-red {
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
}

.facility-hero-section {
    padding: 80px 0 80px 0;
    background: linear-gradient(to bottom right, #ffffff, rgba(153, 36, 117, 0.05), rgba(226, 85, 39, 0.05));
    position: relative;
    overflow: hidden;
}
.facility-hero-section .animated-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}
.facility-hero-section .blob-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
    animation-duration: 8s;
}

.facility-hero-section .blob-2 {
    bottom: 15%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    animation-duration: 10s;
    animation-delay: 1s;
}

.facility-hero-section .blob-3 {
    top: 40%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--color-red), var(--color-purple));
    animation-duration: 12s;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

.facility-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.facility-hero-title {
    font-size: 68px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--color-black);
}

.facility-hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
}
.decorative-line {
    width: 96px;
    height: 4px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
    border-radius: 50px;
    margin: 3rem auto 0;
}

/* ====================== FACILITY SECTION ====================== */

.facility-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.facility-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.facility-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/3;
    background: linear-gradient(to bottom right, rgba(153, 36, 117, 0.1), rgba(226, 85, 39, 0.1));
}

.facility-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.facility-image-wrapper:hover img {
    transform: scale(1.1);
}

.facility-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.facility-image-wrapper:hover::after {
    opacity: 1;
}

.facility-image-wrapper::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: -2rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

.facility-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    line-height: 1.3;
}

.facility-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.85);
}

/* ====================== CALL TO ACTION ====================== */

.cta-section {
    padding: 54px 0;
    background: linear-gradient(to bottom right, rgba(153, 36, 117, 0.08), rgba(226, 85, 39, 0.08));
    position: relative;
    overflow: hidden;
}

.cta-section .animated-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

.cta-section .blob-1 {
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
}

.cta-section .blob-2 {
    bottom: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--color-black);
}

.cta-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (max-width: 767px) {

    .facility-content h2 {
        font-size: 28px;
        margin-bottom: 1rem;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 17px;
    }

    .facility-content p {
        font-size: 16px;
    }
    
    .btn-primary-gradient,
    .btn-secondary {
        font-size: 16px;
        padding: 0.875rem 1.5rem;
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .decorative-line {
        margin-top: 2rem;
    }
    
    .hero-section .blob-1,
    .hero-section .blob-2,
    .hero-section .blob-3 {
        width: 200px;
        height: 200px;
    }
}
/* Facility - ends */

/* Gallery Page - starts */
.gallery-section {
    position: relative;
}
.gallery-heading {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.6s ease forwards;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-item:nth-child(12) { animation-delay: 1.2s; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay with gradient */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay-text {
    transform: translateY(0);
}

/* Gradient border on hover */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-red), var(--color-orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gallery-item:hover::before {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .gallery-heading {
        margin-bottom: 2rem;
    }
    .gallery-item {
        border-radius: 12px;
    }
    .gallery-item::before {
        border-radius: 12px;
    }
    .gallery-overlay {
        padding: 1rem;
    }
    .gallery-overlay-text {
        font-size: 14px;
    }
    /* Reduce stagger animation delay on mobile */
    .gallery-item:nth-child(n) {
        animation-delay: 0.05s !important;
    }
}
/* Gallery Page - ends */

/* Calendar Page - starts */
.gradient-purple-red {
    background: linear-gradient(90deg, #992475 0%, #c63230 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-purple-red-orange {
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-orange-red-purple {
    background: linear-gradient(90deg, #e25527 0%, #c63230 50%, #992475 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-red-orange {
    background: linear-gradient(90deg, #c63230 0%, #e25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-orange-red {
    background: linear-gradient(90deg, #e25527 0%, #c63230 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg-purple-red-orange {
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
}

.gradient-bg-purple-red {
    background: linear-gradient(135deg, #992475 0%, #c63230 100%);
}

.gradient-bg-orange-purple {
    background: linear-gradient(135deg, #e25527 0%, #992475 100%);
}
.calendar-hero-section {
    position: relative;
    overflow: hidden;
    padding: 54px 0px;
}

.calendar-hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.calendar-hero-gradient-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: linear-gradient(135deg, #992475 0%, #c63230 100%);
    border-radius: 50%;
    filter: blur(80px);
}

.calendar-hero-gradient-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: linear-gradient(135deg, #e25527 0%, #992475 100%);
    border-radius: 50%;
    filter: blur(80px);
}

.calendar-hero-content {
    position: relative;
    z-index: 10;
}

.calendar-hero-title {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    font-size: 34px;
}

.calendar-hero-title .gradient-word {
    font-weight: 700;
    display: inline-block;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.calendar-hero-description {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.7;
    max-width: 48rem;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* ========================
    CALENDAR SECTION
======================== */
.calendar-section {
    padding: 54px 0px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

/* Month Filter Buttons */
.month-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.month-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.month-btn:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
}

.month-btn.active {
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 25px rgba(153, 36, 117, 0.3);
    transform: scale(1.05);
}

/* Month Section */
.month-section {
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out;
}

.month-header {
    margin-bottom: 2rem;
}

.month-title {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.month-underline {
    height: 4px;
    width: 96px;
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
    border-radius: 9999px;
    margin-top: 0.5rem;
}

/* Event Cards */
.event-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.event-card:hover::before {
    opacity: 0.05;
}

/* Category Icons */
.event-icon {
    display: inline-flex;
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.event-card:hover .event-icon {
    transform: scale(1.1);
}

.event-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

/* Date and Day */
.event-date-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.event-date-wrapper .clock-icon {
    width: 16px;
    height: 16px;
    color: rgba(0, 0, 0, 0.5);
}

.event-date {
    font-weight: 600;
    color: #000000;
    font-size: 0.9375rem;
}

.event-day {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
}

.event-details {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    white-space: pre-line;
    font-size: 0.9375rem;
}

/* Holiday Badge */
.holiday-badge {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(90deg, #e25527 0%, #c63230 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* Category Gradients */
.gradient-academic {
    background: linear-gradient(135deg, #992475 0%, #c63230 100%);
}

.gradient-academic-overlay::before {
    background: linear-gradient(135deg, #992475 0%, #c63230 100%);
}

.gradient-cultural {
    background: linear-gradient(135deg, #c63230 0%, #e25527 100%);
}

.gradient-cultural-overlay::before {
    background: linear-gradient(135deg, #c63230 0%, #e25527 100%);
}

.gradient-sports {
    background: linear-gradient(135deg, #e25527 0%, #992475 100%);
}

.gradient-sports-overlay::before {
    background: linear-gradient(135deg, #e25527 0%, #992475 100%);
}

.gradient-parent {
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
}

.gradient-parent-overlay::before {
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
}

.gradient-celebration {
    background: linear-gradient(135deg, #e25527 0%, #992475 100%);
}

.gradient-celebration-overlay::before {
    background: linear-gradient(135deg, #e25527 0%, #992475 100%);
}

.gradient-talent {
    background: linear-gradient(135deg, #992475 0%, #e25527 100%);
}

.gradient-talent-overlay::before {
    background: linear-gradient(135deg, #992475 0%, #e25527 100%);
}

.gradient-holiday {
    background: linear-gradient(135deg, #e25527 0%, #c63230 100%);
}

.gradient-holiday-overlay::before {
    background: linear-gradient(135deg, #e25527 0%, #c63230 100%);
}

.gradient-default {
    background: linear-gradient(135deg, #992475 0%, #c63230 100%);
}

.gradient-default-overlay::before {
    background: linear-gradient(135deg, #992475 0%, #c63230 100%);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 767px) {

    .calendar-hero-section {
        padding: 40px 0px;
    }

    .calendar-hero-title {
        font-size: 24px;
        gap: 0.5rem;
    }

    .calendar-hero-description {
        font-size: 0.9375rem;
    }

    .calendar-section {
        padding: 40px 0px;
    }

    .month-filter {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .month-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .month-title {
        font-size: 1.375rem;
    }

    .event-card {
        padding: 1.25rem;
    }

    .event-details {
        font-size: 0.875rem;
    }

    .calendar-hero-gradient-1,
    .calendar-hero-gradient-2 {
        width: 256px;
        height: 256px;
    }
}
/* Calendar Page - ends */

/* Preschool page - starts */
.branches-section {
    padding: 54px 0;
    background: linear-gradient(to bottom, #ffffff, rgba(249, 250, 251, 0.3), #ffffff);
    position: relative;
    overflow: hidden;
}

.branches-container {
    position: relative;
    z-index: 10;
}

/* Decorative Background Elements */
.bg-decoration-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: linear-gradient(to bottom right, rgba(153, 36, 117, 0.05), rgba(198, 50, 48, 0.05), rgba(226, 85, 39, 0.05));
    border-radius: 50%;
    filter: blur(80px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.bg-decoration-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: linear-gradient(to bottom right, rgba(226, 85, 39, 0.05), rgba(198, 50, 48, 0.05), rgba(153, 36, 117, 0.05));
    border-radius: 50%;
    filter: blur(80px);
    transform: translate(50%, 50%);
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    display: inline-block;
    position: relative;
}

.section-title h1 {
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(to right, #992475, #c63230, #e25527);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title h1 {
        font-size: 42px;
    }
}

.title-underline {
    height: 4px;
    background: linear-gradient(to right, #992475, #c63230, #e25527);
    border-radius: 9999px;
    margin: 0 auto;
    animation: expandWidth 1s ease-out 0.3s forwards;
    width: 0;
}

.section-subtitle {
    color: rgba(0, 0, 0, 0.6);
    margin-top: 6px;
    font-size: 18px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
    BRANCH CARDS
======================================== */
.branch-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.branch-card:nth-child(1) { animation-delay: 0s; }
.branch-card:nth-child(2) { animation-delay: 0.1s; }
.branch-card:nth-child(3) { animation-delay: 0.2s; }
.branch-card:nth-child(4) { animation-delay: 0.3s; }
.branch-card:nth-child(5) { animation-delay: 0.4s; }
.branch-card:nth-child(6) { animation-delay: 0.5s; }

.branch-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

/* Map Container */
.br-map-container {
    position: relative;
    height: 224px;
    overflow: hidden;
}

.br-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.br-map-container:hover iframe {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.br-map-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.br-map-badge svg {
    color: #c63230;
}

.br-map-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
}

.branch-name {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.branch-name h3 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(to right, #992475, #c63230, #e25527);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.branch-name-underline {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    height: 2px;
    background: linear-gradient(to right, #992475, #c63230, #e25527);
    animation: expandWidth 0.8s ease-out forwards;
    width: 0;
}

.branch-card:nth-child(1) .branch-name-underline { animation-delay: 0.3s; }
.branch-card:nth-child(2) .branch-name-underline { animation-delay: 0.4s; }
.branch-card:nth-child(3) .branch-name-underline { animation-delay: 0.5s; }
.branch-card:nth-child(4) .branch-name-underline { animation-delay: 0.6s; }
.branch-card:nth-child(5) .branch-name-underline { animation-delay: 0.7s; }
.branch-card:nth-child(6) .branch-name-underline { animation-delay: 0.8s; }

.branch-address {
    color: rgba(0, 0, 0, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 72px;
}

/* Phone Link */
.phone-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.phone-link:hover {
    transform: translateX(8px);
}

.phone-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #992475, #c63230, #e25527);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.phone-link:hover .phone-icon-wrapper {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.phone-icon-wrapper svg {
    color: #ffffff;
}

.phone-number {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
}

.phone-link:hover .phone-number {
    background: linear-gradient(to right, #992475, #c63230, #e25527);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 231, 235, 1);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15) rotate(5deg);
}

.social-icon:active {
    transform: scale(0.95);
}

/* Facebook */
.social-facebook {
    background: linear-gradient(to bottom right, rgba(153, 36, 117, 0.1), rgba(198, 50, 48, 0.1));
}

.social-facebook:hover {
    background: linear-gradient(to bottom right, #992475, #c63230);
}

.social-facebook svg {
    color: #992475;
    transition: color 0.3s ease;
}

.social-facebook:hover svg {
    color: #ffffff;
}

/* Instagram */
.social-instagram {
    background: linear-gradient(to bottom right, rgba(198, 50, 48, 0.1), rgba(226, 85, 39, 0.1));
}

.social-instagram:hover {
    background: linear-gradient(to bottom right, #c63230, #e25527);
}

.social-instagram svg {
    color: #c63230;
    transition: color 0.3s ease;
}

.social-instagram:hover svg {
    color: #ffffff;
}

/* LinkedIn */
.social-linkedin {
    background: linear-gradient(to bottom right, rgba(226, 85, 39, 0.1), rgba(153, 36, 117, 0.1));
}

.social-linkedin:hover {
    background: linear-gradient(to bottom right, #e25527, #992475);
}

.social-linkedin svg {
    color: #e25527;
    transition: color 0.3s ease;
}

.social-linkedin:hover svg {
    color: #ffffff;
}

/* ========================================
    CONTACT CTA
======================================== */
.contact-cta {
    margin-top: 4rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.cta-text {
    color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.br-cta-button {
    padding: 1rem 2rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #992475, #c63230, #e25527);
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.br-cta-button:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.br-cta-button:active {
    transform: scale(0.95);
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header Animations */
.header-animate {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.title-animate {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.7s ease-out forwards;
}

.subtitle-animate {
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.4s forwards;
}
@media (max-width: 767.98px) {
    .branches-section {
        padding: 45px 0;
    }
    
    .section-title h1 {
        font-size: 34px;
    }
    
    .main-heading {
        font-size: 34px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .bg-map-container {
        height: 200px;
    }
    
    .contact-cta {
        margin-top: 3rem;
    }
}


/* About Us page - starts */
.banner-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.95) 0%, rgba(198, 50, 48, 0.95) 50%, rgba(226, 85, 39, 0.95) 100%),
                url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?w=1600&h=400&fit=crop') center/cover no-repeat;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.4) 0%, rgba(198, 50, 48, 0.4) 50%, rgba(226, 85, 39, 0.4) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.banner-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease;
}

.banner-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 32px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

/* ========================================
    BREADCRUMB
======================================== */
.breadcrumb-section {
    background: var(--bg-white);
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item {
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-orange);
}

.breadcrumb-item.active {
    color: var(--text-gray);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--text-gray);
    font-weight: 700;
}

/* ========================================
    SCHOOL INFO SECTION
======================================== */
.school-info-section {
    background: var(--bg-white);
}

.info-content {
    animation: fadeInUp 0.8s ease;
}

.info-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.info-highlight {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.05) 0%, rgba(226, 85, 39, 0.05) 100%);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-purple);
    margin: 32px 0;
}

.info-highlight h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 16px;
}

.school-stats {
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(153, 36, 117, 0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
    MISSION VISION MOTTO SECTION
======================================== */
.mvm-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.03) 0%, rgba(226, 85, 39, 0.03) 100%);
}

.mvm-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.mvm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mvm-card:hover::before {
    transform: scaleX(1);
}

.mvm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(153, 36, 117, 0.2);
}

.mvm-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
    color: var(--text-light);
}

.mvm-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.mvm-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ========================================
    INTERCONNECT SECTION
======================================== */
.interconnect-section {
    background: var(--bg-white);
}

.interconnect-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 32px;
    position: relative;
}

.interconnect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(153, 36, 117, 0.2);
}

.interconnect-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.interconnect-card:hover .interconnect-image {
    transform: scale(1.08);
}

.interconnect-content {
    padding: 32px 28px;
    background: linear-gradient(180deg, rgba(153, 36, 117, 0.02) 0%, rgba(226, 85, 39, 0.02) 100%);
}

.interconnect-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.interconnect-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.learn-more-btn:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(153, 36, 117, 0.3);
    color: var(--text-light);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(4px);
}
@media (max-width: 767px) {
    .banner-section {
        padding: 80px 0 60px 0;
    }
    
    .banner-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    .info-content p {
        font-size: 16px;
    }
    
    .info-highlight {
        padding: 20px;
        margin: 24px 0;
    }
    
    .info-highlight h3 {
        font-size: 20px;
    }
    
    .stat-item {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .mvm-card {
        padding: 28px 20px;
        margin-bottom: 20px;
    }
    
    .mvm-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .mvm-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .mvm-card p {
        font-size: 15px;
    }
    
    .interconnect-image {
        height: 220px;
    }
    
    .interconnect-content {
        padding: 24px 20px;
    }
    
    .interconnect-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .interconnect-card p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .learn-more-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* About Us page - ends */

/* Management Team page - starts */
.management-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.03) 0%, rgba(198, 50, 48, 0.03) 50%, rgba(226, 85, 39, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.management-image-wrapper {
    width: 220px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(153, 36, 117, 0.2);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.management-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(153, 36, 117, 0.3);
}

.management-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.management-image-wrapper:hover img {
    transform: scale(1.05);
}

.management-content {
    padding-left: 40px;
}

.management-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 8px;
}

.management-title {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: var(--text-black);
    line-height: 1.8;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid var(--primary-purple);
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 60px;
    color: var(--primary-purple);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    background-color: var(--white);
    position: relative;
}

.leadership-container {
    padding-left: 50px;
    padding-right: 50px;
}

.leader-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(153, 36, 117, 0.2);
}

.leader-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.leader-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leader-card:hover .leader-image-wrapper::after {
    opacity: 1;
}

.leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.leader-card:hover .leader-image-wrapper img {
    transform: scale(1.08);
}

.leader-info {
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.02) 0%, rgba(226, 85, 39, 0.02) 100%);
}

.leader-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.leader-card:hover .leader-name {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leader-position {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .management-image-wrapper {
        width: 100%;
        max-width: 280px;
        height: 320px;
        margin: 0 auto 30px;
    }

    .management-content {
        padding-left: 0;
        text-align: center;
    }

    .management-name {
        font-size: 24px;
    }

    .management-title {
        font-size: 16px;
    }

    .quote-text {
        font-size: 16px;
        padding: 20px;
    }

    .quote-text::before {
        font-size: 40px;
    }

    .leadership-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .leader-image-wrapper {
        height: 350px;
    }

    .leader-info {
        padding: 20px;
    }

    .leader-name {
        font-size: 20px;
    }

    .leader-position {
        font-size: 14px;
    }

    .leader-card {
        margin-bottom: 30px;
    }
}

/* Management Team page - ends */

/* Why NewAge page - start */

.feature-section {
            margin-bottom: 80px;
        }
        
        .feature-section:last-child {
            margin-bottom: 0;
        }
        
        .feature-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            margin-bottom: 2rem;
        }
        
        .feature-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(153, 36, 117, 0.1) 0%, rgba(198, 50, 48, 0.1) 50%, rgba(226, 85, 39, 0.1) 100%);
            z-index: 1;
            pointer-events: none;
        }
        
        .feature-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .feature-image-wrapper:hover .feature-image {
            transform: scale(1.05);
        }
        
        /* Decorative Floating Gradient Circle */
        .floating-gradient {
            position: absolute;
            top: -24px;
            right: -24px;
            width: 128px;
            height: 128px;
            background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
            border-radius: 50%;
            opacity: 0.2;
            filter: blur(60px);
            animation: pulse 4s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.2;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.3;
            }
        }
        
        /* Icon Box */
        .icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(153, 36, 117, 0.3);
            margin-bottom: 1.5rem;
            transition: transform 0.6s ease;
        }
        
        .icon-box:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        .icon-box svg {
            width: 32px;
            height: 32px;
            color: #ffffff;
        }
        
        /* Feature Title */
        .feature-title {
            font-size: 28px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 1rem;
        }
        
        /* Feature Description */
        .feature-description {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section2 {
            background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
            padding: 54px 0;
        }
        
        .cta-title2 {
            font-size: 40px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }
        
        .cta-description2 {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        /* CTA Buttons */
        .btn-primary-cta {
            padding: 16px 32px;
            background-color: #ffffff;
            color: #992475;
            font-weight: 600;
            font-size: 16px;
            border: none;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }
        
        .btn-primary-cta:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            color: #992475;
        }
        
        .btn-secondary-cta {
            padding: 16px 32px;
            background-color: transparent;
            color: #ffffff;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid #ffffff;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }
        
        .btn-secondary-cta:hover {
            background-color: #ffffff;
            color: #992475;
            transform: translateY(-4px) scale(1.05);
        }


@media (min-width: 768px) {
            .feature-image {
                height: 400px;
            }
            
            .feature-section {
                margin-bottom: 120px;
            }
        }

/* Why newAge page - ends */

/* Achievements and Awards - Start */
.accent-text {
    color: #C63230;
}

.subtitle {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #5B6675;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .subtitle {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ==================== HELPER TEXT ==================== */
.helper-text {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #5B6675;
}

@media (max-width: 768px) {
    .helper-text {
        font-size: 13px;
        line-height: 20px;
    }
}

/* ==================== GRADIENT DIVIDER ==================== */
.gradient-divider {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, #992475 0%, #C63230 45%, #E25527 100%);
    border-radius: 2px;
    margin: 0 auto;
}

/* ==================== AWARD CARD STYLES ==================== */
.award-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #F1F1F1;
    box-shadow: 0px 10px 30px rgba(17, 17, 17, 0.08);
    overflow: hidden;
    margin-bottom: 32px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.award-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.award-card:hover {
    box-shadow: 0px 15px 40px rgba(17, 17, 17, 0.12);
    transform: translateY(-5px);
}

.award-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.award-card-image-desktop {
    border-radius: 20px 0 0 20px;
}

.award-card-image-mobile {
    border-radius: 20px 20px 0 0;
}

.award-card-content {
    padding: 44px;
}

@media (max-width: 768px) {
    .award-card-content {
        padding: 24px;
    }
}

.award-card-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .award-card-title {
        font-size: 18px;
        line-height: 26px;
    }
}

.award-bullet {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: #5B6675;
}

@media (max-width: 768px) {
    .award-bullet {
        font-size: 14px;
        line-height: 24px;
    }
}

.bullet-dot {
    width: 6px;
    height: 6px;
    background-color: #C63230;
    border-radius: 50%;
    flex-shrink: 0;
}

.icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.gradient-bar {
    height: 6px;
    background: linear-gradient(90deg, #992475 0%, #C63230 45%, #E25527 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* ==================== CONNECT CARD STYLES ==================== */
.connect-card {
    position: relative;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.connect-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.connect-card:hover {
    transform: translateY(-8px);
}

@media (max-width: 768px) {
    .connect-card {
        height: 300px;
    }
}

.connect-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.connect-card:hover .connect-card-image {
    transform: scale(1.05);
}

.connect-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.connect-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.connect-card-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .connect-card-title {
        font-size: 18px;
        line-height: 26px;
    }
}

.connect-card-desc {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .connect-card-desc {
        font-size: 13px;
        line-height: 20px;
    }
}

.cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(90deg, #992475 0%, #C63230 45%, #E25527 100%);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.connect-card:hover .cta-bar {
    background: linear-gradient(90deg, #7a1d5e 0%, #a12826 45%, #b8451f 100%);
}

.cta-text-achive {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #FFFFFF;
}

/* Achievements and Awards - End */

/* Admission Process - starts */
.admission-hero-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.1), rgba(198, 50, 48, 0.1), rgba(226, 85, 39, 0.1));
    padding: 60px 0;
    text-align: center;
}

.admission-hero-section h1 {
    margin-bottom: 2rem;
}

.scroll-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    color: #992475;
    cursor: pointer;
    animation: bounce 1.5s infinite;
    transition: color 0.3s;
}

.scroll-indicator:hover {
    color: #c63230;
}

/* ===== WELCOME SECTION ===== */
.welcome-section .img-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.welcome-section img {
    width: 100%;
    transition: transform 0.7s ease;
}

.welcome-section img:hover {
    transform: scale(1.05);
}

.cta-box {
    background: linear-gradient(to right, rgba(153, 36, 117, 0.05), rgba(198, 50, 48, 0.05), rgba(226, 85, 39, 0.05));
    padding: 1rem;
    border-radius: 8px;
}

/* ===== CENTER MESSAGE SECTION ===== */
.center-message-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.05), rgba(255, 255, 255, 1), rgba(226, 85, 39, 0.05));
}

.center-message-section .lead-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ===== DOCUMENTS SECTION ===== */
.document-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: linear-gradient(to right, rgba(153, 36, 117, 0.05), rgba(226, 85, 39, 0.05));
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.document-item:hover {
    background: linear-gradient(to right, rgba(153, 36, 117, 0.1), rgba(226, 85, 39, 0.1));
    transform: translateX(5px);
}

.document-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #992475, #e25527);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.document-item:hover .document-icon {
    transform: scale(1.1);
}

/* ===== ADMISSION STEPS SECTION ===== */
.admission-steps-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.05), rgba(255, 255, 255, 1), rgba(226, 85, 39, 0.05));
}

.step-container {
    position: relative;
    margin-bottom: 4rem;
}

.step-container:last-child {
    margin-bottom: 0;
}

.step-image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.step-image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.step-image-container:hover img {
    transform: scale(1.05);
}

.step-number-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #992475, #e25527);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #992475, #e25527);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.step-connector {
    position: absolute;
    left: 50%;
    bottom: -4rem;
    width: 2px;
    height: 4rem;
    background: linear-gradient(to bottom, #992475, #c63230, #e25527);
    transform: translateX(-50%);
}

/* ===== FAQ SECTION ===== */
.faq-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem 3rem;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: start;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #992475;
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-icon.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 0;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    line-height: 1.8;
}

/* ===== NEXT STEPS SECTION ===== */
.next-steps-section {
    background: linear-gradient(135deg, #992475, #c63230, #e25527);
    position: relative;
    overflow: hidden;
}

.next-steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.next-steps-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.next-steps-section .container {
    position: relative;
    z-index: 1;
}

.action-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.1), rgba(226, 85, 39, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.action-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.action-card:hover::before {
    opacity: 1;
}

.action-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #992475, #e25527);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
}
/* Admission Process - ends */

/* Apply now - start */
.apply-hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 50%, #fff7ed 100%);
    min-height: auto;
}

.apply-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

/* ========== Admission Form ========== */
.admission-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.admission-form-gradient-bar {
    height: 4px;
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
    border-radius: 20px 20px 0 0;
}
.stat-icon-book{
    margin-bottom: 20px;
}
.stat-icon-book svg{
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.125) 0%, rgba(153, 36, 117, 0.25) 100%);
    width: 70px;
    height: 70px;
    padding: 15px;
    border-radius: 50px;
}

.admission-form-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.admission-form-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 16px 0;
}

.admission-form-card {
    margin-bottom: 16px;
}

.admission-form-card label {
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 6px;
    display: block;
}

.admission-form-card .form-control,
.admission-form-card .form-select {
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 15px;
    font-family: 'Mulish', sans-serif;
    transition: all 0.2s ease;
}

.admission-form-card .form-control:focus,
.admission-form-card .form-select:focus {
    border-color: #992475;
    box-shadow: 0 0 0 3px rgba(153, 36, 117, 0.1);
    outline: none;
}

.admission-form-card .btn-submit {
    width: 100%;
    height: 46px;
    background: linear-gradient(90deg, #992475 0%, #c63230 50%, #e25527 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.admission-form-card .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 36, 117, 0.3);
}

/* ========== Next Steps Section ========== */
.next-steps-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.step-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    height: 100%;
}

.step-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.step-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.step-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-card:hover .step-card-image img {
    transform: scale(1.1);
}

.step-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.step-card:hover .step-card-overlay {
    opacity: 0.3;
}

.step-card-content {
    padding: 24px;
}

.step-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card-description {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c63230;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.step-card:hover .step-card-link {
    gap: 12px;
}
/* Apply now - ends */


/* Book a School Tour - starts */
.book-school-hero-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.05) 0%, rgba(226, 85, 39, 0.05) 100%);
    padding: 80px 0;
    animation: fadeIn 1s ease-in;
}

.book-school-hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.book-school-hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.book-school-hero-subtitle {
    font-size: 20px;
    color: var(--color-gray);
    margin-bottom: 30px;
    font-weight: 500;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--gradient-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(153, 36, 117, 0.2);
    animation: slideInRight 0.8s ease-out;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.8) 0%, rgba(226, 85, 39, 0.8) 100%);
}

.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid var(--color-purple);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.virtual-tour-text {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: var(--color-gray);
    font-weight: 600;
    animation: fadeIn 1.2s ease-in;
}

/* ==================== BOOKING FORM SECTION ==================== */
.booking-section {
    background: white;
}

.booking-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.booking-form-label {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.booking-form-container .form-control,
.booking-form-container .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition);
    font-family: var(--font-family);
    height: 48px;
}

.booking-form-container .form-control:focus,
.booking-form-container .form-select:focus {
    border-color: var(--color-purple);
    box-shadow: 0 0 0 0.2rem rgba(153, 36, 117, 0.15);
}

.booking-form-container textarea.form-control {
    height: 100px;
    resize: vertical;
}

.booking-form-container .btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(153, 36, 117, 0.3);
    width: 100%;
}

.booking-form-container .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(153, 36, 117, 0.4);
}

.booking-form-container .btn-primary:active {
    transform: translateY(-1px);
}

/* ==================== WHY SECTION ==================== */
.why-section {
    background: var(--color-light-gray);
}

.feature-card {
    background: white;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}
.feature-card img{
    border-radius: 20px 20px 0px 0px;
}
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }

.feature-card-body{
    padding: 35px 30px;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(153, 36, 117, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.feature-description {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Centering last two cards */
.why-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.why-grid-container .feature-card-wrapper {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.why-grid-container .feature-card-wrapper:nth-last-child(-n+2) {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: white;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
    animation: fadeIn 1s ease-in;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    flex: 0 0 calc(25% - 25px);
    animation: bounceIn 0.8s ease-out;
    animation-fill-mode: both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(153, 36, 117, 0.2);
}

/* Book a School Tour - ends */

/* Home page - starts */
.color-primary {
    color: #992475;
}

.bg-primary-custom {
    background-color: #992475;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(to right, #992475, #c63230, #e25527);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar-badge {
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 6px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: background-color 0.3s;
}

.top-bar-badge:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-bar-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.main-header.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #992475, #e25527);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.school-name {
    font-weight: bold;
    font-size: 18px;
    color: #992475;
    margin: 0;
}

.school-tagline {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.nav-link-custom {
    color: #495057;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.nav-link-custom:hover {
    color: #992475;
}

.dropdown-menu-custom {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

.dropdown-item-custom {
    padding: 8px 16px;
    font-size: 14px;
    color: #495057;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item-custom:last-child {
    border-bottom: none;
}

.dropdown-item-custom:hover {
    background: linear-gradient(to right, rgba(153, 36, 117, 0.1), rgba(226, 85, 39, 0.1));
    color: #992475;
}

.mobile-menu {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-top: 1px solid #dee2e6;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: #495057;
    padding: 8px;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-dropdown-toggle:hover {
    color: #992475;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s;
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.05), rgba(255, 255, 255, 1), rgba(226, 85, 39, 0.05));
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -160px;
    left: -160px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(153, 36, 117, 0.2), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s infinite linear;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -160px;
    right: -160px;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, rgba(226, 85, 39, 0.2), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 25s infinite reverse linear;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.2); }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 32px;
}

.btn-primary-custom {
    background: linear-gradient(to right, #992475, #c63230);
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 18px;
    border-radius: 8px;
    transition: opacity 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    opacity: 0.9;
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: #992475;
    border: 2px solid #992475;
    padding: 12px 32px;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: #992475;
    color: white;
}

.enquiry-form {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 24px;
    border-top: 4px solid #992475;
    animation: float-form 3s infinite ease-in-out;
}

@keyframes float-form {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.home-form-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #495057;
    text-align: center;
    margin-bottom: 16px;
}

.form-control-custom {
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s;
}

.form-control-custom:focus {
    border-color: #992475;
    box-shadow: 0 0 0 0.25rem rgba(153, 36, 117, 0.1);
}

/* ========================================
    WHY CHOOSE NEWAGE
======================================== */
.why-choose-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.03) 0%, rgba(226, 85, 39, 0.03) 100%);
}

.why-choose-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose1-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.why-choose1-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(153, 36, 117, 0.15);
}

.why-choose1-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.why-choose1-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-choose1-card:hover .why-choose1-card-img img {
    transform: scale(1.1);
}

.why-choose1-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.why-choose1-card-body {
    padding: 30px;
}

.why-choose1-card-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-choose1-card-body p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-choose1-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose1-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose1-list li i {
    color: var(--primary-purple);
    font-size: 16px;
}



/* Facility Infra Section */
.facility-infra-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.facility-infra-card {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}

.facility-infra-card:hover {
    transform: translateY(-10px);
}

.facility-infra-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.facility-infra-card-body {
    padding: 24px;
    background: white;
}

.facility-infra-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #992475;
    margin-bottom: 12px;
}

.facility-infra-card-text {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta-home-section {
    background: linear-gradient(135deg, #121F34, #16253D);
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-home-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-home-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #992475, #e25527);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-home-icon-box i {
    font-size: 40px;
    color: white;
}

.cta-home-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-home-description {
    color: #dee2e6;
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-home-card {
    background-color: #474447;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.cta-home-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-home-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #992475, #c63230);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.cta-home-card:hover .cta-home-card-icon {
    transform: rotate(360deg);
}

.cta-home-card-icon i {
    font-size: 32px;
    color: white;
}

.cta-home-card-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.cta-home-card-text {
    color: #dee2e6;
    margin-bottom: 24px;
}

.contact-banner {
    background: linear-gradient(to right, #992475, #c63230, #e25527);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 64px;
}
.contact-item {
    transition: transform 0.3s;
}
.contact-item:hover {
    transform: scale(1.05);
}
.contact-item i {
    font-size: 32px;
    margin-bottom: 12px;
}
.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}
.contact-item a:hover {
    text-decoration: underline;
}

/* ========================================
    LET THE NUMBERS TALK
======================================== */
.numbers-section {
    background: var(--white);
}
.number-stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.05) 0%, rgba(226, 85, 39, 0.05) 100%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.number-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.number-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(153, 36, 117, 0.15);
}
.number-stat-card:hover::before {
    transform: scaleX(1);
}
.number-stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.number-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}
.number-stat-sublabel {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 5px;
}

/* ======= sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--gradient-1);
    color: var(--white);
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease;
}

.sticky-footer.show {
    bottom: 0;
}

.sticky-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-footer-text h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--white);
}

.sticky-footer-text p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

.sticky-footer-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sticky-footer-btn {
    background: var(--white);
    color: var(--primary-purple);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    color: var(--primary-purple);
}

.sticky-footer-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-footer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}


/* ========================================
    GALLERY
======================================== */
.gallery-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.03) 0%, rgba(226, 85, 39, 0.03) 100%);
}

.gallery-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-hero {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.gallery-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-hero-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 18px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.gallery-thumb {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 120px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-thumb:hover img {
    transform: scale(1.1);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
    VIDEO TESTIMONIALS
======================================== */
.testimonials-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.03) 0%, rgba(226, 85, 39, 0.03) 100%);
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(153, 36, 117, 0.15);
}

.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.testimonial-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

.testimonial-play-btn i {
    font-size: 24px;
    color: var(--primary-purple);
    margin-left: 4px;
}

.testimonial-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===========================
    FOOTER STYLES
=========================== */
.footer-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #030213 0%, #16253d 100%);
    position: relative;
}

/* Brand Gradient Top Border */
.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #992475 0%, #C63230 50%, #E25527 100%);
    z-index: 10;
}

/* Footer Block 1 - Main Footer */
.footer-block-1 {
    background: linear-gradient(135deg, #030213 0%, #16253d 100%);
    padding-top: 60px;
    padding-bottom: 48px;
    position: relative;
}

/* Footer Block 2 - Map & Contact */
.footer-block-2 {
    background: linear-gradient(135deg, #030213 0%, #16253d 100%);
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Footer Block 3 - Copyright Bar */
.footer-block-3 {
    background: linear-gradient(135deg, #030213 0%, #16253d 100%);
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* Brand Title */
.footer-brand-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .footer-brand-title {
        font-size: 22px;
    }
}

/* Brand Description */
.footer-brand-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@media (max-width: 768px) {
    .footer-brand-description {
        font-size: 14px;
    }
}

/* Footer Links Column */
.footer-links-column {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.footer-heading-with-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.gradient-arrow {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #992475 0%, #C63230 50%, #E25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

/* Footer Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #E25527;
    transition: width 0.3s ease;
}

.footer-links-list a:hover {
    color: #E25527;
    opacity: 1;
    transform: translateX(5px);
}

.footer-links-list a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-links-list a {
        font-size: 14px;
    }
}

/* Our Schools Buttons */
.schools-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.school-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, #992475 0%, #C63230 50%, #E25527 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.school-button:hover {
    box-shadow: 0 0 20px rgba(226, 85, 39, 0.4), 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    color: #ffffff;
}

.school-button .arrow-icon {
    transition: transform 0.3s ease;
}

.school-button:hover .arrow-icon {
    transform: translateX(6px);
}

/* Map Section */
.footer-map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.footer-map-container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.footer-map-placeholder {
    aspect-ratio: 16 / 7;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.footer-map-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(226, 85, 39, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.map-icon-gradient {
    font-size: 64px;
    background: linear-gradient(135deg, #992475 0%, #C63230 50%, #E25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

.get-directions-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: all 0.3s ease;
}

.get-directions-link:hover {
    color: #E25527;
    opacity: 1;
    transform: translateX(5px);
}

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeInLeft 0.8s ease-out 0.5s backwards;
}

.contact-icon-gradient {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background: linear-gradient(135deg, #992475 0%, #C63230 50%, #E25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.contact-info-text a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-text a:hover {
    color: #E25527;
    opacity: 1;
}

@media (max-width: 768px) {
    .contact-info-text {
        font-size: 14px;
    }
}

/* Social Media Icons */
.social-media-section {
    margin-top: 32px;
    animation: fadeInLeft 0.8s ease-out 0.6s backwards;
}

.social-heading {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.social-icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icon-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #992475 0%, #C63230 50%, #E25527 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-icon-link:hover {
    box-shadow: 0 0 15px rgba(226, 85, 39, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px) scale(1.1);
}

.social-icon-link i {
    color: #ffffff;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.social-icon-link:hover i {
    transform: rotate(360deg);
}

/* Copyright Section */
.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    margin: 0;
}

.copyright-text a {
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright-text a:hover {
    color: #E25527;
    opacity: 1;
}

.footer-policy-links {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-policy-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-policy-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #E25527;
    transition: width 0.3s ease;
}

.footer-policy-links a:hover {
    color: #E25527;
    opacity: 1;
}

.footer-policy-links a:hover::after {
    width: 100%;
}

.secondary-footer-heading {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .copyright-text,
    .footer-policy-links a {
        font-size: 13px;
    }
    
    .footer-block-3 .text-center.text-lg-start {
        text-align: center !important;
    }
    
    .footer-block-3 .text-center.text-lg-end {
        text-align: center !important;
    }
    
    .footer-policy-links {
        justify-content: center;
    }

    .secondary-footer-heading {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .footer-block-1,
    .footer-block-2 {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    
    .school-button {
        font-size: 13px;
        padding: 10px 14px;
    }
}



/* ==================== School Events Section ==================== */
.school-events-section {
    padding: 80px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Background Pattern */
.school-events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, #fce7f3 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.3;
    z-index: 0;
}

.school-events-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.events-header {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease-out;
}

.events-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #992475 0%, #e25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.events-header p {
    font-size: 17px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Event Card Styles */
.event-home-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.event-home-card:nth-child(1) {
    animation-delay: 0.1s;
}

.event-home-card:nth-child(2) {
    animation-delay: 0.2s;
}

.event-home-card:nth-child(3) {
    animation-delay: 0.3s;
}

.event-home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Image Area */
.event-home-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.event-home-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    z-index: 1;
}

.event-home-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-home-card:hover .event-home-card-image img {
    transform: scale(1.05);
}

/* Date Badge */
.date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.date-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.date-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    white-space: nowrap;
}

/* Card Content */
.event-home-card-content {
    padding: 24px;
}

.event-home-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.4;
}

.event-home-card-content p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* View Details Link */
.view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #992475;
    text-decoration: none;
    transition: all 0.25s ease;
}

.view-details:hover {
    color: #7a1d5e;
}

.view-details svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.view-details:hover svg {
    transform: translateX(4px);
}


/* Home page - ends */
