:root {
    --primary-color: #6c63ff;
    --secondary-color: #4a42e8;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #fff;
    --background: #FFD2BC;
    --card-bg: #fff;
    --gradient-primary: linear-gradient(135deg, #6c63ff 0%, #4a42e8 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

/* Header & Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Global mobile fixes */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Showcase Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: 60px;
}

.showcase-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.showcase-slide.active {
    opacity: 1;
    visibility: visible;
}

.showcase-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.showcase-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.showcase-slide.active .showcase-background img {
    transform: scale(1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.showcase-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    color: var(--light-text);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.showcase-slide.active .showcase-content {
    opacity: 1;
    transform: translateY(0);
}

.showcase-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.showcase-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.showcase-content .cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.showcase-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.showcase-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-indicators {
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    /* Professional Carousel - Height adjusts to image height, ZERO empty space */
    .hero {
        min-height: 0 !important;
        height: auto !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 60px !important;
        line-height: 0 !important;
    }
    
    .showcase-container {
        height: auto !important;
        min-height: 0 !important;
        position: relative !important;
        overflow: visible !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 0 !important;
    }
    
    .showcase-slide.active {
        position: relative !important;
    }
    
    .showcase-slide {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        opacity: 0;
        visibility: hidden;
        display: none;
        transition: opacity 0.5s ease-in-out;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
    }
    
    .showcase-slide.active {
        opacity: 1;
        visibility: visible;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
    }
    
    .showcase-background {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
        font-size: 0 !important;
    }
    
    .showcase-background img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        display: block !important;
        object-fit: contain !important;
        object-position: center !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }
    
    .showcase-slide.active .showcase-background img {
        transform: none !important;
    }
    
    .showcase-overlay {
        display: none !important;
    }
    
    .showcase-content {
        display: none !important;
    }
    
    .showcase-controls {
        position: absolute !important;
        bottom: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        width: auto !important;
        display: flex !important;
        justify-content: center !important;
        padding: 0 !important;
        z-index: 10 !important;
        line-height: normal !important;
    }

    .showcase-indicators {
        gap: 6px !important;
        padding: 4px 10px !important;
        background: rgba(0, 0, 0, 0.5) !important;
        border-radius: 15px !important;
        backdrop-filter: blur(10px) !important;
    }

    .indicator {
        width: 6px !important;
        height: 6px !important;
        border: 1px solid white !important;
        background: transparent !important;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .indicator.active {
        background: white !important;
        transform: scale(1.3) !important;
    }
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background: var(--background);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: var(--gradient-primary);
    color: var(--light-text);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--light-text);
}

/* Courses Section */
.courses {
    padding: 5rem 5%;
    background: var(--background);
}

.courses-header {
    text-align: center;
    margin-bottom: 4rem;
}

.courses-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.courses-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.courses-header p {
    color: #666;
    font-size: 1.1rem;
}

.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.course-item {
    perspective: 1500px;
    background: transparent;
    border-radius: 15px;
    height: 600px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.course-item:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.card-front {
    background: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-back {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.course-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.duration {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-content {
    padding: 2rem;
}

.course-tag {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.course-content h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.course-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.course-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #555;
}

.course-highlights i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.card-back h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.card-back h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: white;
}

.detailed-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.detailed-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.detailed-features i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.course-info {
    margin: 1.5rem 0;
    text-align: left;
}

.course-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: white;
}

.course-info i {
    font-size: 1.2rem;
}

.enquire-now {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.enquire-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .course-item {
        height: 550px;
    }

    .card-back {
        padding: 1.5rem;
    }

    .card-back h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .detailed-features li,
    .course-info p {
        font-size: 0.9rem;
    }

    .enquire-now {
        padding: 10px 25px;
    }
}

/* Gallery Section */
.gallery {
    padding: 5rem 5%;
    background: var(--background);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: var(--light-text);
    transform: translateY(100px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-overlay {
        padding: 1rem;
        transform: translateY(70px);
    }

    .gallery-overlay h3 {
        font-size: 1.2rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }
}

/* Online Courses Section */
.online-courses {
    padding: 5rem 5%;
    background: var(--background);
}

.online-courses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.course-icon-wrapper {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.course-icon-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.course-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.course-icon-wrapper:hover .course-icon {
    transform: scale(1.1);
}

.icon-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.course-icon-wrapper:hover .icon-overlay {
    transform: translateY(0);
}

.course-link {
    display: block;
    text-align: center;
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 5px;
    background: var(--primary-color);
    transition: background-color 0.3s ease;
}

.course-link:hover {
    background: var(--secondary-color);
}

.center-button {
    text-align: center;
}

.main-course-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.main-course-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.main-course-button i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.main-course-button:hover i {
    transform: scale(1.2);
}

.online-courses-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.nav-button {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.nav-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.left-button {
    margin-right: 20px;
}

.right-button {
    margin-left: 20px;
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .course-icon {
        padding: 1rem;
    }

    .main-course-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}

/* Contact Section Styles */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 0h100v100H0z" fill="%23ffffff" fill-opacity="0.1"/></svg>');
    opacity: 0.1;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.animated-text {
    font-size: 3rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    animation: colorChange 8s infinite;
}

.animated-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
    animation: lineWidth 2s infinite;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-top: 15px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #2c3e50;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    outline: none;
    background: transparent;
    transition: 0.3s;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.floating-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #95a5a6;
    pointer-events: none;
    transition: 0.3s;
}

.form-group input:focus ~ .floating-label,
.form-group input:valid ~ .floating-label,
.form-group select:focus ~ .floating-label,
.form-group select:valid ~ .floating-label,
.form-group textarea:focus ~ .floating-label,
.form-group textarea:valid ~ .floating-label {
    top: -20px;
    font-size: 14px;
    color: #3498db;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: 0.3s;
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.submit-button {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.info-content h3 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-content p {
    color: #7f8c8d;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    background: #3498db;
    color: white;
    transform: translateY(-5px);
}

@keyframes colorChange {
    0% { color: #2c3e50; }
    25% { color: #3498db; }
    50% { color: #2ecc71; }
    75% { color: #e74c3c; }
    100% { color: #2c3e50; }
}

@keyframes lineWidth {
    0% { width: 0; }
    50% { width: 80px; }
    100% { width: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .animated-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 20px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .animated-text {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    background: #f5f5f5;
    color: var(--text-color);
    padding: 3rem 5% 1rem;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(270deg, #f5f5f5, #e0e0e0, #f5f5f5, #eaeaea);
    background-size: 400% 400%;
    animation: footerGradientMove 18s ease-in-out infinite;
    opacity: 0.7;
    z-index: 0;
}
@keyframes footerGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.footer-content, .footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: 0.3s;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-animation {
        margin-top: 2rem;
    }

    .map-container {
        height: 250px;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-animation {
    animation: float 6s ease-in-out infinite;
}

/* Accessibility */
:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--light-text);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.map-container {
    margin-top: 2rem;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.verify-cert-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: var(--light-text);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.verify-cert-btn i {
    font-size: 1rem;
}

.verify-cert-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.verify-cert-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.verify-cert-btn:hover::before {
    left: 100%;
}

.verify-cert-btn .verify-icon {
    transition: transform 0.3s ease;
}

.verify-cert-btn:hover .verify-icon {
    transform: rotate(360deg);
}

.gallery-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 20px 0;
}

.see-more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

.see-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.see-more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.see-more-button:hover::before {
    left: 100%;
}

.see-more-button i {
    transition: transform 0.3s ease;
}

.see-more-button:hover i {
    transform: translateX(5px);
}

.course-banner {
    width: 100%;
    padding: 40px 0;
    background: var(--background);
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
}

.banner-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.banner-slider {
    position: relative;
    transition: transform 0.5s ease;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-container:hover .banner-overlay {
    opacity: 1;
}

.banner-text {
    color: white;
    max-width: 800px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.banner-container:hover .banner-text {
    transform: translateY(0);
}

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

.banner-text p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes floatBanner {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.banner-container {
    animation: floatBanner 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .banner-text h2 {
        font-size: 1.8rem;
    }

    .banner-text p {
        font-size: 1rem;
    }

    .banner-overlay {
        opacity: 1;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    }
}

/* Team Section */
.team {
    padding: 5rem 5%;
    background: var(--background);
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
}

.team h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), #fff);
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-info .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-info .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

@media (max-width: 768px) {
    .team-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .member-image {
        height: 250px;
    }

    .member-info h3 {
        font-size: 1.3rem;
    }
}

/* Student Stats Section */
.student-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    position: relative;
    overflow: hidden;
}

.student-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 0h100v100H0z" fill="%23ffffff" fill-opacity="0.1"/></svg>');
    opacity: 0.1;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2ecc71;
    animation: lineWidth 2s infinite;
}

.stats-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: translateX(100%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #2ecc71;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: #2ecc71;
    color: white;
    transform: rotateY(360deg);
}

.stat-content {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2ecc71;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Animation for numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animate {
    animation: countUp 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Map Section Styles */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.fullscreen-map {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.fullscreen-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    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='%23e9ecef' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: -1;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fullscreen-map .map-container {
    max-width: 1400px;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.map-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
}

.map-header p {
    color: #7f8c8d;
    font-size: 1.2rem;
}

/* Location Grid Layout */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 50px;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f1f1f1;
    background: #fcfcfc;
}

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #023e8a, #0077b6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(2, 62, 138, 0.2);
}

.card-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
}

.card-content {
    padding: 25px;
}

/* Address Card Styles */
.location-address {
    margin: 0 0 20px;
    color: #7f8c8d;
}

.address-line {
    display: block;
    line-height: 1.6;
}

.location-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.location-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #023e8a, #0077b6);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.location-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 62, 138, 0.2);
}

.location-button:hover:before {
    left: 100%;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.location-button:hover .arrow-icon {
    transform: translateX(5px);
}

.location-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.location-title h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

.location-badge {
    background: #2ecc71;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.location-rating {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.stars {
    display: flex;
    color: #f39c12;
    margin-right: 10px;
}

.rating-score {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 5px;
}

.rating-count {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-detail i {
    color: #3498db;
    font-size: 1.2rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.location-detail p {
    margin: 0;
    color: #7f8c8d;
    line-height: 1.5;
}

.status-open {
    color: #2ecc71;
    font-weight: 600;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.location-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    flex: 1;
    transition: all 0.3s ease;
}

.directions-btn {
    background: #3498db;
    color: white;
}

.directions-btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-btn {
    background: #ecf0f1;
    color: #2c3e50;
}

.contact-btn:hover {
    background: #bdc3c7;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(189, 195, 199, 0.3);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    height: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Nearby Locations Section */
.nearby-locations {
    margin-top: 40px;
}

.nearby-locations h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.nearby-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3498db;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.landmark {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.landmark:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.landmark i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 15px;
}

.landmark p {
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.landmark span {
    display: block;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive Design for Map Section */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 600px;
    }
    
    .location-title h3 {
        font-size: 1.6rem;
    }
    
    .location-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .map-header h2 {
        font-size: 2.2rem;
    }
    
    .landmarks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-detail p {
        font-size: 0.9rem;
    }
    
    .map-wrapper {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .map-header h2 {
        font-size: 1.8rem;
    }
    
    .location-title {
        flex-direction: column;
        gap: 10px;
    }
    
    .location-badge {
        align-self: flex-start;
    }
    
    .landmarks-grid {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 400px;
    }
}

.location-map-wrapper {
    position: relative;
    height: 100%;
}

.location-frame {
    position: relative;
    height: 100%;
    min-height: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: white;
    padding: 15px;
    border: 1px solid #eaeaea;
}

.location-frame-inner {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-interaction {
    position: absolute;
    right: 30px;
    top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.map-control {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-control:hover {
    background: #023e8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Map Interaction Elements */
.map-control-panel {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}

.map-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: #023e8a;
    font-size: 18px;
}

.map-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #f9f9f9;
}

.map-button.active {
    background: #023e8a;
    color: white;
}

.location-info-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    z-index: 5;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(2, 62, 138, 0.1);
    transition: all 0.3s ease;
}

.overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.overlay-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.close-overlay {
    background: none;
    border: none;
    color: #7f8c8d;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-overlay:hover {
    color: #2c3e50;
    transform: rotate(90deg);
}

.location-stars {
    display: flex;
    color: #f39c12;
    margin-right: 10px;
}

.star-icon {
    margin-right: 2px;
}

/* Responsive behavior */
@media (max-width: 992px) {
    .location-frame {
        min-height: 500px;
    }
    
    .location-info-overlay {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .location-frame {
        min-height: 400px;
    }
    
    .map-control-panel {
        bottom: 20px;
        right: 20px;
    }
    
    .map-button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .location-info-overlay {
        top: 20px;
        left: 20px;
        padding: 15px;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .location-frame {
        min-height: 350px;
    }
    
    .location-info-overlay {
        top: 15px;
        left: 15px;
        max-width: calc(100% - 30px);
    }
    
    .map-control-panel {
        bottom: 15px;
        right: 15px;
    }
    
    .map-button {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

/* Map Styles */
.location-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.location-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.location-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

/* Map Controls */
.map-control-panel {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.map-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    color: #333;
}

.map-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-button.active {
    background-color: #4a90e2;
    color: white;
}

/* Location Info Overlay */
.location-info-overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 350px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 10;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.overlay-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.close-overlay {
    background: none;
    border: none;
    font-size: 22px;
    color: #777;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.close-overlay:hover {
    color: #333;
}

.overlay-content {
    padding: 20px;
}

.location-address {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
}

.location-address i {
    color: #4a90e2;
    margin-right: 8px;
}

.location-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.location-stars {
    display: flex;
    margin-right: 10px;
}

.star-icon {
    color: #ffb400;
    font-size: 14px;
}

.location-contact {
    margin-bottom: 20px;
}

.location-contact p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.location-contact i {
    width: 20px;
    margin-right: 8px;
    color: #4a90e2;
}

.location-buttons {
    display: flex;
    gap: 10px;
}

.location-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.location-button i {
    margin-right: 6px;
}

.location-button:hover {
    background-color: #eaeaea;
    transform: translateY(-2px);
}

.location-button.primary {
    background-color: #4a90e2;
    color: white;
}

.location-button.primary:hover {
    background-color: #3a80d2;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .location-section {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .location-section {
        height: 500px;
    }
    
    .location-info-overlay {
        width: 320px;
    }
}

@media (max-width: 576px) {
    .location-section {
        height: 400px;
    }
    
    .location-info-overlay {
        width: calc(100% - 40px);
    }
    
    .map-control-panel {
        right: 10px;
        top: 10px;
    }
    
    .map-button {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* New Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2) 0%, rgba(108, 99, 255, 0.1) 100%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #6c63ff 0%, #b263ff 100%);
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #6c63ff, #b263ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #6c63ff 0%, #b263ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
    flex-shrink: 0;
}

.contact-card:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.card-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.map-container {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, #6c63ff, #b263ff) border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.map-container:hover::before {
    opacity: 1;
}

.contact-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    width: 100%;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6c63ff, #b263ff);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #444;
}

.form-group .required {
    color: #ff6b6b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
    background-color: #fff;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.send-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(90deg, #6c63ff, #b263ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.send-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.send-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.send-button:hover::before {
    left: 100%;
}

.send-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.send-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-left {
        order: 2;
    }
    
    .contact-right {
        order: 1;
    }
    
    .form-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-card-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-title {
        font-size: 2.3rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 30px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .send-button {
        padding: 12px 25px;
    }
}

/* Contact Section - Landscape Design */
.contact-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.contact-landscape {
    width: 100%;
    position: relative;
}

.contact-header {
    text-align: center;
    padding: 0 20px 50px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #6c63ff, #4834d4);
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.contact-landscape-content {
    display: flex;
    height: 600px;
    position: relative;
}

.contact-info-side {
    width: 30%;
    padding: 40px;
    background: linear-gradient(135deg, #6c63ff, #4834d4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-info-side::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.contact-info-side::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.contact-cards {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .icon-circle {
    background: white;
    color: #6c63ff;
    transform: rotate(10deg);
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-map-side {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.form-container {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    position: relative;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #444;
}

.form-group .required {
    color: #ff6b6b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.send-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6c63ff, #4834d4);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.send-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.send-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.send-button:hover::before {
    left: 100%;
}

.send-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.send-button:hover i {
    transform: translateX(5px);
}

.map-container {
    height: 300px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive adjustments for landscape design */
@media (max-width: 1200px) {
    .contact-landscape-content {
        height: 650px;
    }
}

@media (max-width: 992px) {
    .contact-landscape-content {
        flex-direction: column;
        height: auto;
    }
    
    .contact-info-side {
        width: 100%;
        padding: 50px 40px;
    }
    
    .contact-cards {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .form-map-side {
        width: 100%;
    }
    
    .form-container {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        margin: 60px 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-info-side {
        padding: 40px 30px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        margin: 40px 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .send-button {
        width: 100%;
    }
}

/* Contact Foam Design - Unique Form and Map View */
.contact-foam-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-foam-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.contact-foam-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(270deg, #ffb6b9, #fae3d9, #bbded6, #8ac6d1, #ffd2bc, #b5ead7, #c7ceea);
    background-size: 1400% 1400%;
    opacity: 0.5;
    z-index: 0;
    animation: foamGradientMove 18s ease-in-out infinite;
    pointer-events: none;
}
@keyframes foamGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.form-foam-container {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.form-foam-container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -150px;
    right: -100px;
}

.form-foam-container::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -80px;
    left: -80px;
}

.foam-form {
    width: 100%;
    position: relative;
    z-index: 1;
}

.foam-field-group {
    margin-bottom: 30px;
}

.foam-field {
    position: relative;
    margin-bottom: 25px;
}

.foam-field input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.foam-field input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.foam-field input::placeholder {
    color: transparent;
}

.foam-field label {
    position: absolute;
    top: 15px;
    left: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.foam-field input:focus + label,
.foam-field input:not(:placeholder-shown) + label {
    top: -10px;
    left: 20px;
    font-size: 0.85rem;
    background: #6c63ff;
    padding: 0 8px;
    border-radius: 4px;
}

.field-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.foam-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: white;
    color: #6c63ff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.foam-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.foam-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Map Foam Container */
.map-foam-container {
    background: white;
    display: flex;
    flex-direction: column;
}

.map-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.map-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-title i {
    font-size: 1.2rem;
    color: #6c63ff;
}

.map-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.map-controls {
    display: flex;
    gap: 10px;
}

.map-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: #f5f5f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-control-btn:hover {
    background: #6c63ff;
    color: white;
}

.map-view {
    flex: 1;
    min-height: 450px;
    position: relative;
}

.map-view iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-foam {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    color: #6c63ff;
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments for foam design */
@media (max-width: 1024px) {
    .contact-foam-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-foam-container {
        padding: 40px;
    }
    
    .contact-info-foam {
        flex-direction: column;
        gap: 15px;
    }
    
    .map-view {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .foam-field input {
        padding: 14px 20px 14px 45px;
    }
    
    .foam-field label {
        left: 45px;
    }
    
    .foam-submit-btn {
        padding: 14px 20px;
    }
    
    .map-header {
        padding: 15px 20px;
    }
    
    .contact-info-foam {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .map-view {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .form-foam-container {
        padding: 30px 20px;
    }
    
    .map-title h3 {
        font-size: 1.1rem;
    }
    
    .map-view {
        min-height: 350px;
    }
}

/* Find Us Section Styles */
.find-us-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.find-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #6c63ff;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.location-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.location-map {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.overlay-content {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding-right: 10px;
}

.overlay-content::-webkit-scrollbar {
    width: 5px;
}

.overlay-content::-webkit-scrollbar-thumb {
    background: #6c63ff;
    border-radius: 10px;
}

.location-address,
.location-contact,
.location-hours {
    margin-bottom: 30px;
}

.location-address h3,
.location-contact h3,
.location-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.location-address p,
.location-contact p,
.location-hours p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.location-address i,
.location-contact i,
.location-hours i {
    color: #6c63ff;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.direction-btn,
.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.direction-btn {
    background: #6c63ff;
    color: white;
}

.direction-btn:hover {
    background: #5a52e0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.call-btn {
    background: #f0f0f0;
    color: #333;
}

.call-btn:hover {
    background: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c63ff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #6c63ff;
    color: white;
    transform: rotate(10deg);
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Styles for Find Us Section */
@media (max-width: 1200px) {
    .location-map {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 500px;
    }
    
    .map-overlay {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .find-us-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .location-map {
        height: 450px;
    }
    
    .map-overlay {
        width: 250px;
        padding: 20px;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .find-us-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .location-map {
        height: 600px;
    }
    
    .map-overlay {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 60%;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Find Us Section - Map Only */
.find-us-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.find-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #6c63ff;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.location-container {
    width: 100%;
}

.location-map-only {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .location-map-only {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .find-us-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .location-map-only {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .find-us-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .location-map-only {
        height: 350px;
        border-radius: 15px;
    }
}

/* Modern Courses Section - Glassmorphism & Animated */
.modern-courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.modern-course-card {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(44,62,80,0.12), 0 1.5px 8px rgba(44,62,80,0.10);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.4s;
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.18);
  min-height: 540px;
}

.modern-course-card:hover, .modern-course-card:focus-within {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(44,62,80,0.18);
}

.modern-course-image {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  background: linear-gradient(120deg, #e0e7ef 60%, #f8fafc 100%);
}

.modern-course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1);
}

.modern-course-card:hover .modern-course-image img,
.modern-course-card:focus-within .modern-course-image img {
  transform: scale(1.08) rotateZ(-1.5deg);
}

.modern-course-duration {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--primary-color);
  color: #fff;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(44,62,80,0.10);
  z-index: 2;
}

.modern-course-content {
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.modern-course-tag {
  display: inline-block;
  background: var(--gradient-accent);
  color: #fff;
  padding: 6px 18px;
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  letter-spacing: 1px;
}

.modern-course-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgba(44,62,80,0.08);
}

.modern-course-desc {
  color: #333;
  font-size: 1.13rem;
  margin-bottom: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(44,62,80,0.06);
}

.modern-course-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

.modern-course-highlights li {
  font-size: 1.01rem;
  color: #475569;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(44,62,80,0.05);
  color: #222;
}

.modern-course-highlights i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.modern-course-details {
  background: rgba(255,255,255,0.55);
  border-radius: 1.2rem;
  margin-bottom: 1.2rem;
  padding: 1.1rem 1rem 0.7rem 1rem;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  transition: background 0.4s;
}

.modern-course-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
}

.modern-course-details li {
  font-size: 0.98rem;
  color: #3b3b3b;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(44,62,80,0.05);
  color: #222;
}

.modern-course-details i {
  color: #4CAF50;
  font-size: 1.1rem;
}

.modern-course-info {
  display: flex;
  gap: 1.2rem;
  font-size: 0.97rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.modern-course-info i {
  color: var(--primary-color);
  margin-right: 0.3em;
}

.modern-enquire-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 0.7em 1.7em;
  background: var(--primary-color);
  color: #fff;
  border-radius: 2em;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  margin-top: 0.7rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.modern-enquire-btn:hover, .modern-enquire-btn:focus {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
  .modern-courses {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .modern-course-card {
    min-height: 480px;
  }
}

@media (max-width: 600px) {
  .modern-courses {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .modern-course-card {
    min-height: 420px;
    border-radius: 1.2rem;
  }
  .modern-course-image {
    height: 150px;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
  }
  .modern-course-content {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

/* Flip Card Effect for Modern Courses */
.flip-card {
  perspective: 1200px;
  min-height: 340px;
  height: 100%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.4,2,.6,1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card-front {
  background: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: fill !important;
  border-radius: 2rem;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1);
}

.flip-card:hover .flip-card-front img,
.flip-card:focus-within .flip-card-front img {
  transform: scale(1.08) rotateZ(-1.5deg);
}

.flip-card-back {
  background: rgba(255,255,255,0.97);
  color: #222;
  transform: rotateY(180deg);
  z-index: 3;
  flex-direction: column;
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 32px rgba(44,62,80,0.12);
  overflow: hidden;
  text-align: center;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 0;
}

@media (max-width: 900px) {
  .flip-card, .flip-card-front img, .flip-card-back {
    border-radius: 1.2rem;
  }
}

@media (max-width: 600px) {
  .flip-card, .flip-card-front img, .flip-card-back {
    border-radius: 1.2rem;
  }
  .flip-card-back {
    padding: 0.8rem 0.8rem !important;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
  }
  
  .course-info-back {
    padding: 0.7rem 0.7rem !important;
  }
  
  .course-name {
    font-size: 1.6rem !important;
    padding: 0 0.5rem !important;
    margin: 0 0 0.4rem 0 !important;
    line-height: 1.1 !important;
  }
  
  .course-info-list {
    padding: 0 0.3rem !important;
    gap: 0.25rem !important;
    font-size: 0.65rem !important;
  }
  
  .course-info-list li {
    padding: 2px 0.3rem !important;
    margin-bottom: 2px !important;
    font-size: 0.6rem !important;
    line-height: 1.2 !important;
  }
}

/* Touch support for mobile: flip on tap */
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

/* 4K Text Quality Badge for Course Cards */
.modern-course-badge-4k {
  display: inline-block;
  background: linear-gradient(90deg, #ff6b6b 0%, #6c63ff 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  border-radius: 18px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(108,99,255,0.10);
  text-shadow: 0 1px 4px rgba(44,62,80,0.10);
  position: relative;
  z-index: 2;
}

/* Course Name Only Front */
.course-name-front {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #253b5d;
}

.course-name-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 0 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

/* Course Info Only Back */
.course-info-back {
  background: #253b5d;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem 1.2rem;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  min-height: 0;
}

.course-name {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.6rem 0;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
  padding: 0 0.8rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 1;
}


.course-info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  list-style: none;
  padding: 0 0.8rem;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
}

.course-info-list li {
  color: #fff;
  margin-bottom: 0.3rem;
  white-space: normal;
  line-height: 1.3;
  padding: 0.2rem 0.3rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  .course-info-back {
    padding: 0.8rem 0.8rem !important;
    justify-content: center !important;
    overflow: hidden !important;
    min-height: 0 !important;
  }
  
  .course-name {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    padding: 0 0.6rem !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-shrink: 1;
    line-height: 1.1;
  }
  
  .course-info-list {
    grid-template-columns: 1fr !important;
    font-size: 0.7rem;
    padding: 0 0.4rem !important;
    margin: 0 !important;
    gap: 0.3rem !important;
    flex: 1;
    min-height: 0;
    text-align: center;
  }
  .course-info-list li {
    font-size: 0.8rem;
  }
  .course-name-text {
    font-size: 1.5rem;
  }
}

/* Course Image Only Front */
.course-image-front {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #253b5d;
  overflow: hidden;
  border-radius: 2rem;
  margin: 0;
  padding: 0;
}

.course-image-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  display: block;
  margin: 0;
  padding: 0;
}

@media (max-width: 700px) {
  .course-image-front {
    border-radius: 1.2rem;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  .course-image-front img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 1.2rem;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Unique Gallery Section Header */
.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 1rem;
}

.gallery-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.gallery-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
  margin: 0.5rem auto 0 auto;
}

.gallery-subtitle {
  color: #555;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-modern-wrapper {
  display: flex;
  gap: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.12);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  margin: 0 auto 64px auto;
  max-width: 1200px;
}
.contact-modern-wrapper::before {
  content: '';
}

/* --- Get In Touch Modern Section --- */
.contact-touch-modern {
  background: #f7f7fb;
  padding: 70px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.touch-modern-wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.10);
  display: flex;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
}
.touch-form-side {
  flex: 1;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.touch-title {
  font-size: 2rem;
  font-weight: 700;
  color: #4b3fd6;
  margin-bottom: 8px;
}
.touch-subtitle {
  color: #888;
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.touch-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.touch-form input,
.touch-form textarea {
  border: 1.5px solid #eceafe;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  background: #f7f7fb;
  color: #333;
  transition: border-color 0.2s;
}
.touch-form input:focus,
.touch-form textarea:focus {
  border-color: #7c6ee6;
  outline: none;
}
.touch-form textarea {
  min-height: 80px;
  resize: vertical;
}
.touch-submit {
  background: linear-gradient(90deg, #7c6ee6, #4b3fd6);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(76, 63, 214, 0.08);
}
.touch-submit:hover {
  background: linear-gradient(90deg, #4b3fd6, #7c6ee6);
}
.touch-info-side {
  flex: 1;
  background: #eceafe;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 24px;
  min-width: 260px;
}
.touch-illustration {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.touch-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.touch-contact-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #4b3fd6;
  background: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 2px 8px rgba(76, 63, 214, 0.04);
  gap: 12px;
}
.touch-contact-list i {
  color: #7c6ee6;
  font-size: 1.2rem;
}
@media (max-width: 900px) {
  .touch-modern-wrapper {
    flex-direction: column;
    max-width: 98vw;
  }
  .touch-info-side, .touch-form-side {
    min-width: 0;
    width: 100%;
    padding: 32px 16px;
  }
  .touch-illustration {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .contact-touch-modern {
    padding: 32px 0;
  }
  .touch-modern-wrapper {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  }
  .touch-title {
    font-size: 1.3rem;
  }
  .touch-form input, .touch-form textarea {
    font-size: 0.98rem;
    padding: 10px 12px;
  }
  .touch-contact-list li {
    font-size: 0.98rem;
    padding: 8px 10px;
  }
}

/* --- Luxury Get In Touch Section --- */
.luxury-touch-section {
  background: linear-gradient(135deg, #181A20 60%, #23242b 100%);
  padding: 90px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.luxury-touch-wrapper {
  background: rgba(24,26,32,0.85);
  border-radius: 32px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.45), 0 1.5px 8px rgba(191,161,74,0.10);
  display: flex;
  max-width: 950px;
  width: 100%;
  overflow: hidden;
  border: 2.5px solid #BFA14A;
  backdrop-filter: blur(8px);
}
.luxury-touch-form-side {
  flex: 1;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.luxury-touch-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #BFA14A;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  font-family: 'Poppins', serif;
  display: flex;
  align-items: center;
  gap: 12px;
}
.luxury-touch-title i {
  color: #FFD700;
  font-size: 1.5em;
  filter: drop-shadow(0 2px 6px #BFA14A88);
}
.luxury-touch-subtitle {
  color: #e0cfa4;
  font-size: 1.1rem;
  margin-bottom: 32px;
  font-family: 'Poppins', serif;
  letter-spacing: 0.5px;
}
.luxury-touch-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.luxury-touch-form input,
.luxury-touch-form textarea {
  border: 1.5px solid #BFA14A;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1.08rem;
  background: rgba(24,26,32,0.85);
  color: #fff8e1;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', serif;
  box-shadow: 0 2px 8px rgba(191,161,74,0.04);
}
.luxury-touch-form input:focus,
.luxury-touch-form textarea:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 0 2px #BFA14A44;
  background: rgba(24,26,32,0.98);
}
.luxury-touch-form textarea {
  min-height: 90px;
  resize: vertical;
}
.luxury-touch-submit {
  display: block;
  margin: 32px auto 0 auto;
  background: linear-gradient(90deg, #FFD700 0%, #BFA14A 100%);
  color: #181A20;
  border: none;
  border-radius: 30px;
  padding: 18px 0;
  width: 70%;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-align: center;
  box-shadow: 0 6px 32px rgba(191,161,74,0.18), 0 1.5px 8px rgba(191,161,74,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}
.luxury-touch-submit:hover, .luxury-touch-submit:focus {
  background: linear-gradient(90deg, #BFA14A 0%, #FFD700 100%);
  color: #23242b;
  box-shadow: 0 0 16px 4px #FFD70099, 0 8px 36px rgba(191,161,74,0.22);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}
.luxury-touch-info-side {
  flex: 1;
  background: linear-gradient(135deg, #23242b 60%, #181A20 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 28px;
  min-width: 260px;
  border-left: 1.5px solid #BFA14A;
}
.luxury-touch-illustration {
  margin-bottom: 38px;
  display: flex;
  justify-content: center;
}
.luxury-touch-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.luxury-touch-contact-list li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  color: #FFD700;
  background: rgba(24,26,32,0.85);
  border-radius: 10px;
  padding: 13px 20px;
  box-shadow: 0 2px 12px rgba(191,161,74,0.06);
  gap: 14px;
  font-family: 'Poppins', serif;
  border: 1px solid #BFA14A;
  letter-spacing: 0.5px;
}
.luxury-touch-contact-list i {
  color: #FFD700;
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 6px #BFA14A88);
}
@media (max-width: 950px) {
  .luxury-touch-wrapper {
    flex-direction: column;
    max-width: 98vw;
  }
  .luxury-touch-info-side, .luxury-touch-form-side {
    min-width: 0;
    width: 100%;
    padding: 32px 16px;
  }
  .luxury-touch-illustration {
    margin-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .luxury-touch-section {
    padding: 36px 0;
  }
  .luxury-touch-wrapper {
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(191,161,74,0.10);
  }
  .luxury-touch-title {
    font-size: 1.3rem;
  }
  .luxury-touch-form input, .luxury-touch-form textarea {
    font-size: 0.98rem;
    padding: 10px 12px;
  }
  .luxury-touch-contact-list li {
    font-size: 0.98rem;
    padding: 8px 10px;
  }
}

.map-center-large {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 900px;
  max-width: 1400px;
  margin: 0 auto;
}
.map-center-large iframe {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .map-center-large {
    max-width: 100vw;
  }
}
@media (max-width: 992px) {
  .map-center-large {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .map-center-large {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .map-center-large {
    height: 300px;
  }
}

/* Luxury Find Us Section */
.luxury-findus-section {
    background: linear-gradient(135deg, #181A20 80%, #BFA14A 100%);
    padding: 60px 0 40px 0;
    position: relative;
    z-index: 2;
}
.luxury-findus-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.luxury-findus-card {
    display: flex;
    flex-wrap: wrap;
    background: rgba(24, 26, 32, 0.85);
    box-shadow: 0 8px 32px rgba(191,161,74,0.15);
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    max-width: 950px;
    border: 2px solid #BFA14A;
}
.luxury-findus-info {
    flex: 1 1 320px;
    padding: 40px 36px 40px 40px;
    color: #fff8e1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}
.luxury-findus-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #BFA14A;
    margin-bottom: 10px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.luxury-findus-subtitle {
    font-size: 1.1rem;
    color: #fff8e1cc;
    margin-bottom: 22px;
}
.luxury-findus-contact-list {
    list-style: none;
    margin-bottom: 28px;
    padding: 0;
}
.luxury-findus-contact-list li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff8e1;
}
.luxury-findus-contact-list a {
    color: #BFA14A;
    text-decoration: none;
    transition: color 0.2s;
}
.luxury-findus-contact-list a:hover {
    color: #fff8e1;
    text-decoration: underline;
}
.luxury-findus-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.luxury-findus-btn {
    background: linear-gradient(90deg, #BFA14A 0%, #fff8e1 100%);
    color: #181A20;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(191,161,74,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.luxury-findus-btn:hover, .luxury-findus-btn:focus {
    background: linear-gradient(90deg, #fff8e1 0%, #BFA14A 100%);
    color: #BFA14A;
    transform: translateY(-2px) scale(1.04);
}
.luxury-findus-map {
    flex: 1 1 320px;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 32px 32px 32px 0;
}
.luxury-map-glass {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(191,161,74,0.10);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

/* Modal Styles */
.luxury-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(24, 26, 32, 0.85);
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
}
.luxury-modal-content {
    background: #181A20;
    margin: 8% auto;
    padding: 32px 28px 24px 28px;
    border: 2px solid #BFA14A;
    border-radius: 18px;
    max-width: 400px;
    color: #fff8e1;
    box-shadow: 0 8px 32px rgba(191,161,74,0.18);
    position: relative;
    animation: luxuryModalIn 0.3s;
}
@keyframes luxuryModalIn {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.luxury-modal-title {
    color: #BFA14A;
    font-size: 1.3rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.luxury-batch-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.luxury-batch-list li {
    margin-bottom: 12px;
    font-size: 1.08rem;
    color: #fff8e1;
}
.luxury-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.5rem;
    color: #BFA14A;
    cursor: pointer;
    transition: color 0.2s;
}
.luxury-modal-close:hover {
    color: #fff8e1;
}

@media (max-width: 900px) {
    .luxury-findus-card {
        flex-direction: column;
        align-items: stretch;
    }
    .luxury-findus-map {
        padding: 0 0 32px 0;
        justify-content: flex-start;
    }
}
@media (max-width: 600px) {
    .luxury-findus-info, .luxury-findus-map {
        padding: 24px 12px;
        min-width: 0;
    }
    .luxury-findus-title {
        font-size: 1.3rem;
    }
    .luxury-findus-card {
        border-radius: 12px;
    }
    .luxury-map-glass {
        border-radius: 10px;
    }
    .luxury-modal-content {
        padding: 18px 8px 12px 8px;
        border-radius: 10px;
    }
}

/* Luxury Footer Styles */
.luxury-footer {
    background: #f5f5f5;
    color: #222;
    padding: 0;
    margin-top: 60px;
    border-top: 2.5px solid #e0e0e0;
    box-shadow: 0 -2px 16px rgba(44,62,80,0.06);
    backdrop-filter: blur(8px);
}
.luxury-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 24px 24px;
    align-items: flex-start;
}
.footer-col {
    min-width: 200px;
    margin-bottom: 18px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    object-fit: contain;
}
.footer-brand-text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 2px;
    letter-spacing: 1px;
}
.footer-brand-text p {
    color: #444;
    font-size: 1rem;
    margin: 0;
}
.footer-links h4, .footer-contact h4 {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}
.footer-links ul li, .footer-contact ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links ul li a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links ul li a:hover {
    color: #007bff;
    text-decoration: underline;
}
.footer-contact ul li a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact ul li a:hover {
    color: #007bff;
    text-decoration: underline;
}
.footer-contact ul li i {
    color: #007bff;
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
}
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,123,255,0.08);
    color: #007bff;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
}
.footer-social a:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-3px) scale(1.08);
}
.luxury-footer-bottom {
    text-align: center;
    padding: 18px 0 10px 0;
    background: #f5f5f5;
    color: #222;
    font-size: 1.05rem;
    border-top: 1.5px solid #e0e0e0;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}
@media (max-width: 900px) {
    .luxury-footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 36px 12px 18px 12px;
    }
    .footer-col {
        min-width: 0;
        width: 100%;
    }
    .footer-brand {
        margin-bottom: 12px;
    }
}

/* About Us Section - Fresh Design */
.about-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: bgFloat 15s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 100px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.about-badge i {
    font-size: 1rem;
}

.about-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 300;
}

.about-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.about-divider::before,
.about-divider::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: linear-gradient(135deg, #feca57, #ff6b6b);
    border-radius: 2px;
}

.about-divider::before {
    left: -40px;
}

.about-divider::after {
    right: -40px;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-story {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s ease;
}

.about-story:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-story h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.about-story p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.3rem;
    color: white;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #feca57;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(254, 202, 87, 0.3);
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: 400px;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 25px 25px;
    color: white;
}

.gallery-overlay h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #feca57;
}

.gallery-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    flex: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.side-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 15px 15px;
    color: white;
}

.side-overlay h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #feca57;
}

@media (max-width: 1200px) {
    .about-main-content {
        gap: 80px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-title {
        font-size: 3rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 100px 0;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .about-story {
        padding: 30px;
    }

    .about-story h3 {
        font-size: 1.6rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
    }

    .stat-box {
        padding: 25px;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    .gallery-side {
        flex-direction: row;
    }

    .side-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .about-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .about-story {
        padding: 25px;
    }

    .feature-item {
        padding: 15px;
    }

    .stat-box {
        padding: 20px;
    }

    .stat-box .stat-number {
        font-size: 1.8rem;
    }
}

/* About Us Video Container Styles */
.about-video-container {
    margin-top: 2rem;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(191,161,74,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(191,161,74,0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.video-wrapper:hover video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(191,161,74,0.8) 0%, rgba(255,215,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,1);
}

.play-button i {
    font-size: 2rem;
    color: #BFA14A;
    margin-left: 5px;
}

.video-overlay h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.video-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Responsive styles for video container */
@media (max-width: 768px) {
    .video-wrapper {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .video-overlay h4 {
        font-size: 1.2rem;
    }
    
    .video-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-wrapper {
        height: 250px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .video-overlay h4 {
        font-size: 1rem;
    }
    
    .video-overlay p {
        font-size: 0.8rem;
    }
}

/* Revolutionary About Section Styles */
.about-revolutionary {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    padding: 80px 0;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(191,161,74,0.1), rgba(255,215,0,0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 40%;
    animation-delay: 1s;
}

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

.about-revolutionary-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Video Hero Section */
.about-video-hero {
    margin-bottom: 60px;
}

.video-hero-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(191,161,74,0.3);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.3s ease;
}

.video-hero-wrapper:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.video-hero-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(191,161,74,0.8) 0%, rgba(255,215,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.video-hero-container:hover .video-hero-overlay {
    opacity: 1;
}

.hero-play-btn {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-play-btn:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,1);
}

.hero-play-btn i {
    font-size: 2.5rem;
    color: #BFA14A;
    margin-left: 8px;
}

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

.video-hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Story Card */
.about-story-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(191,161,74,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191,161,74,0.2);
}

.story-header {
    margin-bottom: 20px;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #BFA14A, #FFD700);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-badge i {
    font-size: 1rem;
}

.story-header h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.story-content p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.95rem;
}

.highlight-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Stats Card */
.about-stats-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(191,161,74,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191,161,74,0.2);
}

.stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.stats-header h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.stats-header p {
    color: #fff;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(191,161,74,0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #BFA14A, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-plus, .stat-percent {
    font-size: 1rem;
    margin-left: 2px;
}

.stat-item p {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features Card */
.about-features-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(191,161,74,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191,161,74,0.2);
}

.features-header {
    text-align: center;
    margin-bottom: 30px;
}

.features-header h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.features-header p {
    color: #fff;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 20px;
    background: rgba(191,161,74,0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #BFA14A, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

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

.feature-icon-wrapper i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-card h4 {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mission Card */
.about-mission-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(191,161,74,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191,161,74,0.2);
}

.mission-content {
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #BFA14A, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

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

.mission-icon i {
    font-size: 2rem;
    color: #fff;
}

.mission-content h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.mission-content p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 25px;
}

.mission-values {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
}

.value-item i {
    color: #FFD700;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-revolutionary {
        padding: 60px 0;
    }
    
    .video-hero-container {
        height: 350px;
    }
    
    .video-hero-overlay h2 {
        font-size: 2rem;
    }
    
    .video-hero-overlay p {
        font-size: 1rem;
    }
    
    .hero-play-btn {
        width: 80px;
        height: 80px;
    }
    
    .hero-play-btn i {
        font-size: 2rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-values {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .video-hero-container {
        height: 250px;
    }
    
    .video-hero-overlay h2 {
        font-size: 1.5rem;
    }
    
    .hero-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .hero-play-btn i {
        font-size: 1.5rem;
    }
    
    .about-story-card,
    .about-stats-card,
    .about-features-card,
    .about-mission-card {
        padding: 20px;
    }
}

/* About Section Styles - Based on Image Design */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Left Column - Teal Background */
.about-left {
    background: linear-gradient(135deg, #20B2AA 0%, #48D1CC 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    overflow: hidden;
}

.about-hero {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.circular-image-frame {
    width: 400px;
    height: 400px;
    border: 3px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.lab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.welcome-banner {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.banner-content {
    flex: 1;
}

.welcome-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 0;
    line-height: 1;
}

.vce-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 5px 0;
}

.full-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 5px 0;
}

.proprietor {
    font-size: 0.8rem;
    color: #666;
    margin: 5px 0 0 0;
}

.banner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.iso-logo {
    background: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
}

.computer-icon {
    font-size: 1.5rem;
    color: #333;
}

.deity-emblem {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.deity-emblem i {
    font-size: 1.2rem;
    color: #fff;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.gear-icon {
    position: absolute;
    top: 15%;
    left: 10%;
    color: rgba(255,255,255,0.3);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.beaker-icon {
    position: absolute;
    top: 45%;
    left: 15%;
    color: rgba(255,255,255,0.3);
    font-size: 1.8rem;
    animation: float 6s ease-in-out infinite 2s;
}

.chart-icon {
    position: absolute;
    bottom: 25%;
    right: 15%;
    color: rgba(255,255,255,0.3);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Bottom Graphic */
.bottom-graphic {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
}

.wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scaleX(1.5);
}

.student-figures {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.figure {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: bounce 3s ease-in-out infinite;
}

.figure-1 { animation-delay: 0s; }
.figure-2 { animation-delay: 1s; }
.figure-3 { animation-delay: 2s; }

.figure i {
    font-size: 1.2rem;
    color: #ffffff;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Right Column - White Background */
.about-right {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 60px 50px;
}

.about-content {
    max-width: 500px;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-highlights {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(32, 178, 170, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateY(-3px);
}

.highlight i {
    font-size: 1.2rem;
    color: #20B2AA;
}

.highlight span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .about-left {
        min-height: 600px;
    }
    
    .about-right {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .circular-image-frame {
        width: 300px;
        height: 300px;
    }
    
    .welcome-text {
        font-size: 1.4rem;
    }
    
    .about-heading {
        font-size: 2rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-left {
        padding: 40px 20px;
    }
    
    .about-right {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .circular-image-frame {
        width: 250px;
        height: 250px;
    }
    
    .welcome-banner {
        padding: 10px;
    }
    
    .welcome-text {
        font-size: 1.2rem;
    }
    
    .about-heading {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

/* Our Impact Section - Unique Design with Auto Color Change */
.impact-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.impact-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.impact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    margin-bottom: 20px;
}

.impact-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.impact-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.impact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.impact-card[data-color="blue"] .card-icon { color: #4ecdc4; }
.impact-card[data-color="green"] .card-icon { color: #96ceb4; }
.impact-card[data-color="purple"] .card-icon { color: #ff9ff3; }
.impact-card[data-color="orange"] .card-icon { color: #feca57; }
.impact-card[data-color="red"] .card-icon { color: #ff6b6b; }
.impact-card[data-color="teal"] .card-icon { color: #45b7d1; }

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.impact-card:hover .card-icon {
    transform: scale(1.2);
    animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.2); }
}

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

.counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-right: 5px;
    animation: counterGlow 2s ease-in-out infinite alternate;
}

.counter-suffix {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    display: inline-block;
}

@keyframes counterGlow {
    0% { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    100% { text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6); }
}

.card-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

.card-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.impact-card:hover .card-glow {
    opacity: 1;
}

/* Auto Color Change Effects */
.impact-card[data-color="blue"]:hover {
    border-color: #4ecdc4;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.3);
}

.impact-card[data-color="green"]:hover {
    border-color: #96ceb4;
    box-shadow: 0 20px 40px rgba(150, 206, 180, 0.3);
}

.impact-card[data-color="purple"]:hover {
    border-color: #ff9ff3;
    box-shadow: 0 20px 40px rgba(255, 159, 243, 0.3);
}

.impact-card[data-color="orange"]:hover {
    border-color: #feca57;
    box-shadow: 0 20px 40px rgba(254, 202, 87, 0.3);
}

.impact-card[data-color="red"]:hover {
    border-color: #ff6b6b;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.impact-card[data-color="teal"]:hover {
    border-color: #45b7d1;
    box-shadow: 0 20px 40px rgba(69, 183, 209, 0.3);
}

/* Visualization Circle */
.impact-visualization {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.visualization-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.circle-progress {
    position: relative;
    width: 100%;
    height: 100%;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    stroke-linecap: round;
    animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { stroke-dashoffset: 565.48; }
    50% { stroke-dashoffset: 56.548; }
    100% { stroke-dashoffset: 565.48; }
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.progress-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    animation: numberPulse 2s ease-in-out infinite;
}

.progress-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

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

/* Gradient Definition for SVG */
.impact-section::after {
    content: '';
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
}

/* Floating Particles */
.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px, 250px 250px, 180px 180px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 60px 0;
    }
    
    .impact-title {
        font-size: 2.5rem;
    }
    
    .impact-subtitle {
        font-size: 1.1rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-card {
        padding: 30px 20px;
    }
    
    .counter {
        font-size: 2.5rem;
    }
    
    .counter-suffix {
        font-size: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .visualization-circle {
        width: 150px;
        height: 150px;
    }
    
    .progress-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .impact-title {
        font-size: 2rem;
    }
    
    .impact-card {
        padding: 25px 15px;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .visualization-circle {
        width: 120px;
        height: 120px;
    }
    
    .progress-number {
        font-size: 1.5rem;
    }
}

/* Our Impact Showcase - Unique Design with Animations */
.impact-showcase {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    padding: 100px 0;
}

.impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px, 250px 250px, 180px 180px;
    animation: particleFloat 20s linear infinite;
}

.energy-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

@keyframes waveMove {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.impact-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.impact-header {
    text-align: center;
    margin-bottom: 80px;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: badgePulse 2s ease-in-out infinite;
}

.impact-badge i {
    font-size: 1.1rem;
}

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

.impact-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    margin-bottom: 20px;
}

.impact-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.impact-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.impact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.3);
}

.card-visual {
    position: relative;
    margin-bottom: 30px;
}

.card-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.circle-progress {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle-progress svg {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
}

.progress-fill {
    fill: none;
    stroke: url(#progressGradient);
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.circle-content .number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    animation: numberGlow 2s ease-in-out infinite alternate;
}

.circle-content .suffix {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4ecdc4;
}

@keyframes numberGlow {
    0% { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    100% { text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6); }
}

.card-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.card-info h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.impact-card:hover .card-glow {
    opacity: 1;
}

.impact-highlight {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    animation: highlightPulse 4s ease-in-out infinite;
}

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

.highlight-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    animation: trophyRotate 4s ease-in-out infinite;
}

@keyframes trophyRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.highlight-text h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-showcase {
        padding: 80px 0;
    }
    
    .impact-title {
        font-size: 2.5rem;
    }
    
    .impact-subtitle {
        font-size: 1.1rem;
    }
    
    .impact-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .impact-card {
        padding: 30px 20px;
    }
    
    .highlight-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .highlight-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .impact-title {
        font-size: 2rem;
    }
    
    .impact-card {
        padding: 25px 15px;
    }
    
    .circle-content .number {
        font-size: 1.5rem;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .highlight-text h3 {
        font-size: 1.3rem;
    }
}

/* Admission Form Page Styles */
.admission-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    padding: 120px 0 80px 0;
}

.admission-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.admission-bg .floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.admission-bg .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(191,161,74,0.1), rgba(255,215,0,0.1));
    animation: float 6s ease-in-out infinite;
}

.admission-bg .shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.admission-bg .shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.admission-bg .shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.admission-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.admission-header {
    text-align: center;
    margin-bottom: 60px;
}

.admission-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: badgePulse 2s ease-in-out infinite;
}

.admission-badge i {
    font-size: 1.1rem;
}

.admission-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    margin-bottom: 20px;
}

.admission-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.admission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-container {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.admission-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.section-title i {
    color: #4ecdc4;
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 45px 15px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    pointer-events: none;
}

.form-group textarea + .input-icon {
    top: 25px;
    transform: none;
}

/* File Upload Styling */
.file-upload-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-container input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.file-upload-label i {
    font-size: 1.2rem;
    color: #4ecdc4;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.submit-btn,
.reset-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.submit-btn {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    color: #fff;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.reset-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.reset-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Info Sidebar */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card,
.contact-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
}

.info-icon,
.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #fff;
}

.info-card h3,
.contact-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.info-list li i {
    color: #4ecdc4;
    font-size: 0.9rem;
}

.contact-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.contact-item i {
    color: #4ecdc4;
    font-size: 1rem;
}

/* Active Navigation Link */
.nav-links a.active {
    color: #4ecdc4;
    font-weight: 600;
}

/* Error and Success Messages */
.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #fff;
}

.modal-header {
    margin-bottom: 30px;
}

.success-icon {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.modal-body {
    margin-bottom: 30px;
}

.modal-body p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.application-details {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.application-details p {
    margin: 10px 0;
    color: rgba(255,255,255,0.9);
}

.application-details strong {
    color: #4ecdc4;
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.modal-btn:first-child {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.home-btn {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    color: #fff;
}

.modal-btn:hover {
    transform: translateY(-2px);
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 15px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    border-left: 4px solid #ff6b6b;
}

.notification.success {
    border-left: 4px solid #4ecdc4;
}

.notification i {
    font-size: 1.2rem;
}

.notification.error i {
    color: #ff6b6b;
}

.notification.success i {
    color: #4ecdc4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .admission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .admission-hero {
        padding: 100px 0 60px 0;
    }
    
    .admission-title {
        font-size: 2.5rem;
    }
    
    .admission-subtitle {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .submit-btn,
    .reset-btn {
        width: 100%;
        justify-content: center;
    }
    
    .info-card,
    .contact-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .admission-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .form-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 40px 12px 12px;
        font-size: 0.95rem;
    }
}

/* About Section Styles - Matching Image Design */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

/* Left Column - Teal Background */
.about-left {
    background: #20b2aa;
    position: relative;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

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

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.circular-image-frame {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.lab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    text-align: center;
}

.banner-content {
    margin-bottom: 15px;
}

.welcome-text {
    font-size: 2rem;
    font-weight: 800;
    color: #dc3545;
    margin: 0 0 5px 0;
    text-shadow: none;
}

.vce-text {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.full-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0066cc;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.proprietor {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.banner-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.iso-logo {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
    border: 2px solid #0066cc;
}

.iso-logo span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0066cc;
}

.computer-icon {
    color: #0066cc;
    font-size: 1.5rem;
}

.deity-emblem {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffd700;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gear-icon {
    position: absolute;
    top: 20%;
    left: 10%;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.beaker-icon {
    position: absolute;
    bottom: 30%;
    left: 15%;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.8rem;
    animation: float 8s ease-in-out infinite;
}

.chart-icon {
    position: absolute;
    bottom: 20%;
    right: 20%;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.8rem;
    animation: float 7s ease-in-out infinite;
}

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

/* Bottom Graphic */
.bottom-graphic {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wave-shape {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(32, 178, 170, 0.3), transparent);
    border-radius: 50%;
}

.student-figures {
    display: flex;
    gap: 30px;
    align-items: center;
}

.figure {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: bounce 2s ease-in-out infinite;
}

.figure-1 { animation-delay: 0s; }
.figure-2 { animation-delay: 0.3s; }
.figure-3 { animation-delay: 0.6s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Right Column - White Background */
.about-right {
    background: white;
    padding: 60px 40px;
    display: flex;
    align-items: center;
}

.about-content {
    width: 100%;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #20b2aa;
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight i {
    color: #20b2aa;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.highlight span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-left {
        padding: 40px 20px;
        min-height: 500px;
    }
    
    .about-right {
        padding: 40px 20px;
    }
    
    .about-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .circular-image-frame {
        width: 300px;
        height: 300px;
    }
    
    .welcome-text {
        font-size: 1.5rem;
    }
    
    .full-name {
        font-size: 1rem;
    }
    
    .about-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .bottom-graphic {
        height: 80px;
    }
    
    .student-figures {
        gap: 20px;
    }
    
    .figure {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Certificate Verification Section - Advanced Design with Full Animations */
.cert-verify-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Animations */
.cert-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-cert-1, .floating-cert-2, .floating-cert-3, .floating-cert-4 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    animation: floatCert 20s infinite linear;
}

.floating-cert-1 {
    width: 80px;
    height: 60px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-cert-2 {
    width: 100px;
    height: 70px;
    top: 20%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.floating-cert-3 {
    width: 60px;
    height: 50px;
    bottom: 30%;
    left: 15%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.floating-cert-4 {
    width: 90px;
    height: 65px;
    bottom: 20%;
    right: 20%;
    animation-delay: -15s;
    animation-duration: 35s;
}

.verification-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: sparkle 15s linear infinite;
}

@keyframes floatCert {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

@keyframes sparkle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Main Container */
.cert-verify-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Header Section */
.cert-verify-header {
    text-align: center;
    margin-bottom: 60px;
    animation: slideInDown 1s ease-out;
}

.verify-badge-animated {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.verify-badge-animated i {
    margin-right: 10px;
    color: #ffd700;
    font-size: 1.2rem;
    animation: bounce 1s infinite;
}

.verify-badge-animated span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

.verify-title-animated {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
    background: linear-gradient(45deg, #fff, #ffd700, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite, fadeInUp 1s ease-out 0.3s both;
}

.verify-subtitle-animated {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Main Content Grid */
.cert-verify-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Certificate Preview */
.cert-preview-container {
    display: flex;
    justify-content: center;
    animation: slideInLeft 1s ease-out 0.9s both;
}

.cert-preview-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

.cert-preview-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-15px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.cert-glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    border-radius: 25px;
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cert-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 1s ease-out 1.2s both;
}

.cert-preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.cert-preview-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Verification Features */
.cert-verification-features {
    animation: slideInRight 1s ease-out 1.2s both;
}

.verification-steps-container {
    margin-bottom: 40px;
}

.steps-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.verification-steps {
    position: relative;
}

.step-item-animated {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    animation: slideInRight 1s ease-out both;
}

.step-item-animated:nth-child(1) { animation-delay: 1.8s; }
.step-item-animated:nth-child(2) { animation-delay: 2.1s; }
.step-item-animated:nth-child(3) { animation-delay: 2.4s; }

.step-number-animated {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    animation: bounce 1s infinite;
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #ffd700, #ffed4e);
    z-index: 1;
}

.step-item-animated:last-child .step-connector {
    display: none;
}

.step-content-animated h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.step-content-animated p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

/* Feature Grid */
.verification-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card-animated {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    animation: fadeInUp 1s ease-out both;
}

.feature-card-animated:nth-child(1) { animation-delay: 2.7s; }
.feature-card-animated:nth-child(2) { animation-delay: 3.0s; }
.feature-card-animated:nth-child(3) { animation-delay: 3.3s; }
.feature-card-animated:nth-child(4) { animation-delay: 3.6s; }

.feature-card-animated:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-animated {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: #333;
    font-size: 1.3rem;
    animation: rotate 2s linear infinite;
}

.feature-card-animated h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.feature-card-animated p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Trust Indicators */
.trust-indicators-animated {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.trust-item-animated {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 3.9s both;
}

.trust-item-animated:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.trust-item-animated i {
    margin-right: 10px;
    color: #ffd700;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.trust-item-animated span {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Action Button */
.verify-action-container {
    text-align: center;
    animation: fadeInUp 1s ease-out 4.2s both;
}

.verify-main-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 20px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bounce 2s infinite 4.5s;
}

.verify-main-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.6);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.button-content i {
    margin-right: 12px;
    font-size: 1.3rem;
    animation: bounce 1s infinite;
}

.button-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s;
}

.verify-main-button:hover .button-shine-effect {
    left: 100%;
}

.button-ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
}

.verify-main-button:active .button-ripple-effect {
    width: 300px;
    height: 300px;
}

/* Animations */
@keyframes slideInDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes drawLine {
    from { width: 0; }
    to { width: 150px; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cert-verify-content {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .cert-verify-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .cert-preview-card {
        transform: none;
        max-width: 600px;
    }
    
    .cert-preview-card:hover {
        transform: translateY(-10px);
    }
    
    .verification-features-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators-animated {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cert-verify-section {
        padding: 80px 15px;
    }
    
    .verify-title-animated {
        font-size: 2.5rem;
    }
    
    .verify-subtitle-animated {
        font-size: 1.1rem;
    }
    
    .cert-preview-card {
        padding: 30px;
    }
    
    .student-name-preview {
        font-size: 1.8rem;
    }
    
    .course-name-preview {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .verify-title-animated {
        font-size: 2rem;
    }
    
    .cert-preview-card {
        padding: 25px;
    }
    
    .step-item-animated {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number-animated {
        margin: 0 auto 15px auto;
    }
    
    .step-connector {
        display: none;
    }
    
    .trust-indicators-animated {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== COMPREHENSIVE MOBILE OPTIMIZATION ===== */

/* Mobile First Approach - Enhanced Mobile Styles */
@media (max-width: 768px) {
    /* Global Mobile Reset */
    * {
        box-sizing: border-box;
    }
    
    body {
        font-size: 16px;
        line-height: 1.5;
        overflow-x: hidden;
    }
    
    /* Container Widths */
    .container, .wrapper, .section {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }
    /* Header and Navigation Mobile Optimization */
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        padding: 0;
    }
    
    .navbar {
        padding: 0.8rem 4%;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        display: flex;
        align-items: center;
    }
    
    .logo h1 {
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    .logo img {
        height: 35px;
        width: auto;
        margin-right: 8px;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        list-style: none;
        margin: 0;
        gap: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1.2rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        border-radius: 10px;
        transition: all 0.3s ease;
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
    }
    
    .nav-links a:hover {
        background: var(--gradient-primary);
        color: white;
        transform: translateX(10px);
    }
    
    .verify-cert-btn {
        background: var(--gradient-primary) !important;
        color: white !important;
        padding: 1rem 2rem !important;
        border-radius: 25px !important;
        margin: 1rem 0 !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 1.1rem !important;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Showcase Mobile - REMOVED DUPLICATE, using the professional version above */
    
    .showcase-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        z-index: 2;
        width: 90%;
        max-width: 500px;
    }
    
    .showcase-content h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .showcase-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .cta-button {
        display: inline-block;
        padding: 15px 30px;
        background: var(--gradient-primary);
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .showcase-controls {
        position: relative;
        bottom: auto;
        margin-top: 15px;
        margin-bottom: 20px;
        left: auto;
        transform: none;
        z-index: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 15px;
    }
    
    .showcase-indicators {
        display: flex;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 25px;
        backdrop-filter: blur(10px);
    }
    
    .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .indicator.active {
        background: white;
        transform: scale(1.2);
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 60px 15px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left {
        padding: 30px 20px;
    }
    
    .about-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .circular-image-frame {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }
    
    .lab-image {
        width: 180px;
        height: 180px;
    }
    
    .about-right {
        padding: 20px;
    }
    
    .about-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .highlight {
        padding: 15px;
        text-align: center;
    }
    
    .highlight i {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    /* Course Banner Mobile */
    .course-banner {
        padding: 40px 15px;
    }
    
    .banner-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    /* Courses Section Mobile - Auto Size */
    .courses {
        padding: 60px 15px;
        width: 100%;
        background: var(--background);
    }
    
    .courses-header {
        text-align: center;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .courses-header h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        color: var(--text-color);
        font-weight: 700;
    }
    
    .courses-header p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        color: #666;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .modern-courses {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 25px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .modern-course-card {
        height: auto;
        min-height: 400px;
        width: 100%;
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .modern-course-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .flip-card-inner {
        width: 100%;
        min-height: 400px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.6s;
    }
    
    .modern-course-card:active .flip-card-inner {
        transform: rotateY(180deg);
    }
    
    .modern-course-card:hover {
        transform: none;
    }
    
    .flip-card-front,
    .flip-card-back {
        position: absolute;
        width: 100%;
        min-height: 400px;
        backface-visibility: hidden;
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .flip-card-back {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start !important;
        padding: 1.2rem 15px 1.2rem 15px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        transform: rotateY(180deg);
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
    }
    
    .course-image-front {
        text-align: center;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .course-image-front img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        object-fit: fill !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 15px 15px 0 0;
    }
    
    /* Make flip card front images full width on mobile - NO MARGINS */
    .flip-card-front img {
        width: 100% !important;
        height: 100% !important;
        object-fit: fill !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .flip-card-front {
        padding: 0 !important;
        margin: 0 !important;
        align-items: stretch !important;
    }
    
    .course-info-back {
        text-align: center;
        padding: 0.8rem 0.8rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
        overflow: hidden !important;
        justify-content: center !important;
        min-height: 0 !important;
    }
    
    .course-name {
        font-size: 1.8rem !important;
        padding: 0 0.6rem !important;
        margin: 0 0 0.4rem 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        box-sizing: border-box !important;
        flex-shrink: 1 !important;
        line-height: 1.1 !important;
    }
    
    .course-info-list {
        list-style: none;
        padding: 0 0.4rem !important;
        margin: 0 !important;
        font-size: 0.7rem !important;
        flex: 1 !important;
        min-height: 0 !important;
        line-height: 1.2 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        grid-template-columns: 1fr !important;
        gap: 0.25rem !important;
    }
    
    .course-info-list li {
        margin-bottom: 3px !important;
        padding: 2px 0.3rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.65rem !important;
    }
    
    .course-info-list li:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    /* Gallery Section Mobile */
    .gallery {
        padding: 60px 15px;
    }
    
    .gallery-header h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .see-more-button {
        padding: 12px 25px;
        font-size: 1rem;
        margin-top: 30px;
    }
    
    /* Team Section Mobile */
    .team {
        padding: 60px 15px;
    }
    
    .team h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .team-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-member {
        text-align: center;
    }
    
    .member-image {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .member-info h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .member-info .position {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    /* Impact Section Mobile */
    .impact-showcase {
        padding: 60px 15px;
    }
    
    .impact-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .impact-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .impact-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .impact-card {
        padding: 30px 20px;
    }
    
    .card-visual {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .card-circle {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto 20px !important;
        position: relative;
    }
    
    .circle-progress {
        width: 100% !important;
        height: 100% !important;
        position: relative;
    }
    
    .circle-progress svg {
        width: 120px !important;
        height: 120px !important;
        transform: rotate(-90deg) !important;
    }
    
    .progress-bg {
        fill: none !important;
        stroke: rgba(255,255,255,0.1) !important;
        stroke-width: 8 !important;
    }
    
    .progress-fill {
        fill: none !important;
        stroke: url(#progressGradient) !important;
        stroke-width: 8 !important;
        stroke-linecap: round !important;
        transition: stroke-dashoffset 2s ease !important;
    }
    
    .circle-content {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
        color: #fff !important;
        z-index: 2 !important;
    }
    
    .circle-content .number {
        font-size: 2rem !important;
        font-weight: 700 !important;
        display: block !important;
    }
    
    .circle-content .suffix {
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: #4ecdc4 !important;
    }
    
    .number {
        font-size: 2rem !important;
        font-weight: 700 !important;
    }
    
    .card-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        position: absolute !important;
        top: -10px !important;
        right: -10px !important;
    }
    
    .card-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .card-info p {
        font-size: 0.9rem;
    }
    
    /* Certificate Verification Mobile */
    .cert-verify-section {
        padding: 60px 15px;
        min-height: auto;
    }
    
    .verify-title-animated {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .verify-subtitle-animated {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .cert-verify-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cert-preview-card {
        transform: none;
        max-width: 100%;
        padding: 20px;
    }
    
    .cert-preview-card:hover {
        transform: translateY(-5px);
    }
    
    .cert-preview-image {
        width: 100%;
        height: auto;
    }
    
    .verification-steps-container {
        margin-bottom: 30px;
    }
    
    .steps-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .step-item-animated {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .step-number-animated {
        margin: 0 auto 15px auto;
    }
    
    .step-connector {
        display: none;
    }
    
    .verification-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card-animated {
        padding: 20px;
    }
    
    .trust-indicators-animated {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .verify-main-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Find Us Section Mobile */
    .luxury-findus-section {
        padding: 60px 15px;
    }
    
    .luxury-findus-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .luxury-findus-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .luxury-findus-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .luxury-findus-contact-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .luxury-findus-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .luxury-findus-btn {
        padding: 12px 25px;
        font-size: 1rem;
        text-align: center;
    }
    
    .luxury-map-glass {
        height: 250px;
    }
    
    /* Footer Mobile */
    .luxury-footer {
        padding: 40px 15px 20px;
    }
    
    .luxury-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    
    .footer-brand-text h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .footer-brand-text p {
        font-size: 0.9rem;
    }
    
    .footer-col h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-col ul li {
        margin-bottom: 8px;
    }
    
    .footer-col ul li a {
        font-size: 0.95rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .luxury-footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        text-align: center;
    }
    
    .luxury-footer-bottom p {
        font-size: 0.9rem;
    }
}

/* Additional Mobile Auto-Sizing Rules */
@media (max-width: 768px) {
    /* Ensure all images scale properly */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Auto-size all text elements */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Auto-size all containers */
    .container, .wrapper, .section, .content {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Auto-size all grids */
    .grid, .grid-container, .row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    /* Auto-size all flex containers */
    .flex, .flex-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    
    /* Auto-size all buttons */
    .btn, .button, button {
        width: 100% !important;
        max-width: 300px !important;
        margin: 10px auto !important;
        padding: 15px 20px !important;
        font-size: 1rem !important;
        text-align: center !important;
    }
    
    /* Auto-size all forms */
    input, textarea, select {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }
    
    /* Auto-size all cards */
    .card, .item, .box {
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px 0 !important;
        padding: 20px !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 3%;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-links {
        top: 50px;
        height: calc(100vh - 50px);
        padding-top: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hero {
        margin-top: 60px !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 0 !important;
        overflow: visible !important;
    }
    
    .showcase-container {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .showcase-slide {
        position: relative !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .showcase-background {
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 0 !important;
    }
    
    .showcase-background img {
        height: auto !important;
        width: 100% !important;
        object-fit: contain !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .circular-image-frame {
        width: 150px;
        height: 150px;
    }
    
    .lab-image {
        width: 130px;
        height: 130px;
    }
    
    .about-heading {
        font-size: 1.8rem;
    }
    
    .courses-header h2,
    .gallery-header h2,
    .team h2,
    .impact-title,
    .verify-title-animated {
        font-size: 1.8rem;
    }
    
    .modern-courses {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .team-container {
        max-width: 300px;
    }
    
    .member-image {
        height: 200px;
    }
    
    .impact-cards {
        gap: 20px;
    }
    
    .impact-card {
        padding: 20px 15px;
    }
    
    .card-circle {
        width: 80px;
        height: 80px;
    }
    
    .circle-progress svg {
        width: 60px;
        height: 60px;
    }
    
    .number {
        font-size: 1.5rem;
    }
    
    .luxury-findus-title {
        font-size: 1.5rem;
    }
    
    .luxury-map-glass {
        height: 200px;
    }
}