/********** Template CSS **********/
:root {
    --primary: #E91E63;
    --light: #FCE4EC;
    --dark: #1A1A1A;
    --accent: #F48FB1;
    --pink-dark: #C2185B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFD700;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #FFD700;
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
    
    .navbar .navbar-nav .nav-link:hover::after,
    .navbar .navbar-nav .nav-link.active::after {
        bottom: 5px;
        width: 25px;
    }
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .academy-cta {
    background: var(--primary) !important;
    color: white !important;
    border: 2px solid var(--primary) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.navbar .academy-cta:hover {
    background: #FFD700 !important;
    color: var(--dark) !important;
    border-color: #FFD700 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
}

/* Improve toggler visibility on colored navbar */
.navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.55);
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.35);
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-text {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 3rem;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: url(../img/header-page.jpg) top center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item {
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 40px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* Academy Custom Styles */
.academy-navbar {
    background: var(--primary) !important;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

/* Full width sections */
.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.container-fluid.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.academy-logo {
    font-weight: 900;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
}

.navbar-logo {
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.hero-logo {
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.4));
}

.academy-logo .logo-fz {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 25%, #FF0080 50%, #8A2BE2 75%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    display: inline-block;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: -2px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Metallic swoosh effect */
.academy-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent 30%, #8A2BE2 40%, #FFD700 50%, #FF6B35 60%, transparent 70%);
    border-radius: 50px;
    z-index: -1;
    opacity: 0.6;
    transform: rotate(-15deg);
    animation: swooshGlow 3s ease-in-out infinite alternate;
}

/* Golden border effect */
.academy-logo .logo-fz::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -6px;
    right: -6px;
    bottom: -3px;
    background: linear-gradient(45deg, #FFD700, #FF6B35, #FF0080, #8A2BE2);
    border-radius: 6px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(1px);
}

/* Metallic shine effect */
.academy-logo .logo-fz::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: metallicShine 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes swooshGlow {
    0% { opacity: 0.4; transform: rotate(-15deg) scale(1); }
    100% { opacity: 0.8; transform: rotate(-15deg) scale(1.05); }
}

@keyframes metallicShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.academy-logo .logo-text {
    font-size: 0.8rem;
    color: #FFFFFF;
    margin-top: -5px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.academy-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1B69 50%, #E91E63 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.academy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.academy-hero-content {
    position: relative;
    z-index: 2;
}

.academy-title {
    font-size: 4rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.academy-subtitle {
    font-size: 1.2rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

.academy-cta {
    background: var(--primary);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.academy-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
    color: #FFFFFF;
}

.vision-mission-section {
    background: linear-gradient(135deg, #E91E63 0%, #FCE4EC 100%);
    padding: 80px 0;
    margin: 0;
    width: 100%;
}

.vision-mission-section .row {
    align-items: stretch;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 4rem;
}

.vision-item, .mission-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.vision-item:hover, .mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.vision-icon, .mission-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #FFFFFF;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vision-item h5, .mission-item h5 {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark);
}

.vision-item p, .mission-item p {
    margin-bottom: 0;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.contact-info-card h4,
.contact-info-card p {
    color: var(--dark) !important;
}

/* Hero section logo styling */
.hero-logo-fz {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 25%, #FF0080 50%, #8A2BE2 75%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    display: inline-block;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: -3px;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.4));
}

/* Hero logo swoosh effect */
.hero-logo-container {
    position: relative;
    display: inline-block;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -30px;
    right: -30px;
    bottom: -15px;
    background: linear-gradient(45deg, transparent 25%, #8A2BE2 35%, #FFD700 45%, #FF6B35 55%, transparent 65%);
    border-radius: 60px;
    z-index: -1;
    opacity: 0.7;
    transform: rotate(-12deg);
    animation: heroSwooshGlow 4s ease-in-out infinite alternate;
}

@keyframes heroSwooshGlow {
    0% { opacity: 0.5; transform: rotate(-12deg) scale(1); }
    100% { opacity: 0.9; transform: rotate(-12deg) scale(1.08); }
}

/* Courses Section */
#courses {
    background: linear-gradient(135deg, #FCE4EC 0%, #FFFFFF 100%);
    margin: 0;
    width: 100%;
}

#courses h1,
#courses p {
    color: var(--dark) !important;
}

.service-item {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    color: var(--dark) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: block;
}

.service-item h4 {
    color: var(--dark) !important;
}

.service-item p {
    color: #666 !important;
}

.service-item .btn {
    color: #FFFFFF !important;
    border: 1px solid var(--primary);
    background: var(--primary) !important;
    white-space: nowrap;
    min-width: 180px;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    text-align: center;
    line-height: 1.2;
}

.service-item .btn i {
    color: #FFFFFF !important;
    font-size: 0.8rem;
}

.service-item .btn span {
    color: #FFFFFF !important;
    font-weight: 500;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
    border-color: var(--primary);
}

.service-item:hover .btn {
    background: #FFFFFF !important;
    border-color: #FFFFFF;
    color: var(--primary) !important;
    transform: scale(1.05);
}

/* Social Media Section Styles */
.social-media-carousel {
    position: relative;
    padding: 20px 0;
    margin: 0;
    width: 100%;
}

.social-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid var(--primary);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    z-index: 1;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

.social-card:active {
    transform: translateY(-5px) scale(1.02);
}

.social-card:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2rem;
    color: #FFFFFF;
    position: relative;
    transition: all 0.3s ease;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon::before {
    transform: scale(1.2);
    opacity: 0.6;
}

.tiktok-icon {
    background: linear-gradient(135deg, #000000, #ff0050);
}

.facebook-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.instagram-icon {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.social-handle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-link {
    background: var(--primary);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-card:hover .social-link {
    background: #FFD700;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.social-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="socialPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23socialPattern)"/></svg>');
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .academy-title {
        font-size: 2.5rem;
    }
    
    .academy-subtitle {
        font-size: 1rem;
    }
    
    .social-card-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .social-card {
        max-width: 100%;
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .social-card {
        padding: 25px 15px;
        min-height: 260px;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .social-title {
        font-size: 1.3rem;
    }
}

/* Organization Chart Styles */
.org-chart-container {
    position: relative;
    padding: 40px 0;
}

.org-member-card {
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.org-member-card:hover {
    transform: translateY(-10px);
}

.org-member-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.director-card .org-member-image {
    width: 250px;
    height: 250px;
    border: 4px solid var(--primary);
}

.coach-card .org-member-image {
    width: 180px;
    height: 180px;
    border: 3px solid var(--accent);
}

.org-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    background: transparent;
}

/* Remove white background from PNG images */
.org-member-image img[src$=".png"] {
    background: transparent;
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(1.05);
}

.org-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.9), rgba(244, 143, 177, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.org-member-card:hover .org-member-overlay {
    opacity: 1;
}

.org-member-card:hover .org-member-image img {
    transform: scale(1.1);
}

.org-member-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.org-member-name {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.2;
}

.director-card .org-member-name {
    font-size: 1.3rem;
}

.org-member-position {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

.director-card .org-member-position {
    font-size: 1rem;
    font-weight: 600;
}

.org-connector-line {
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
    position: relative;
}

.org-connector-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary);
}

/* Responsive Design for Organization Chart */
@media (max-width: 768px) {
    .org-member-image {
        width: 150px;
        height: 150px;
    }
    
    .director-card .org-member-image {
        width: 180px;
        height: 180px;
    }
    
    .coach-card .org-member-image {
        width: 140px;
        height: 140px;
    }
    
    .org-member-name {
        font-size: 1rem;
    }
    
    .director-card .org-member-name {
        font-size: 1.1rem;
    }
    
    .org-member-position {
        font-size: 0.8rem;
    }
    
    .director-card .org-member-position {
        font-size: 0.9rem;
    }
}

/* Comprehensive Responsive Design */
@media (max-width: 1200px) {
    .academy-title {
        font-size: 3.5rem;
    }
    
    .hero-logo-fz {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .academy-title {
        font-size: 3rem;
    }
    
    .academy-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo-fz {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* Navbar responsive */
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        text-align: center;
    }
    
    .navbar .academy-cta {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    /* Hero section responsive */
    .academy-hero-content {
        padding: 20px !important;
    }
    
    .academy-hero-content .ps-lg-5 {
        padding-left: 0 !important;
        margin-left: 20px !important;
    }
    
    .academy-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .academy-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .academy-cta {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .contact-info-card {
        margin: 20px;
        padding: 20px;
    }
    
    .hero-logo {
        height: 80px !important;
    }
    
    /* About section responsive */
    .vision-mission-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .vision-card, .mission-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .vision-icon, .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .icon-bg {
        width: 80px;
        height: 80px;
    }
    
    .stats-section {
        padding: 40px 20px;
        margin: 40px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Courses section responsive */
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .banner-text h2 {
        font-size: 1.8rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }
    
    .banner-image img {
        max-width: 250px;
    }
    
    .course-image {
        height: 200px;
    }
    
    .course-content {
        padding: 20px;
    }
    
    .course-content h4 {
        font-size: 1.3rem;
    }
    
    /* Organization chart responsive */
    .org-member-image {
        width: 120px;
        height: 120px;
    }
    
    .director-card .org-member-image {
        width: 150px;
        height: 150px;
    }
    
    .coach-card .org-member-image {
        width: 110px;
        height: 110px;
    }
    
    .org-member-name {
        font-size: 0.9rem;
    }
    
    .director-card .org-member-name {
        font-size: 1rem;
    }
    
    .org-member-position {
        font-size: 0.75rem;
    }
    
    .director-card .org-member-position {
        font-size: 0.85rem;
    }
    
    .org-member-info {
        padding: 15px;
    }
    
    /* Social media responsive */
    .social-card-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .social-card {
        max-width: 100%;
        min-height: 280px;
    }
    
    /* Footer responsive */
    .footer .btn.btn-link {
        text-align: center;
    }
    
    .footer .d-flex.pt-2 {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    /* Extra small devices (phones) */
    .academy-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .academy-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .academy-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .hero-logo {
        height: 60px !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .vision-card, .mission-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .vision-icon, .mission-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .icon-bg {
        width: 70px;
        height: 70px;
    }
    
    .card-content h5, .mission-content h5 {
        font-size: 1.1rem;
    }
    
    .stats-section {
        padding: 30px 15px;
        margin: 30px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .banner-text h2 {
        font-size: 1.5rem;
    }
    
    .banner-text p {
        font-size: 0.8rem;
    }
    
    .banner-image img {
        max-width: 200px;
    }
    
    .course-image {
        height: 180px;
    }
    
    .course-content {
        padding: 15px;
    }
    
    .course-content h4 {
        font-size: 1.2rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .org-member-image {
        width: 100px;
        height: 100px;
    }
    
    .director-card .org-member-image {
        width: 120px;
        height: 120px;
    }
    
    .coach-card .org-member-image {
        width: 90px;
        height: 90px;
    }
    
    .org-member-name {
        font-size: 0.8rem;
    }
    
    .director-card .org-member-name {
        font-size: 0.9rem;
    }
    
    .org-member-position {
        font-size: 0.7rem;
    }
    
    .director-card .org-member-position {
        font-size: 0.8rem;
    }
    
    .org-member-info {
        padding: 10px;
    }
    
    .social-card {
        padding: 20px 15px;
        min-height: 250px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-title {
        font-size: 1.2rem;
    }
    
    .social-handle {
        font-size: 0.8rem;
    }
    
    .social-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .footer .btn.btn-link {
        font-size: 0.9rem;
    }
    
    .contact-info-card {
        margin: 10px;
        padding: 15px;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Very small devices */
    .academy-title {
        font-size: 1.8rem;
    }
    
    .academy-subtitle {
        font-size: 0.8rem;
    }
    
    .academy-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .org-member-image {
        width: 80px;
        height: 80px;
    }
    
    .director-card .org-member-image {
        width: 100px;
        height: 100px;
    }
    
    .coach-card .org-member-image {
        width: 70px;
        height: 70px;
    }
    
    .org-member-name {
        font-size: 0.7rem;
    }
    
    .director-card .org-member-name {
        font-size: 0.8rem;
    }
    
    .org-member-position {
        font-size: 0.6rem;
    }
    
    .director-card .org-member-position {
        font-size: 0.7rem;
    }
    
    .social-card {
        padding: 15px 10px;
        min-height: 220px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-title {
        font-size: 1.1rem;
    }
    
    .social-handle {
        font-size: 0.7rem;
    }
    
    .social-link {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .academy-hero {
        min-height: 80vh;
    }
    
    .academy-title {
        font-size: 2rem;
    }
    
    .academy-subtitle {
        font-size: 0.9rem;
    }
    
    .org-member-image {
        width: 100px;
        height: 100px;
    }
    
    .director-card .org-member-image {
        width: 120px;
        height: 120px;
    }
    
    .coach-card .org-member-image {
        width: 80px;
        height: 80px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .academy-cta,
    .social-media-section,
    .footer {
        display: none !important;
    }
    
    .academy-hero {
        background: white !important;
        color: black !important;
    }
    
    .academy-title,
    .academy-subtitle {
        color: black !important;
    }
    
    .section-title {
        color: black !important;
    }
    
    .vision-card,
    .mission-card,
    .course-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* Creative Course Cards Styles */
.featured-course-banner {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    color: white;
    overflow: hidden;
    position: relative;
}

.featured-course-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.banner-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-text .btn-primary {
    background: #FFD700 !important;
    border-color: #FFD700 !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
}

.banner-text .btn-primary:hover {
    background: white !important;
    border-color: white !important;
    color: var(--primary) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4) !important;
}

.banner-image {
    flex-shrink: 0;
}

.banner-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 300px;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.course-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(244, 143, 177, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.course-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.course-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-features {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-btn {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.course-btn:hover {
    background: var(--pink-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

/* Responsive Design for Course Cards */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    .banner-image img {
        max-width: 250px;
    }
    
    .course-image {
        height: 200px;
    }
    
    .course-content {
        padding: 20px;
    }
    
    .course-content h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .featured-course-banner {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .banner-text h2 {
        font-size: 1.8rem;
    }
    
    .course-image {
        height: 180px;
    }
    
    .course-content {
        padding: 15px;
    }
    
    .course-content h4 {
        font-size: 1.2rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

/* Enhanced About Section Styles */
.vision-mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aboutPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23E91E63" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutPattern)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.about-hero {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.decoration-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 300;
}

/* Vision Cards */
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-header {
    position: relative;
    margin-bottom: 25px;
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(244, 143, 177, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.vision-card:hover .vision-icon {
    transform: scale(1.1);
}

.card-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.card-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.card-footer {
    margin-top: auto;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    width: 0;
    transition: width 2s ease;
}

/* Mission Cards */
.mission-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(244, 143, 177, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.mission-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.mission-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.mission-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.9), rgba(244, 143, 177, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.mission-card:hover .mission-hover {
    opacity: 1;
}

.hover-content {
    text-align: center;
    color: white;
}

.hover-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.hover-content span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    padding: 60px 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.stat-item {
    position: relative;
    z-index: 2;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .decoration-line {
        width: 40px;
    }
    
    .decoration-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .vision-card, .mission-card {
        padding: 20px;
    }
    
    .vision-icon, .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .icon-bg {
        width: 80px;
        height: 80px;
    }
    
    .stats-section {
        padding: 40px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 40px 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .vision-card, .mission-card {
        padding: 15px;
    }
    
    .vision-content h5, .mission-content h5 {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}