html,
body {
    overflow-x: hidden !important;
}

/* Theme Dynamic Styles */
body {
    font-family: var(--font-body, 'Outfit', sans-serif) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fw-bold,
.navbar-brand {
    font-family: var(--font-heading, 'Outfit', sans-serif) !important;
}

.card,
.btn,
.dropdown-menu,
.rounded-4,
.hero-gallery,
.gallery-item {
    border-radius: var(--border-radius, 15px) !important;
}

/* Button Styles */
body.btn-style-gradient .btn-primary {
    background: var(--gradient) !important;
    border: none !important;
}

body.btn-style-outline .btn-primary {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
}

body.btn-style-outline .btn-primary:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* Card Styles */
body.card-style-glass .card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

body.card-style-bordered .card {
    box-shadow: none !important;
    border: 1px solid #eee !important;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #334155;
    padding-top: 0 !important;
    position: relative;
    width: 100%;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 0 !important;
    }

    /* Small Screen Typography Adjustments */
    .display-4 {
        font-size: 2rem !important;
    }

    .section-title {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.75rem !important;
    }
}

.text-primary {
    color: var(--primary);
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.bg-gradient-custom {
    background: var(--gradient);
}

/* Header */
header.fixed-top {
    z-index: 5000;
    background: var(--primary) !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

/* Navbar */
.navbar {
    padding: 8px 0;
    background: transparent !important;
    /* Managed by parent header */
    box-shadow: none !important;
    transition: 0.3s;
}

.navbar-brand img {
    height: 55px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #fff;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2);
}

.navbar-brand span {
    color: #fff;
    letter-spacing: -0.5px;
    font-size: 1.1rem;
    line-height: 1.2;
}

header.fixed-top .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 8px 12px !important;
    transition: 0.3s;
    font-size: 0.95rem;
    position: relative;
    background: none !important;
}

header.fixed-top .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #fff;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scaleX(0);
    transform-origin: center;
    display: block;
}

header.fixed-top .nav-link:hover::after,
header.fixed-top .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-toggle::after {
    border: none !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

header.fixed-top .nav-link:hover,
header.fixed-top .nav-link.active {
    color: #fff !important;
    opacity: 1 !important;
}

header.fixed-top .nav-link .fa-chevron-down {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    /* Required for transform */
}

header.fixed-top .nav-link:hover .fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1 !important;
}

/* Hero Section */
.hero-section {
    background: var(--gradient);
    padding: 180px 0 100px 0;
    /* Top padding covers header overlap */
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px 0;
        /* Mobile header overlap */
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: move-bg 60s linear infinite;
    z-index: 0;
}

@keyframes move-bg {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 60px 60px;
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    transform: skewY(-2deg);
}

/* Elements */
.card-custom {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-10px);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.text-center .section-title::after,
.section-title.mx-auto::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title.no-underline::after {
    display: none;
}

/* Custom Hero Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(3deg);
    }

    50% {
        transform: translateY(-15px) rotate(4deg);
    }

    100% {
        transform: translateY(0px) rotate(3deg);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes reveal-text {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

/* Floating Particles */
.hero-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border-radius: 50% 0 50% 50%;
    z-index: 0;
    pointer-events: none;
}

@keyframes floating {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-200px) rotate(360deg);
        opacity: 0;
    }
}

.p1 {
    width: 40px;
    height: 40px;
    left: 10%;
    bottom: -50px;
    animation: floating 12s infinite linear;
}

.p2 {
    width: 60px;
    height: 60px;
    left: 30%;
    bottom: -80px;
    animation: floating 15s infinite linear 2s;
}

.p3 {
    width: 30px;
    height: 30px;
    left: 50%;
    bottom: -40px;
    animation: floating 10s infinite linear 5s;
}

.p4 {
    width: 80px;
    height: 80px;
    left: 70%;
    bottom: -100px;
    animation: floating 20s infinite linear 1s;
}

.p5 {
    width: 50px;
    height: 50px;
    left: 90%;
    bottom: -60px;
    animation: floating 14s infinite linear 3s;
}

.hero-float {
    animation: float 6s ease-in-out infinite;
}

.hero-glow {
    animation: pulse-glow 2s infinite;
}

.text-reveal {
    animation: reveal-text 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.footer {
    background: #0b121e;
    color: #94a3b8;
    padding: 100px 0 40px;
    width: 100%;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer::before,
.footer::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(var(--primary-rgb), 0.08);
    filter: blur(150px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.footer::before {
    top: -300px;
    left: -300px;
}

.footer::after {
    bottom: -300px;
    right: -300px;
    background: rgba(var(--primary-rgb), 0.05);
}


.footer .container {
    position: relative;
    z-index: 1;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-list a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-list a i {
    font-size: 0.7rem;
    color: var(--primary);
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.03);
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.si-facebook:hover {
    background: #3b5998;
}

.si-twitter:hover {
    background: #1da1f2;
}

.si-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.si-youtube:hover {
    background: #FF0000;
}

.footer-contact li {
    gap: 15px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: 0.3s;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.icon-box:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px) rotate(5deg);
}

.footer-contact li:hover .contact-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg);
}

/* Dropdown Animations & Hover */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        margin-top: 0;
    }
}

.dropdown-item {
    position: relative;
    transition: 0.2s;
}

.dropdown-item:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.dropdown-item i {
    transition: 0.2s;
}

.dropdown-item:hover i {
    color: #fff !important;
}

.dropdown-item.active {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.8), rgba(var(--primary-rgb), 1)) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.dropdown-item.active i {
    color: #fff !important;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-brand span {
        font-size: 0.85rem;
        display: block !important;
        white-space: normal;
        word-wrap: break-word;
        max-width: 140px;
        text-align: left;
    }

    .navbar-toggler {
        order: -1;
        font-size: 1.2rem;
        color: #fff;
    }

    .navbar-collapse {
        background: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        padding: 100px 30px 30px;
        box-shadow: 30px 0 80px rgba(0, 0, 0, 0.15);
        z-index: 6000 !important;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: block !important;
        overflow-y: auto;
        border-right: 1px solid rgba(255, 255, 255, 0.4);
        will-change: transform;
        backface-visibility: hidden;
    }

    .navbar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 4500;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        will-change: opacity;
    }

    .navbar-backdrop.show {
        opacity: 1;
        visibility: visible;
    }

    .mobile-brand {
        position: absolute;
        top: 25px;
        left: 25px;
        display: flex !important;
        align-items: center;
        gap: 12px;
    }

    .mobile-brand img {
        height: 35px;
        border-radius: 50%;
        background: #fff;
        padding: 2px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-brand span {
        font-weight: 700;
        color: var(--primary);
        font-size: 0.85rem;
        max-width: 140px;
        line-height: 1.2;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .navbar-collapse .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-radius: 12px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1rem;
        color: #334155 !important;
        font-weight: 600;
    }

    .navbar-collapse .navbar-nav .nav-link:hover {
        background: rgba(var(--primary-rgb), 0.05);
        color: var(--primary) !important;
    }

    .navbar-collapse .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.9), rgba(var(--primary-rgb), 1)) !important;
        color: #fff !important;
        box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    }

    .navbar-collapse .navbar-nav .nav-link::after {
        display: none !important;
    }

    /* Professional Mobile Menu Header */
    .mobile-close {
        position: absolute;
        top: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
        background: #f1f5f9;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #475569;
        transition: 0.3s;
        text-decoration: none;
    }

    .mobile-close:hover {
        background: #e2e8f0;
        color: #1e293b;
    }

    /* Bottom Nav Fixed */
    .bottom-nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex !important;
        justify-content: space-around;
        padding: 12px 0;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
        z-index: 9999 !important;
        border-radius: 25px 25px 0 0;
    }

    .bottom-nav-item {
        flex: 1;
        text-decoration: none;
        color: #64748b;
        text-align: center;
        font-size: 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: 0.3s;
    }

    .bottom-nav-item i {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .bottom-nav-item.active {
        color: var(--primary);
    }

    body {
        padding-bottom: 70px;
        padding-top: 70px;
        /* Space for fixed navbar on mobile */
    }
}

.mobile-close,
.bottom-nav {
    display: none;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.scroll-to-top i {
    font-size: 1.2rem;
}

@media (max-width: 991.98px) {
    .scroll-to-top {
        display: none !important;
    }
}

/* Feature Cards (Why Choose Us) */
.feature-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--gradient);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.2);
}

.feature-card:hover h5 {
    color: #fff;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    transition: 0.4s;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: rotateY(180deg) scale(1.1);
}

/* Gallery Slider */
.gallery-slide-item {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    background: #000;
}

.gallerySwiper {
    width: 100%;
    height: 100%;
}

.gallery-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.gallery-slide-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: 0.4s;
    transform: translateY(100%);
}

.gallery-slide-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials */
.testimonial-section {
    background: var(--gradient);
    position: relative;
}


.testimonial-section .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
    margin-top: -15px;
    /* Offset the margin from section-title */
    margin-bottom: 30px;
}

.curriculum-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.card-custom:hover .curriculum-icon-box {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* Premium Testimonial Card (User Requested Design) */
.testimonial-card-premium {
    background: #112a43;
    /* Deep navy/charcoal as per image */
    border-radius: 30px;
    padding: 35px;
    position: relative;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-avatar-wrapper {
    position: relative;
    margin-right: 15px;
}

.testimonial-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

.quote-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: #10b981;
    /* Emerald green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    border: 2px solid #112a43;
}

.testimonial-info h6 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: #94a3b8;
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #f97316;
    /* Orange */
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.testimonial-body {
    flex-grow: 1;
    margin-bottom: 25px;
}

.testimonial-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 0;
}

.testimonial-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
}

.rating-stars {
    color: #fbbf24;
    /* Amber/Gold */
    font-size: 0.9rem;
}

/* Contact Page Refinements */
.contact-icon-box {
    width: 55px;
    height: 55px;
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.contact-icon-box:hover {
    transform: scale(1.1) rotate(10deg);
}

.social-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border-radius: 50% !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.social-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Premium Goal Cards (Vision & Mission) */
.premium-goal-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.premium-goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.goal-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: 0.4s;
}

.vision-theme {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.mission-theme {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.premium-goal-card:hover .goal-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.goal-content h4 {
    color: #1e293b;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.goal-content p {
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
    color: #475569;
}

.goal-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.05;
    transition: 0.4s;
}

.premium-goal-card:hover .goal-decoration {
    opacity: 0.15;
    transform: scale(1.5);
}

/* Admissions Premium Enhancements */
.card.admission-premium-banner {
    position: relative;
    background: var(--gradient) !important;
    border-radius: 30px;
    overflow: hidden;
    color: #fff !important;
    padding: 60px 40px;
    box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.25);
    border: none;
}

.admission-premium-banner h2,
.admission-premium-banner p {
    color: #fff !important;
}

.admission-premium-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.step-modern {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.step-modern:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.step-modern .step-header {
    min-width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-right: 25px;
    transition: 0.3s;
}

.step-modern:hover .step-header {
    background: var(--primary);
    color: #fff;
    transform: rotate(5deg) scale(1.1);
}

.doc-list li {
    padding: 12px 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.doc-list li:hover {
    background: rgba(var(--primary-rgb), 0.02);
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: scale(1.02);
}

.doc-list li i {
    width: 32px;
    height: 32px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
}

@media (max-width: 576px) {
    .premium-goal-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
        align-items: center;
    }
}