/* ===== CSS VARIABLES ===== */
:root {
    --primary-blue: #0066cc;
    --primary-green: #00cc66;
    --primary-orange: #ff9900;
    --primary-purple: #9933cc;
    --primary-pink: #ff3399;
    --dark-blue: #1a3a5c;
    --light-blue: #e6f2ff;
    --text-dark: #2c3e50;
    --text-light: #666;
    --white: #ffffff;
    --gray: #f4f4f4;
    --border: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s;
}

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

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-blue);
    background: var(--light-blue);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 80px 0;
}

.hero-banner .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===== SPECIALIZED AREAS ===== */
.specialized-areas {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.area-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.area-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.area-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* ===== CONSULTANCY SERVICES ===== */
.consultancy-services {
    padding: 80px 0;
    background: var(--gray);
}

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

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card h3 i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.about-text h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.personal-details {
    padding: 60px 0;
    background: var(--gray);
}

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

.detail-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.detail-item .label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.detail-item .value {
    color: var(--text-dark);
}

/* ===== QUALIFICATIONS ===== */
.qualifications {
    padding: 80px 0;
}

.qualifications-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.qualification-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.qualification-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.qualification-item i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.qualification-item h3 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.qualification-item p {
    color: var(--text-light);
}

/* ===== MEMBERSHIPS ===== */
.memberships {
    padding: 60px 0;
    background: var(--gray);
}

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

.membership-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.membership-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.membership-card h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.membership-card p {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===== EXPERIENCE TIMELINE ===== */
.experience-timeline {
    padding: 80px 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: -50px;
    width: 2px;
    /* background: var(--border); */
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-date {
    min-width: 150px;
    font-weight: 600;
    color: var(--primary-blue);
    padding-top: 5px;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-blue);
}

.timeline-content h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.timeline-content .organization {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.timeline-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.timeline-content h5 {
    color: var(--dark-blue);
    margin: 20px 0 10px;
}

.timeline-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.timeline-content li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.timeline-content li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== PROJECTS PAGE ===== */
.projects-grid {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    /* padding: 30px; */
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.project-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.project-card h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.project-period {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.project-description {
    color: var(--text-light);
    margin-bottom: 15px;
    flex: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.project-link:hover {
    gap: 15px;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.modal-content {
    background: var(--white);
    margin: 50px auto;
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    width: 90%;
    position: relative;
    animation: modalSlide 0.3s;
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.modal-period,
.modal-organization {
    color: var(--text-light);
    margin-bottom: 10px;
}

.modal-period i,
.modal-organization i {
    margin-right: 8px;
    color: var(--primary-blue);
}

.modal-details h3 {
    color: var(--dark-blue);
    margin: 25px 0 15px;
}

.modal-details ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-details li {
    margin-bottom: 8px;
}

/* ===== SPORTS PAGE ===== */
.sports-intro {
    padding: 60px 0;
    background: var(--light-blue);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.martial-arts,
.sports-activities,
.community-leadership {
    padding: 80px 0;
}

.martial-arts {
    background: var(--white);
}

.sports-activities {
    background: var(--gray);
}

.community-leadership {
    background: var(--white);
}

.martial-art-card,
.sport-card,
.leadership-card {
    background: var(--white);
    border-radius: 10px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.martial-art-header,
.leadership-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.martial-art-header i,
.leadership-header i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.martial-art-header h3,
.leadership-header h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
}

.martial-art-content h4,
.sport-card h4 {
    color: var(--dark-blue);
    margin: 20px 0 10px;
}

.martial-art-content ul,
.sport-card ul {
    list-style: none;
}

.martial-art-content li,
.sport-card li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.martial-art-content li i,
.sport-card li i {
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

.achievement-box {
    background: var(--light-blue);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-blue);
}

.achievement-box h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.connection {
    margin-top: 20px;
    padding: 15px;
    background: var(--gray);
    border-radius: 8px;
    font-style: italic;
}

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

.sport-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sport-icon i {
    font-size: 2rem;
    color: var(--white);
}

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

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: var(--light-blue);
    border-radius: 8px;
}

.skill-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* ===== SPORTS PHILOSOPHY ===== */
.sports-philosophy {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
}

.philosophy-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-box i {
    font-size: 3rem;
    opacity: 0.3;
    margin: 0 20px;
}

.philosophy-box blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin: 30px 0;
    line-height: 1.8;
}

.philosophy-statement {
    font-size: 1.2rem;
    margin-top: 30px;
    opacity: 0.95;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

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

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 40px;
}

.contact-item h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.services-available h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.services-available ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-available ul li i {
    color: var(--primary-green);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form {
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message i {
    font-size: 1.5rem;
}

.map-section {
    padding: 60px 0;
    background: var(--gray);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.7;
}

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

.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: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a,
.footer-section ul li {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-section ul li a:hover,
.footer-section ul li:hover {
    color: var(--white);
}

.footer-section ul li i {
    margin-right: 10px;
    width: 20px;
}

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

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 5px;
}

.tagline {
    color: var(--primary-green) !important;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero-banner .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-date {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 10px;
    }
    
    .main-nav ul.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .areas-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 20px auto;
        padding: 25px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
/* ===== PROJECTS 4-GRID CREATIVE STYLES ===== */

.projects-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--primary-purple) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.projects-header::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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.projects-grid-4 {
    padding: 80px 0;
    background: var(--gray);
}

.project-card-4 {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card-4:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.project-icon-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    position: relative;
}

.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card-4:hover .project-overlay {
    opacity: 1;
}

.view-project {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.project-card-4:hover .view-project {
    transform: translateY(0);
}

.project-content-4 {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.project-year {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.project-category-tag {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-title {
    color: var(--dark-blue);
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.project-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    background: var(--gray);
    padding: 6px 12px;
    border-radius: 20px;
}

.stat-item i {
    color: var(--primary-blue);
}

/* ===== PROJECT DETAIL PAGE STYLES ===== */

.project-detail-header {
    padding: 120px 0 80px;
    position: relative;
}

.project-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 600;
    transition: gap 0.3s;
}

.back-link:hover {
    gap: 15px;
}

.project-header-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.project-icon-large {
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-header-info {
    flex: 1;
}

.project-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-header-info h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.project-org,
.project-period-detail {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-detail-content {
    padding: 80px 0;
    background: var(--white);
}

.project-overview-section {
    margin-bottom: 60px;
}

.project-overview-section h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.project-overview-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border-radius: 2px;
}

.overview-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
}

.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-box {
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.project-sections-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.project-section {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.project-section h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-section h3 i {
    color: var(--primary-blue);
}

.objectives-list,
.achievements-list {
    list-style: none;
}

.objectives-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
}

.objectives-list li:last-child {
    border-bottom: none;
}

.objectives-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.achievements-list li {
    padding: 15px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid var(--border);
    line-height: 1.7;
}

.achievements-list li:last-child {
    border-bottom: none;
}

.achievements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.impact-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
    color: var(--white);
}

.impact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s;
}

.impact-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.impact-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 3px;
}

.impact-item span {
    font-size: 1.05rem;
    line-height: 1.6;
}

.technologies-section {
    margin-bottom: 60px;
}

.technologies-section h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-tag {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s;
}

.tech-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.project-cta {
    text-align: center;
    background: var(--gray);
    padding: 60px 40px;
    border-radius: 15px;
}

.project-cta h3 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

.project-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .project-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-sections-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .project-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .project-header-info h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .projects-grid-4 .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-card-4 {
        max-width: 100%;
    }
    
    .project-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* ===== PROJECTS PAGE STYLES ===== */

.projects-header {
    background: linear-gradient(135deg, #0066cc 0%, #6633cc 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.projects-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.projects-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filter Section */
.projects-filter-section {
    padding: 30px 0;
    background: #f8f9fa;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid #0066cc;
    background: white;
    color: #0066cc;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Projects Grid Section */
.projects-grid-section {
    padding: 60px 0;
    background: #f5f7fa;
}

/* 4-Column Grid Layout */
.projects-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.project-card-header {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.project-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .project-card-header::before {
    opacity: 1;
}

/* Gradient Backgrounds */
.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.project-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.project-year {
    color: #0066cc;
    font-weight: 600;
    font-size: 0.85rem;
}

.project-tag {
    background: #e3f2fd;
    color: #0066cc;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-title {
    font-size: 1.25rem;
    color: #1a3a5c;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.project-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.project-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
}

.stat i {
    color: #0066cc;
    font-size: 0.9rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
    margin-top: auto;
}

.project-link:hover {
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .projects-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .projects-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .projects-header h1 {
        font-size: 2rem;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* Animation for filtering */
.project-card {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== CREATIVE SLIDER STYLES ===== */

.creative-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

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

/* Slide Backgrounds */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gradient-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Particles Effect */
.slide-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 2;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 120px 20px 80px;
}

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

.slide-text-wrapper {
    color: white;
}

.slide-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-title .highlight {
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-profession {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.95;
    opacity: 0;
    transform: translateY(30px);
}

.slide-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(30px);
}

/* CTA Buttons */
.slide-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #667eea;
}

/* Visual Elements */
.slide-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    z-index: 10;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
}

.circle-1 {
    width: 400px;
    height: 400px;
    animation: pulse 3s ease-in-out infinite;
}

.circle-2 {
    width: 500px;
    height: 500px;
    animation: pulse 3s ease-in-out infinite 0.5s;
}

.circle-3 {
    width: 600px;
    height: 600px;
    animation: pulse 3s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s;
}

.expertise-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px) !important;
}

.expertise-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

.expertise-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* Expertise Visual */
.expertise-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.visual-icon {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    animation: float 3s ease-in-out infinite;
}

.visual-icon:nth-child(2) { animation-delay: 0.5s; }
.visual-icon:nth-child(3) { animation-delay: 1s; }
.visual-icon:nth-child(4) { animation-delay: 1.5s; }

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.stat-box {
    background: rgba(255,255,255,0.15);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    opacity: 0;
    transform: scale(0.8);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Timeline Visual */
.timeline-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

.timeline-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 10px rgba(255,255,255,0.3);
}

.timeline-line {
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.5);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.timeline-badge {
    position: absolute;
    background: white;
    color: #333;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.timeline-badge:first-of-type {
    top: 20%;
    left: 0;
}

.timeline-badge:last-of-type {
    bottom: 20%;
    right: 0;
}

/* Services Carousel */
.services-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.service-card-slider {
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s;
}

.service-card-slider:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px) !important;
}

.service-card-slider i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.service-card-slider h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card-slider p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.05rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: #ffd700;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 100;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: white;
    color: #667eea;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(255,255,255,0.5);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.1);
    z-index: 100;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: white;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Quick Info Section */
.quick-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.info-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #1a3a5c;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Animations */
.animate-text,
.animate-float,
.animate-rotate,
.animate-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate 20s linear infinite;
}

.animate-scale {
    animation: scale 3s ease-in-out infinite;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slide-text-wrapper {
        order: 1;
    }
    
    .slide-visual {
        order: 0;
        margin-bottom: 40px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .expertise-grid,
    .stats-container,
    .services-carousel {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .creative-slider {
        min-height: 600px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-profession {
        font-size: 1.2rem;
    }
    
    .main-logo {
        width: 250px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* ===== ADDITIONAL HOMEPAGE SECTIONS ===== */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: #0066cc;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: #1a3a5c;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #6633cc);
    margin: 0 auto;
    border-radius: 2px;
}

/* Specialized Areas */
.specialized-areas {
    padding: 100px 0;
    background: #f8f9fa;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.area-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #0066cc;
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #6633cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.area-icon i {
    font-size: 2rem;
    color: white;
}

.area-card h3 {
    color: #1a3a5c;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Consultancy Services */
.consultancy-services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15;
}
/* ===== MODERN UI DESIGN STYLES ===== */

/* Hero Section */
.modern-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-greeting {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-rounded {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #667eea;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

.floating-badge {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #667eea;
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: 0;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: 0;
    animation-delay: 2s;
}

.floating-badge i {
    font-size: 1.5rem;
    color: #f093fb;
}

/* Quick Info Section */
.quick-info-section {
    padding: 80px 0 60px;
    background: #f8f9fa;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-card h3 {
    color: #1a3a5c;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: #1a3a5c;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    margin: 0 auto;
    border-radius: 2px;
}

/* Specialized Areas */
.specialized-section {
    padding: 100px 0;
    background: white;
}

.areas-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.area-card-modern {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.area-card-modern:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.area-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.area-icon-wrapper i {
    font-size: 1.8rem;
    color: white;
}

.area-card-modern h3 {
    color: #1a3a5c;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-modern {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card-modern h3 {
    color: #1a3a5c;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card-modern > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.service-features li i {
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content .section-tag,
.why-content .section-title,
.why-content .section-line {
    text-align: left;
}

.why-content .section-line {
    margin: 15px 0 25px;
}

.why-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.why-features-modern {
    margin-bottom: 40px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.why-feature-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-text h4 {
    color: #1a3a5c;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats */
.why-stats-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.8rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-modern-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #0066cc 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-modern > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #0066cc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #0066cc;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .info-cards-grid,
    .areas-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .why-grid-modern {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-stats-modern {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .info-cards-grid,
    .areas-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .why-stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content-modern h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .why-stats-modern {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
    }
    
    .btn-rounded {
        width: 100%;
        justify-content: center;
    }
}
/* ===== MODERN HERO SLIDER STYLES ===== */

.modern-hero-slider {
    position: relative;
    height: 100vh;
    min-height: 750px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

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

/* Slide Backgrounds */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 50%, #fa709a 100%);
}

.slide-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 2;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 120px 20px 80px;
}

.center-content {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
}

.slide-greeting {
    display: inline-block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s 0.2s forwards;
}

.slide-title .highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-profession {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s 0.4s forwards;
}

.slide-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s 0.6s forwards;
}

.slide-buttons, .cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s 0.8s forwards;
}

.btn-rounded {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #667eea;
}

/* Visual Elements */
.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.main-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #667eea;
    font-size: 0.9rem;
    animation: float 4s ease-in-out infinite;
}

.badge-experience {
    top: 20px;
    right: 0;
    animation-delay: 0s;
}

.badge-expert {
    bottom: 40px;
    left: 0;
    animation-delay: 2s;
}

.floating-badge i {
    font-size: 1.3rem;
    color: #f093fb;
}

/* Expertise Showcase */
.expertise-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s forwards;
}

.expertise-item:nth-child(1) { animation-delay: 0.5s; }
.expertise-item:nth-child(2) { animation-delay: 0.6s; }
.expertise-item:nth-child(3) { animation-delay: 0.7s; }
.expertise-item:nth-child(4) { animation-delay: 0.8s; }
.expertise-item:nth-child(5) { animation-delay: 0.9s; }
.expertise-item:nth-child(6) { animation-delay: 1.0s; }

.expertise-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

.expertise-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.5s; }
.stat-card:nth-child(2) { animation-delay: 0.6s; }
.stat-card:nth-child(3) { animation-delay: 0.7s; }
.stat-card:nth-child(4) { animation-delay: 0.8s; }

.stat-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

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

/* Services Showcase */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.service-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s forwards;
}

.service-box:nth-child(1) { animation-delay: 0.5s; }
.service-box:nth-child(2) { animation-delay: 0.6s; }
.service-box:nth-child(3) { animation-delay: 0.7s; }
.service-box:nth-child(4) { animation-delay: 0.8s; }

.service-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Showcase */
.contact-showcase {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px auto;
    max-width: 500px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.5s; }
.contact-item:nth-child(2) { animation-delay: 0.6s; }
.contact-item:nth-child(3) { animation-delay: 0.7s; }

.contact-item i {
    font-size: 1.3rem;
    color: #ffd700;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 100;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: white;
    color: #667eea;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slide-visual {
        display: none;
    }
    
    .slide-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .slide-buttons, .cta-buttons {
        justify-content: center;
    }
    
    .expertise-showcase {
        max-width: 600px;
        margin: 30px auto;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 30px auto;
    }
    
    .services-showcase {
        max-width: 700px;
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    .modern-hero-slider {
        min-height: 650px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-profession {
        font-size: 1.2rem;
    }
    
    .expertise-showcase,
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-showcase {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .slide-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-rounded {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* ===== WHATSAPP FLOATING BUTTON & MODAL ===== */

/* Floating Action Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Modal Overlay */
.whatsapp-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

/* Modal Content Box */
.whatsapp-modal-content {
    background-color: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Modal Header */
.whatsapp-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.whatsapp-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.whatsapp-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.whatsapp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.whatsapp-close:hover {
    color: #f1f1f1;
}

/* Modal Body */
.whatsapp-body {
    padding: 25px;
}

.whatsapp-body p {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.whatsapp-subtext {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 0.95rem !important;
    margin-bottom: 15px !important;
}

#whatsappMessage {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

#whatsappMessage:focus {
    outline: none;
    border-color: #25D366;
}

/* Modal Footer Buttons */
.whatsapp-footer {
    padding: 0 25px 25px 25px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-cancel, .btn-send {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-cancel {
    background-color: #f1f1f1;
    color: #333;
}

.btn-cancel:hover {
    background-color: #e0e0e0;
}

.btn-send {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-send:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .whatsapp-fab {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
    
    .whatsapp-footer {
        flex-direction: column;
    }
    
    .btn-cancel, .btn-send {
        width: 100%;
        justify-content: center;
    }
}

/* ===== CREATIVE HERO SLIDER STYLES ===== */

.creative-hero-slider {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

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

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 30%;
    animation-delay: 6s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.slide-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 120px 20px 80px;
}

.center-content {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

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

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
}

.highlight-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
}

.slide-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.btn-rounded {
    border-radius: 50px;
    padding: 16px 35px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #667eea;
}

/* Visual Elements */
.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float-logo 6s ease-in-out infinite;
}

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

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #667eea;
    font-size: 0.95rem;
    animation: float-card 4s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    left: 0;
    animation-delay: 2s;
}

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

.floating-card i {
    font-size: 1.5rem;
    color: #f093fb;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.3s;
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1) !important;
}

.item-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.item-icon i {
    font-size: 1.8rem;
    color: #ffd700;
}

.expertise-item h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1) !important;
}

.stat-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Services Showcase */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.service-card-slider {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s;
}

.service-card-slider:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) !important;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: #ffd700;
}

.service-card-slider h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card-slider p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 100;
}

.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: white;
    color: #667eea;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Quick Info Section */
.quick-info-section {
    padding: 80px 0 60px;
    background: #f8f9fa;
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-card h3 {
    color: #1a3a5c;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: #1a3a5c;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    margin: 0 auto;
    border-radius: 2px;
}

/* Specialized Areas */
.specialized-section {
    padding: 100px 0;
    background: white;
}

.areas-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.area-card-modern {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.area-card-modern:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.area-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.area-icon-wrapper i {
    font-size: 1.8rem;
    color: white;
}

.area-card-modern h3 {
    color: #1a3a5c;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-modern {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card-modern h3 {
    color: #1a3a5c;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card-modern > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.service-features li i {
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content .section-tag,
.why-content .section-title,
.why-content .section-line {
    text-align: left;
}

.why-content .section-line {
    margin: 15px 0 25px;
}

.why-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.why-features-modern {
    margin-bottom: 40px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.why-feature-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-text h4 {
    color: #1a3a5c;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats */
.why-stats-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.8rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-modern-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #0066cc 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-modern > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #0066cc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #0066cc;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slide-visual {
        display: none;
    }
    
    .slide-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .slide-cta {
        justify-content: center;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 40px auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 40px auto;
    }
    
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 40px auto;
    }
    
    .info-cards-grid,
    .areas-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid-modern {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-stats-modern {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .creative-hero-slider {
        min-height: 700px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .expertise-grid,
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards-grid,
    .areas-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .why-stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content-modern h2 {
        font-size: 2rem;
    }
    
    .slider-navigation {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .why-stats-modern {
        grid-template-columns: 1fr;
    }
    
    .slide-cta,
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-rounded {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* ===== EXPERIENCE PAGE MODERN STYLES ===== */

/* Experience Hero Section */
.experience-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffd700;
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

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

/* Timeline Section */
.experience-timeline-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #f093fb 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    left: 35px;
    top: 30px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 4px solid #f8f9fa;
    box-shadow: 0 0 0 3px #667eea;
}

.timeline-marker i {
    color: white;
    font-size: 1rem;
}

.timeline-content {
    margin-left: 100px;
}

.timeline-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    color: white;
    position: relative;
}

.header-info {
    padding-right: 100px;
}

.duration {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.position {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.organization {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 10px;
}

.org-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    opacity: 0.9;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.org-link:hover {
    opacity: 1;
}

.header-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #10b981;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.header-badge.current {
    background: #10b981;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.project-funding {
    display: inline-block;
    background: rgba(255, 215, 0, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    color: #ffd700;
}

.card-body {
    padding: 30px;
}

.org-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.responsibilities h5 {
    color: #1a3a5c;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.responsibility-list {
    list-style: none;
    margin-bottom: 25px;
}

.responsibility-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.responsibility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Education Section */
.education-section {
    padding: 100px 0;
    background: white;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.education-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.education-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.education-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.edu-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.edu-icon i {
    font-size: 2rem;
    color: white;
}

.education-card h3 {
    color: #1a3a5c;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.education-card .institution {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 5px;
}

.education-card .grade {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Memberships Section */
.memberships-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 20px;
    color: white;
}

.subsection-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.membership-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.membership-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.membership-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.membership-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.membership-code {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.skill-category {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.skill-category.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
}

.skill-category h3 {
    color: #1a3a5c;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skill-item {
    background: #f0f4ff;
    color: #667eea;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.skill-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-item {
        padding: 15px 20px;
    }
    
    .timeline-content {
        margin-left: 80px;
    }
    
    .education-grid,
    .memberships-grid,
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .experience-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 5px;
    }
    
    .timeline-content {
        margin-left: 50px;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .position {
        font-size: 1.2rem;
    }
    
    .header-badge {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }
    
    .header-info {
        padding-right: 0;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .education-grid,
    .memberships-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .memberships-section {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .skills-tags {
        flex-direction: column;
    }
    
    .tag {
        text-align: center;
    }
}
/* ===== MODERN UNIQUE HEADER STYLES ===== */

/* Header Base */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

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

.header-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.modern-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(102, 126, 234, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== UNIQUE LOGO DESIGN ===== */

.logo-section {
    position: relative;
    z-index: 10;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.logo-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Animated Rings */
.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-top-color: #667eea;
    border-right-color: #764ba2;
    animation: spin-ring 3s linear infinite;
}

.ring-2 {
    width: 85%;
    height: 85%;
    border-bottom-color: #f093fb;
    border-left-color: #fa709a;
    animation: spin-ring 2.5s linear infinite reverse;
}

.ring-3 {
    width: 70%;
    height: 70%;
    border-top-color: #43e97b;
    border-right-color: #38f9d7;
    animation: spin-ring 2s linear infinite;
}

@keyframes spin-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Logo Glow Effect */
.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Logo Image */
.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
    transition: all 0.5s;
}

.logo-wrapper:hover .logo-img {
    filter: drop-shadow(0 8px 25px rgba(102, 126, 234, 0.5));
    transform: scale(1.05);
}

/* Logo Badge */
.logo-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
    animation: badge-bounce 2s ease-in-out infinite;
}

.logo-badge i {
    font-size: 0.7rem;
    color: #1a3a5c;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.1); }
}

/* Logo Text */
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    line-height: 1;
    position: relative;
}

.logo-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    transition: width 0.3s;
}

.logo-link:hover .logo-name::after {
    width: 100%;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #666;
    text-transform: uppercase;
}

/* ===== NAVIGATION ===== */

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: #1a3a5c;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.2) rotate(10deg);
}

.nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.nav-link.active .nav-icon {
    color: white;
}

.nav-icon {
    font-size: 1rem;
    color: #667eea;
    transition: all 0.3s;
}

.nav-text {
    position: relative;
}

.nav-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-link.active .nav-indicator {
    width: 30px;
}

/* ===== CTA BUTTON ===== */

.header-cta {
    margin-left: 20px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.cta-btn i {
    font-size: 1rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

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

/* ===== MOBILE TOGGLE ===== */

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.toggle-bar {
    width: 28px;
    height: 3px;
    background: #667eea;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-toggle.active .bar-1 {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active .bar-2 {
    opacity: 0;
}

.mobile-toggle.active .bar-3 {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== MOBILE NAVIGATION OVERLAY ===== */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 92, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.mobile-logo img {
    width: 60px;
    height: 60px;
}

.mobile-logo span {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    width: 100%;
    max-width: 400px;
}

.mobile-nav-list li {
    margin-bottom: 15px;
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(10px);
}

.mobile-nav-list a i {
    font-size: 1.3rem;
    width: 30px;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a3a5c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.mobile-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .cta-btn span {
        display: none;
    }
    
    .cta-btn {
        padding: 12px;
        border-radius: 50%;
    }
}

@media (max-width: 992px) {
    .main-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .logo-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo-text {
        display: none;
    }
    
    .modern-header {
        padding: 10px 0;
    }
}

/* ===== BODY MENU OPEN STATE ===== */

body.menu-open {
    overflow: hidden;
}

/* ===== SPORTS & LEADERSHIP SECTION ===== */

.sports-leadership-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sports-intro-box {
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sports-intro-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.sports-intro-box strong {
    color: #667eea;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.sports-category-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.sports-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.sports-category-card.highlight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.highlight-card .category-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.highlight-card .category-icon {
    background: rgba(255, 255, 255, 0.2);
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
}

.category-header h3 {
    font-size: 1.5rem;
    color: #1a3a5c;
    font-weight: 700;
}

.highlight-card .category-header h3 {
    color: white;
}

.martial-arts-content,
.sports-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.art-item,
.sport-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.art-item h4,
.sport-item h4 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.art-item h4 i,
.sport-item h4 i {
    font-size: 1.2rem;
}

.art-item ul,
.sport-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.art-item li,
.sport-item li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.art-item li::before,
.sport-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Leadership Content */
.leadership-content {
    color: white;
}

.leadership-role {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.leadership-role h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.leadership-role .organization {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

.leadership-activities,
.leadership-skills {
    margin-bottom: 25px;
}

.leadership-activities h5,
.leadership-skills h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.leadership-activities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leadership-activities li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.leadership-activities li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Sports Philosophy */
.sports-philosophy-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
    opacity: 0.3;
}

.sports-philosophy-box blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #1a3a5c;
    font-style: italic;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sports-philosophy-box blockquote strong {
    color: #667eea;
}

.philosophy-footer p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.philosophy-footer strong {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sports-grid {
        grid-template-columns: 1fr;
    }
    
    .sports-philosophy-box {
        padding: 35px;
    }
    
    .sports-philosophy-box blockquote {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .sports-leadership-section {
        padding: 60px 0;
    }
    
    .sports-intro-box {
        padding: 25px;
    }
    
    .sports-category-card {
        padding: 25px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .sports-philosophy-box blockquote {
        font-size: 1rem;
    }
}

/* ===== CREATIVE CONTACT PAGE STYLES ===== */

/* Animated Hero Background */
.contact-creative-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float-blob 15s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #f093fb;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #4facfe;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #43e97b;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-text {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-creative-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-creative-hero .highlight-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-creative-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* Main Contact Wrapper */
.contact-main-wrapper {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 20;
    margin-top: -40px;
}

.contact-grid-creative {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

/* Left Panel: Info Nodes */
.contact-info-panel {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.info-header h2 {
    font-size: 2rem;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.info-header p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-nodes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.contact-node {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.contact-node:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.node-email:hover { border-color: #667eea; }
.node-whatsapp:hover { border-color: #25D366; }
.node-linkedin:hover { border-color: #0077b5; }
.node-location:hover { border-color: #f093fb; }

.node-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

.node-email .node-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.node-whatsapp .node-icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.node-linkedin .node-icon { background: linear-gradient(135deg, #0077b5, #00a0dc); }
.node-location .node-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }

.node-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.node-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.node-value {
    font-size: 1.05rem;
    color: #1a3a5c;
    font-weight: 600;
}

.node-arrow {
    color: #ccc;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.contact-node:hover .node-arrow {
    color: #667eea;
    transform: translateX(5px);
}

.response-badge {
    margin-top: 30px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e40af;
    font-size: 0.95rem;
}

.response-badge i {
    font-size: 1.2rem;
    color: #f59e0b;
}

/* Right Panel: Floating Form */
.contact-form-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-header h2 {
    font-size: 2rem;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    margin-bottom: 30px;
}

/* Creative Form Inputs */
.creative-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    color: #1a3a5c;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1rem;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #667eea;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: #667eea;
    font-weight: 600;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    transition: width 0.4s ease;
}

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

/* Submit Button */
.submit-btn {
    position: relative;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(-10deg);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

/* Success Message */
.success-message-creative {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 15px;
    border-left: 5px solid #10b981;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.success-text h4 {
    color: #065f46;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.success-text p {
    color: #047857;
    margin: 0;
}

/* Connect Process Timeline */
.connect-process-section {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s;
}

.process-step:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    font-size: 2rem;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.1);
}

.process-step h3 {
    color: #1a3a5c;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.process-connector {
    color: #ccc;
    font-size: 1.5rem;
    padding: 0 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid-creative {
        grid-template-columns: 1fr;
    }
    
    .contact-creative-hero h1 {
        font-size: 2.8rem;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .contact-creative-hero {
        padding: 100px 0 60px;
    }
    
    .contact-creative-hero h1 {
        font-size: 2.2rem;
    }
    
    .creative-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .contact-node {
        padding: 15px;
    }
    
    .node-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ===== MODERN EXPERIENCE PAGE STYLES ===== */

/* Experience Hero */
.experience-hero-modern {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-particle 20s infinite ease-in-out;
}

.particle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.particle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.particle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

.particle-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffd700;
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

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

/* Timeline Navigation */
.timeline-nav-section {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

.timeline-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Interactive Timeline */
.interactive-timeline {
    padding: 80px 0;
    background: white;
}

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    left: 35px;
    top: 40px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #667eea;
    color: white;
    font-size: 1rem;
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.timeline-card {
    margin-left: 100px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid #f0f0f0;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.current-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    color: white;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.header-content {
    flex: 1;
}

.position-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.org-name {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 15px;
}

.meta-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.duration, .org-link, .project-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.org-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.org-link:hover {
    opacity: 1;
}

.project-badge {
    background: rgba(255, 215, 0, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    color: #ffd700;
    font-weight: 600;
}

.header-visual {
    flex-shrink: 0;
}

.org-logo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-body {
    padding: 30px;
}

.org-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.key-responsibilities h5 {
    color: #1a3a5c;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.responsibility-grid li {
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.responsibility-grid li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.responsibility-grid li i {
    color: #10b981;
    font-size: 1rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Education Section */
.education-qualifications {
    padding: 100px 0;
    background: #f8f9fa;
}

.education-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.edu-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.edu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.edu-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.edu-icon i {
    font-size: 2rem;
    color: white;
}

.edu-card h3 {
    color: #1a3a5c;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.edu-card .institution {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.edu-card .edu-level {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Memberships */
.memberships-section-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 20px;
    color: white;
}

.subsection-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.memberships-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.membership-card-modern {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.membership-card-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.membership-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.membership-icon i {
    font-size: 1.8rem;
    color: #ffd700;
}

.membership-card-modern h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.membership-code {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Skills Visualization */
.skills-visualization {
    padding: 100px 0;
    background: white;
}

.skills-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.skill-category-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s;
}

.skill-category-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.skill-category-card h3 {
    text-align: center;
    color: #1a3a5c;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-bar {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.skill-name {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    width: 0;
    transition: width 1s ease;
}

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

@media (max-width: 1024px) {
    .timeline-card {
        margin-left: 80px;
    }
    
    .education-grid-modern,
    .memberships-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .experience-hero-modern {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .timeline-wrapper::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 5px;
    }
    
    .timeline-card {
        margin-left: 50px;
    }
    
    .card-header {
        flex-direction: column;
    }
    
    .header-visual {
        display: none;
    }
    
    .skills-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .memberships-section-modern {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .position-title {
        font-size: 1.3rem;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* Ensure all timeline cards have the same width */
.timeline-card {
    width: calc(100% - 100px); /* Subtract the margin-left to maintain alignment */
    max-width: 1000px; /* Optional: Set a maximum width for very large screens */
    box-sizing: border-box; /* Include padding and border in width calculation */
}

/* Alternative approach - if you want fixed width */
/*
.timeline-card {
    width: 850px;
    margin-left: 100px;
    box-sizing: border-box;
}
*/

/* Responsive adjustments */
@media (max-width: 1200px) {
    .timeline-card {
        width: calc(100% - 80px);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .timeline-card {
        width: calc(100% - 50px);
        margin-left: 50px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .timeline-card {
        width: 100%;
        margin-left: 0;
    }
}

/* ===== CIRCULAR LOGO ANIMATION STYLES ===== */

.logo-circle-animation {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Circle Rings */
.circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Outer Ring */
.ring-outer {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #667eea;
    border-right-color: #764ba2;
    animation: spin-slow 15s linear infinite;
}

.ring-outer::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 20px #667eea;
}

/* Middle Ring with Text */
.ring-middle {
    width: 85%;
    height: 85%;
    border: 2px solid transparent;
    border-bottom-color: #f093fb;
    border-left-color: #fa709a;
    animation: spin-medium 12s linear infinite reverse;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-text {
    position: relative;
    width: 100%;
    height: 100%;
}

.ring-text span {
    position: absolute;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ring-text span:nth-child(1) { top: 5px; left: 50%; transform: translateX(-50%); }
.ring-text span:nth-child(2) { right: 10px; top: 50%; transform: translateY(-50%) rotate(90deg); }
.ring-text span:nth-child(3) { bottom: 5px; left: 50%; transform: translateX(-50%); }
.ring-text span:nth-child(4) { left: 10px; top: 50%; transform: translateY(-50%) rotate(-90deg); }

/* Inner Ring with Dots */
.ring-inner {
    width: 70%;
    height: 70%;
    border: 2px solid transparent;
    border-top-color: #43e97b;
    border-right-color: #38f9d7;
    animation: spin-fast 8s linear infinite;
}

.ring-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.ring-dots .dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #43e97b;
    border-radius: 50%;
    box-shadow: 0 0 15px #43e97b;
}

.ring-dots .dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.ring-dots .dot:nth-child(2) { right: 0; top: 50%; transform: translateY(-50%); }
.ring-dots .dot:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.ring-dots .dot:nth-child(4) { left: 0; top: 50%; transform: translateY(-50%); }

/* Ring Particles */
.ring-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: pulse-particle 2s ease-in-out infinite;
}

.ring-particles .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.ring-particles .particle:nth-child(2) { top: 10%; right: 10%; animation-delay: 0.3s; }
.ring-particles .particle:nth-child(3) { bottom: 10%; left: 10%; animation-delay: 0.6s; }
.ring-particles .particle:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 0.9s; }
.ring-particles .particle:nth-child(5) { top: 50%; left: 10%; animation-delay: 1.2s; }
.ring-particles .particle:nth-child(6) { top: 50%; right: 10%; animation-delay: 1.5s; }

/* Center Logo */
.logo-center {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.center-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: logo-float 6s ease-in-out infinite;
    z-index: 2;
}

.logo-glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #667eea;
    font-size: 0.9rem;
    z-index: 20;
    animation: badge-float 4s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: 0;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: 0;
    animation-delay: 2s;
}

.floating-badge i {
    font-size: 1.3rem;
    color: #f093fb;
}

/* Spin Animations */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-medium {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes spin-fast {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pulse Animations */
@keyframes pulse-particle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .logo-circle-animation {
        width: 350px;
        height: 350px;
    }
    
    .center-logo {
        width: 120px;
        height: 120px;
    }
    
    .ring-text span {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .logo-circle-animation {
        width: 280px;
        height: 280px;
    }
    
    .center-logo {
        width: 100px;
        height: 100px;
    }
    
    .floating-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .ring-text span {
        display: none; /* Hide text on mobile for cleaner look */
    }
}

/* ===== UPDATED CIRCULAR LOGO & NAVIGATION STYLES ===== */

/* Center Logo with White Gradient Effect */
.logo-center {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* White radial gradient background aura */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.1) 60%, transparent 80%);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.9);
}

.center-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    /* White glowing shadow effect to make it pop */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
    animation: logo-float 6s ease-in-out infinite;
    z-index: 2;
}

/* Smaller Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 50px; /* Moved up slightly */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px; /* Reduced gap */
    z-index: 100;
}

.nav-btn {
    width: 36px; /* Reduced from 55px */
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 0.9rem; /* Reduced from 1.3rem */
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: white;
    color: #667eea;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 6px; /* Reduced from 12px */
}

.dot {
    width: 6px; /* Reduced from 14px */
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.dot.active {
    background: white;
    width: 18px; /* Stretches active dot into a pill shape */
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for the smaller navigation */
@media (max-width: 768px) {
    .logo-center {
        width: 160px;
        height: 160px;
    }
    
    .center-logo {
        width: 120px;
        height: 120px;
    }
    
    .slider-navigation {
        bottom: 30px;
        gap: 10px;
    }
    
    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .dot {
        width: 5px;
        height: 5px;
    }
    
    .dot.active {
        width: 14px;
    }
}

/* Smaller Slider Navigation with Bottom Margin */
.slider-navigation {
    position: absolute;
    bottom: 80px; /* Increased from 50px to push it further up from the bottom edge */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100;
    margin-bottom: 20px; /* Added margin-bottom as requested */
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: white;
    color: #667eea;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.dot.active {
    background: white;
    width: 18px;
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for the navigation */
@media (max-width: 768px) {
    .slider-navigation {
        bottom: 50px; /* Adjusted for mobile screens */
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .dot {
        width: 5px;
        height: 5px;
    }
    
    .dot.active {
        width: 14px;
    }
}

/* ===== SPORTS & LEADERSHIP SECTION ===== */

.sports-leadership-section {
    padding: 100px 0;
    background: #ffffff; /* Changed to pure white */
}

/* Added a subtle border so cards don't blend into the white background */
.sports-category-card {
    background: #ffffff;
    border: 1px solid #f0f0f0; 
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
}

.sports-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

/* Keep the highlight card distinct */
.sports-category-card.highlight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none; /* Remove border for the gradient card */
}

/* ... (keep the rest of the sports section CSS the same) ... */
.project-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    z-index: -1; /* This pushes the background behind the text so it doesn't block clicks */
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white; /* Ensure the text is white so it's visible on the gradient */
    margin-bottom: 30px;
    font-weight: 600;
    transition: gap 0.3s;
    position: relative;
    z-index: 10; /* This ensures the link sits above the background overlay */
    text-decoration: none;
}

.back-link:hover {
    gap: 15px;
    text-decoration: underline;
}

/* Skills Visualization Section */
.skills-visualization {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #0066cc 100%); /* Pure white background */
}

/* Update inner cards to stand out on the white background */
.skill-category-card {
    background: #ffffff;
    border: 1px solid #f0f0f0; /* Subtle border to define the card edges */
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* Soft shadow for depth */
    transition: all 0.4s;
}

.skill-category-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15); /* Slight purple/blue glow on hover */
    border-color: #e0e0e0;
}

