/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Management Card Styles */
.management-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 450px;
    height: 450px;
    max-width: 100%;
    border-radius: 0px;
    background-color: #ffffff;
    background-clip: border-box;
    color: #37474f;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.management-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-header-bg {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #ffffff;
    background-clip: border-box;
}

.card-body {
    padding: 24px;
    color: #37474f;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.image-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
}

.image-container .card-image {
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 200px;
    border-radius: 0;
    object-fit: cover;
    border: none;
}

.text-container {
    width: 50%;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .card-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-container,
    .text-container {
        width: 100%;
        padding: 12px;
    }

    .text-container {
        text-align: center;
    }
}

.card-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid #dc3545;
}

.card-title {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: #1e293b;
    letter-spacing: -0.025em;
}

.card-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: inherit;
}

.card-footer {
    padding: 24px 24px 0 24px;
    padding-bottom: 24px;
}

.card-footer .btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.25);
}

.card-footer .btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(59, 130, 246, 0.4);
}

.management-card .card-footer {
    display: none;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0056D2;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(220,53,69,0.7), rgba(255,193,7,0.7)), url('images/web-ssias.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    text-align: center;
}

.hero-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.looping-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 2s ease-out;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #b02a37 0%, #e6a800 100%);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(176, 42, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(45deg, #8b1f2a 0%, #cc8c00 100%);
    box-shadow: 0 12px 35px rgba(176, 42, 55, 0.6);
    transform: translateY(-5px) scale(1.08) rotateX(5deg);
    animation: pulse 2s infinite;
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 3px 15px rgba(176, 42, 55, 0.4);
}

/* Sections */
section {
    padding: 5rem 0;
}

.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.contact .container {
    max-width: 800px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 3rem;
    position: relative;
}

.contact h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #dc3545, #ffc107);
    margin: 1rem auto;
    border-radius: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-item i {
    font-size: 2rem;
    color: #dc3545;
    margin-right: 1rem;
    width: 50px;
    text-align: center;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-media a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.1);
}

.social-media img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease;
}

.social-media img:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* Responsive for contact */
@media (max-width: 768px) {
    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .social-media {
        gap: 1.5rem;
    }

    .social-media img {
        width: 50px;
        height: 50px;
    }
}

.admissions {
    background-color: #f8f9fa;
}

.admissions .container {
    text-align: center;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #dc3545;
}

.about h3 {
    text-align: center;
}

/* Courses */
.mySwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.mySwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mySwiper .swiper-slide .card {
    width: 100%;
    max-width: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mySwiper .swiper-slide .card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.mySwiper .swiper-slide .card .card-text {
    flex: 1;
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.mySwiper .swiper-slide .card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.mySwiper .swiper-slide:hover {
    /* Removed scale animation */
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    color: #dc3545;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.mySwiper .swiper-button-next:hover,
.mySwiper .swiper-button-prev:hover {
    background: #dc3545;
    color: #fff;
    transform: scale(1.1);
}

.mySwiper .swiper-button-next::after,
.mySwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.course {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
    overflow-y: auto;
    position: relative;
}

.course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220,53,69,0.1) 0%, rgba(255,193,7,0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.course:hover {
    /* Removed pop animation */
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 8px 32px rgba(0,0,0,0.1);
}

.course:hover::before {
    opacity: 1;
}

.course-btn:hover {
    transform: scale(1.05);
}

.course h3 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    line-height: 1.1;
    text-align: center;
}

.course p {
    font-size: 0.715rem;
    line-height: 1.15;
    margin: 0;
}

.course ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.course ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.course .btn {
    background-color: #ffc107;
    color: #333;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 20px;
    text-align: center;
    width: auto;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.course-btn:hover {
    background-color: #e0a800;
}

/* Partners */
.partners {
    background-color: #f8f9fa;
}

.partners .container {
    text-align: center;
}

.partnersSwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.partnersSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.partnersSwiper .swiper-slide:hover {
    transform: scale(1.05);
}

.partnersSwiper .swiper-slide img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}



/* Webinars */
.webinarsSwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.webinarsSwiper .swiper-slide {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 350px;
    height: auto;
    transition: transform 0.3s ease;
}

.webinarsSwiper .swiper-slide:hover {
    transform: scale(1.05);
}

.webinar-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.webinar-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.webinar-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.webinar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.webinar-card:hover .webinar-image img {
    transform: scale(1.1);
}

.webinar-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.webinar-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
}

.webinar-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.webinar-date i {
    margin-right: 0.5rem;
    color: #dc3545;
}

.webinar-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex: 1;
}

.webinar-speaker {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.webinar-speaker img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 0.5rem;
    object-fit: cover;
}

.webinar-speaker span {
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
}

.webinar-btn {
    background: linear-gradient(45deg, #dc3545, #ffc107);
    color: #fff;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    align-self: flex-start;
    font-size: 0.85rem;
}

.webinar-btn:hover {
    background: linear-gradient(45deg, #b02a37, #e6a800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.webinarsSwiper .swiper-button-next,
.webinarsSwiper .swiper-button-prev {
    color: #dc3545;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.webinarsSwiper .swiper-button-next:hover,
.webinarsSwiper .swiper-button-prev:hover {
    background: #dc3545;
    color: #fff;
    transform: scale(1.1);
}

.webinarsSwiper .swiper-button-next::after,
.webinarsSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.webinarsSwiper .swiper-pagination {
    bottom: 10px;
}

.webinarsSwiper .swiper-pagination-bullet {
    background: #dc3545;
    opacity: 0.5;
}

.webinarsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Past Webinars */
.past-webinars {
    background-color: #f8f9fa;
}

.past-webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.past-webinar-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.past-webinar-item:hover {
    transform: translateY(-5px);
}

.past-webinar-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.past-webinar-item p {
    color: #666;
    margin-bottom: 1rem;
}

.past-webinar-item .btn {
    background: #dc3545;
    color: #fff;
}

.past-webinar-item .btn:hover {
    background: #b02a37;
}

/* Webinar Benefits */
.webinar-benefits {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-item i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(45deg, #dc3545, #ffc107);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #dc3545;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #dc3545;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc3545;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 12px 35px rgba(176, 42, 55, 0.6); }
    50% { box-shadow: 0 12px 35px rgba(176, 42, 55, 0.8); }
    100% { box-shadow: 0 12px 35px rgba(176, 42, 55, 0.6); }
}

/* Responsive design */
@media (max-width: 768px) {
    header .container {
        padding: 0.5rem 1rem;
    }

    .logo img {
        height: 30px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-video {
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        display: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle {
        display: block;
    }

    .hamburger {
        width: 25px;
        height: 3px;
        background: #333;
        position: relative;
        transition: 0.3s;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: #333;
        transition: 0.3s;
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        top: 8px;
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .course-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 1rem;
    }

    .course {
        width: auto;
        min-height: auto;
        padding: 1rem;
    }

    .course.mobile-animate {
        animation: mobileFadeInUp 0.8s ease-out forwards;
    }

    .course h3 {
        font-size: 1rem;
    }

    .course p {
        font-size: 0.8rem;
    }

    .course ul li {
        font-size: 0.85rem;
    }

    .course-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-height: 44px; /* Touch-friendly */
    }

    .mySwiper .swiper-slide {
        width: 280px;
        height: auto;
        min-height: 350px;
    }

    .mySwiper .swiper-slide .card {
        width: 100%;
        max-width: 280px;
    }

    .mySwiper .swiper-button-next,
    .mySwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .mySwiper .swiper-button-next::after,
    .mySwiper .swiper-button-prev::after {
        font-size: 18px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .partnersSwiper .swiper-slide {
        height: 80px;
        width: 150px;
    }

    .partnersSwiper .swiper-slide img {
        max-width: 70%;
        max-height: 70%;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }
}

@keyframes mobileFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .course-grid {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }

    .course {
        padding: 0.75rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* Team */
.teamSwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.teamSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.teamSwiper .swiper-slide:hover {
    transform: scale(1.05);
}

.employee-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 400px;
    align-items: stretch;
}

.employee-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.employee-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px 12px 0 0;
    border: none;
}

.ai-accounting-expert-image {
    object-position: center 30%;
}

.employee-card h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1rem 1.5rem 0.5rem;
    color: #333;
}

.designation {
    font-size: 1rem;
    color: #dc3545;
    font-weight: 600;
    margin: 40rem 1.5rem 0.5rem;
    text-align: center;
    background: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    border: 2px solid #dc3545;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1);
}

.employee-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0 1.5rem 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.teamSwiper .swiper-button-next,
.teamSwiper .swiper-button-prev {
    color: #dc3545;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.teamSwiper .swiper-button-next:hover,
.teamSwiper .swiper-button-prev:hover {
    background: #dc3545;
    color: #fff;
    transform: scale(1.1);
}

.teamSwiper .swiper-button-next::after,
.teamSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.teamSwiper .swiper-pagination {
    bottom: 10px;
}

.teamSwiper .swiper-pagination-bullet {
    background: #dc3545;
    opacity: 0.5;
}

.teamSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Management */
.managementSwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.managementSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: auto;
    transition: transform 0.3s ease;
}

.managementSwiper .swiper-slide:hover {
    transform: scale(1.05);
}

.managementSwiper .swiper-button-next,
.managementSwiper .swiper-button-prev {
    color: #dc3545;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.managementSwiper .swiper-button-next:hover,
.managementSwiper .swiper-button-prev:hover {
    background: #dc3545;
    color: #fff;
    transform: scale(1.1);
}

.managementSwiper .swiper-button-next::after,
.managementSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.managementSwiper .swiper-pagination {
    bottom: 10px;
}

.managementSwiper .swiper-pagination-bullet {
    background: #dc3545;
    opacity: 0.5;
}

.managementSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* New Management Container Styles */
.management-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

.management-left {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-wrapper {
    height: 400px;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}

.management-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    border-radius: 10px;
}

.management-right {
    flex: 1;
    text-align: left;
}

.management-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.management-designation {
    font-size: 1.1rem;
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 1rem;
}

.management-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.management-quote {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-top: 1rem;
    text-align: left;
}

/* Responsive for Management Container */
@media (max-width: 768px) {
    .management-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .management-left,
    .management-right {
        flex: none;
        width: 100%;
    }

    .management-right {
        text-align: center;
    }

    .management-image {
        max-width: 280px;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .management-name {
        text-align: center;
        margin-bottom: 10px;
    }

    .management-designation {
        text-align: center;
        margin-bottom: 16px;
    }

    .management-description {
        text-align: center;
        padding: 0 16px;
    }

    .managementSwiper .swiper-button-next,
    .managementSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: 10px;
    }

    .managementSwiper .swiper-button-next::after,
    .managementSwiper .swiper-button-prev::after {
        font-size: 18px;
    }
}

/* Loading Animation for Management Cards */
.management-card .card_load,
.employee-card .card_load {
    width: 120px;
    height: 120px;
    position: relative;
    background: linear-gradient(120deg, #e5e5e5 30%, #f0f0f0 38%, #f0f0f0 40%, #e5e5e5 48%);
    border-radius: 50%;
    background-size: 200% 100%;
    background-position: 100% 0;
    animation: load89234 2s infinite;
    margin-bottom: 1rem;
    border: 4px solid #dc3545;
}

.management-card .card_load_extreme_title,
.employee-card .card_load_extreme_title {
    width: 100%;
    height: 20px;
    position: relative;
    border-radius: 5px;
    background: linear-gradient(120deg, #e5e5e5 30%, #f0f0f0 38%, #f0f0f0 40%, #e5e5e5 48%);
    background-size: 200% 100%;
    background-position: 100% 0;
    animation: load89234 2s infinite;
    margin-bottom: 0.5rem;
}

.management-card .card_load_extreme_description,
.employee-card .card_load_extreme_description {
    width: 100%;
    height: 60px;
    position: relative;
    border-radius: 5px;
    background: linear-gradient(120deg, #e5e5e5 30%, #f0f0f0 38%, #f0f0f0 40%, #e5e5e5 48%);
    background-size: 200% 100%;
    background-position: 100% 0;
    animation: load89234 2s infinite;
}

@keyframes load89234 {
    100% {
        background-position: -100% 0;
    }
}

/* Feedback Section Styles */
.feedback-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.feedback-section .container {
    max-width: 800px;
    text-align: center;
}

.feedback-section h2 {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
    position: relative;
}

.feedback-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #dc3545, #ffc107);
    margin: 1rem auto;
    border-radius: 2px;
}

.feedback-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.feedback-form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.feedback-form-container .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.feedback-form-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.feedback-form-container input,
.feedback-form-container select,
.feedback-form-container textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.feedback-form-container input:focus,
.feedback-form-container select:focus,
.feedback-form-container textarea:focus {
    outline: none;
    border-color: #dc3545;
}

.feedback-form-container textarea {
    resize: vertical;
    min-height: 120px;
}

.feedback-form-container .btn {
    background: linear-gradient(45deg, #dc3545, #ffc107);
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.feedback-form-container .btn:hover {
    background: linear-gradient(45deg, #b02a37, #e6a800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Responsive design for feedback section */
@media (max-width: 768px) {
    .feedback-section {
        padding: 3rem 0;
    }

    .feedback-section h2 {
        font-size: 2rem;
    }

    .feedback-section p {
        font-size: 1rem;
    }

    .feedback-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}
