/* CSS Variables for Glass Effect */
:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --blur: blur(10px);
    --primary-gradient: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
    --accent-color: #f39c12;
    --text-light: #ffffff;
    --text-dark: #333333;
}



/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 65px;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* Glass Effect Utility Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Header Styles */
.header {
    background: var(--primary-gradient);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: var(--text-light);
    font-size: 26px;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 25px;
}

.logo a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.logo a:hover {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 10px;
    flex: 1;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-color);
    background: rgba(255,255,255,0.1);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin-left: 15px;
}

.get-started-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: transform 0.3s;
    white-space: nowrap;
}

.get-started-btn:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-gradient);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
}

.mobile-menu a:hover {
    color: var(--accent-color);
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--primary-gradient);
    backdrop-filter: var(--blur);
    z-index: 1100;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar.active {
    left: 0;
}

.sidebar-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 20px;
}

.sidebar-logo {
    color: var(--text-light);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.sidebar-logo a {
    color: var(--text-light);
    text-decoration: none;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.sidebar-nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.sidebar-cta {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    margin-top: 20px;
}

.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--text-light);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section with Slider */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-content .highlight {
    color: var(--accent-color);
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-secondary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 400px;
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.tech-icon:hover {
    transform: translateY(-10px);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-prev, .slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: var(--blur);
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--text-light);
    transform: scale(1.2);
}

/* Services Overview Section */
.services-overview {
    background: #f8f9fa;
    padding: 100px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.services-overview h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-overview .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: left;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose {
    background: var(--primary-gradient);
    padding: 100px 0;
    color: white;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-choose .subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card p {
    line-height: 1.8;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" x="10" y="10" fill="%23cccccc"/><rect width="15" height="15" x="40" y="30" fill="%23999999"/><rect width="25" height="25" x="60" y="60" fill="%23666666"/></svg>');
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    flex: 1;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.portfolio-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.examination-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    white-space: normal;
    line-height: 1.3;
    min-height: 70px;
}

.contact-btn:hover, 
.portfolio-btn:hover, 
.examination-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
.site-footer {
    padding: 2rem;
    background: var(--primary-gradient);
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu li a {
        font-size: 13px;
        padding: 6px 10px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    body {
        padding-top: 65px;
    }

    .header {
        padding: 15px 0;
    }
    
    .nav-buttons {
        margin-left: auto;
    }
    
    .sidebar-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-primary, 
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 12px;
    }

    .tech-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Improved CTA buttons for mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
        max-width: none;
        padding: 14px 20px;
        font-size: 0.95rem;
        white-space: normal;
        min-height: auto;
        line-height: 1.4;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav, .footer-contact {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .examination-btn {
        min-height: auto;
        line-height: 1.3;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .get-started-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .sidebar {
        width: 100%;
        left: -100%;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: var(--primary-gradient);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 800 600" xmlns="http://www.w3.org/2000/svg"><rect width="200" height="150" x="100" y="100" rx="10" fill="%23ffffff20" transform="rotate(15 200 175)"/><rect width="250" height="180" x="300" y="200" rx="10" fill="%23ffffff15" transform="rotate(-10 425 290)"/><rect width="180" height="120" x="500" y="80" rx="10" fill="%23ffffff10" transform="rotate(25 590 140)"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.2rem;
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.about-hero .highlight {
    color: var(--accent-color);
    font-weight: bold;
}

/* About Content Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.services-list li {
    background: rgba(243, 156, 18, 0.1);
    padding: 12px 20px;
    border-radius: 5px;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.services-list li::before {
    content: '•';
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* CEO Section */
.ceo-section {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
    margin-top: 60px;
}

.ceo-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    position: relative;
}

.ceo-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.ceo-image:hover {
    transform: translateY(-5px);
}

.ceo-image::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    z-index: -1;
    transition: all 0.3s;
}

.ceo-image:hover::after {
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
}

.ceo-info {
    flex: 2;
    min-width: 300px;
}

.ceo-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.ceo-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
}

.ceo-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission/Vision Section */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.mission-card h4, .vision-card h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.8;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" x="10" y="10" fill="%23cccccc"/><rect width="15" height="15" x="40" y="30" fill="%23999999"/><rect width="25" height="25" x="60" y="60" fill="%23666666"/></svg>');
    padding: 100px 0;
    text-align: center;
    color: white;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.cta-secondary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-3px);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .ceo-section {
        flex-direction: column;
    }

    .ceo-image-container {
        max-width: 100%;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .ceo-info h3 {
        font-size: 1.4rem;
    }

    .mission-card h4, .vision-card h4 {
        font-size: 1.4rem;
    }

    .about-cta h2 {
        font-size: 1.8rem;
    }

    .about-cta p {
        font-size: 1rem;
    }
}

/* Certificate Exam Styles */
.quiz-header {
    text-align: center;
    padding: 40px 20px;
    background: var(--primary-gradient);
    color: white;
}

.quiz-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.quiz-container {
    display: none; /* Hide quiz initially */
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.quiz-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    backdrop-filter: var(--blur);
}

.quiz-info h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.security-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.question-container {
    margin-bottom: 30px;
}

.question {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.options {
    display: grid;
    gap: 10px;
}

.option {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: var(--blur);
}

.option:hover {
    border-color: #2c3e50;
    background: #f8f9fa;
}

.option.selected {
    border-color: #4a6741;
    background: #e8f5e8;
}

.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.nav-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: var(--blur);
}

.prev-btn {
    background: #6c757d;
    color: white;
}

.next-btn {
    background: #4a6741;
    color: white;
}

.submit-btn {
    background: #2c3e50;
    color: white;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    backdrop-filter: var(--blur);
}

.nav-btn:hover {
    transform: translateY(-2px);
}

.progress-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 5px;
    transition: width 0.3s;
}

.results-container {
    text-align: center;
    padding: 40px;
}

.score {
    font-size: 3rem;
    font-weight: bold;
    color: #4a6741;
    margin: 20px 0;
}

.certificate-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin: 20px 0;
    transition: all 0.3s;
    backdrop-filter: var(--blur);
}

.certificate-btn:hover {
    transform: translateY(-2px);
}

/* Exam Introduction Styles */
.exam-intro {
    background: #f8f9fa;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.intro-container h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-container > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.exam-objectives {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    backdrop-filter: var(--blur);
}

.exam-objectives h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #4a6741;
    padding-bottom: 10px;
}

.exam-objectives ul {
    padding-left: 20px;
}

.exam-objectives li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.exam-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.detail-card i {
    font-size: 2rem;
    color: #4a6741;
    margin-bottom: 15px;
}

.detail-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.detail-card p {
    color: #666;
    font-weight: 500;
}

.instructions {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.instructions h3 {
    color: #856404;
    margin-bottom: 15px;
}

.instructions ul {
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 10px;
    color: #856404;
}

.start-exam-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    backdrop-filter: var(--blur);
}

.start-exam-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Anti-cheat protection */
.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.no-copy::selection {
    background: transparent;
}

.no-copy::-moz-selection {
    background: transparent;
}

/* Timer styles */
#timer-container {
    position: fixed;
    top: 140px;
    right: 20px;
    background: #2c3e50;
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    min-width: 120px;
    text-align: center;
    backdrop-filter: var(--blur);
}

#timer-text {
    font-size: 1.4rem;
    font-family: monospace;
    letter-spacing: 1px;
}

/* Responsive Design for Certificate Page */
@media (max-width: 768px) {
    .quiz-header h1 {
        font-size: 2rem;
    }
    
    .quiz-container {
        margin: 10px;
        padding: 20px;
    }
    
    .exam-details {
        grid-template-columns: 1fr;
    }
    
    #timer-container {
        top: 100px;
        right: 10px;
        padding: 8px 12px;
        min-width: 100px;
    }
    
    #timer-text {
        font-size: 1.2rem;
    }
    
    .navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .quiz-header h1 {
        font-size: 1.5rem;
    }
    
    .quiz-header p {
        font-size: 1rem;
    }
    
    .question {
        font-size: 1rem;
    }
    
    .option {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .score {
        font-size: 2rem;
    }
}

/* Live Chat Widget Styles */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Arial', sans-serif;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: none;
    backdrop-filter: var(--blur);
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.chat-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
}

.chat-container.active {
    display: flex;
}

.chat-header {
    background: var(--primary-gradient);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.chat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.chat-close:hover {
    color: var(--accent-color);
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-welcome {
    text-align: center;
    margin-bottom: 20px;
}

.chat-welcome p {
    color: #666;
    margin: 10px 0;
    font-size: 0.9rem;
}

.location-info {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 8px;
    padding: 10px;
    margin: 15px 0;
    font-size: 0.8rem;
    color: #2c3e50;
}

.location-info i {
    color: #3498db;
    margin-right: 5px;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9rem;
}

.form-input {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    background: white;
    backdrop-filter: var(--blur);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
    font-family: 'Arial', sans-serif;
}

.chat-footer {
    padding: 20px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.send-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: var(--blur);
}

.send-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.send-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.chat-status {
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    color: #666;
}

.status-online {
    color: #27ae60;
}

.status-offline {
    color: #e74c3c;
}

/* Chat Messages */
.chat-messages {
    max-height: 200px;
    overflow-y: auto;
    margin: 15px 0;
    padding: 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.message {
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.message.user {
    background: var(--primary-gradient);
    color: white;
    margin-left: 20px;
    text-align: right;
}

.message.system {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    text-align: center;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .live-chat-widget {
        bottom: 10px;
        right: 10px;
    }
    
    .chat-container {
        width: 300px;
        height: 450px;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .chat-container {
        width: 280px;
        right: -10px;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: var(--primary-gradient);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 800 600" xmlns="http://www.w3.org/2000/svg"><rect width="200" height="150" x="100" y="100" rx="10" fill="%23ffffff20" transform="rotate(15 200 175)"/><rect width="250" height="180" x="300" y="200" rx="10" fill="%23ffffff15" transform="rotate(-10 425 290)"/><rect width="180" height="120" x="500" y="80" rx="10" fill="%23ffffff10" transform="rotate(25 590 140)"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.contact-hero .highlight {
    color: var(--accent-color);
    font-weight: bold;
}

/* Contact Content Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-methods {
    display: grid;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card h3 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent-color);
}

.contact-link i {
    transition: transform 0.3s;
}

.contact-link:hover i {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
    backdrop-filter: var(--blur);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact Form Section */
.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    backdrop-filter: var(--blur);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
    backdrop-filter: var(--blur);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
}

.submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: white;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.location-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.location-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.location-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.location-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.location-card p {
    color: #666;
    line-height: 1.8;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" x="10" y="10" fill="%23cccccc"/><rect width="15" height="15" x="40" y="30" fill="%23999999"/><rect width="25" height="25" x="60" y="60" fill="%23666666"/></svg>');
    padding: 100px 0;
    text-align: center;
    color: white;
}

.contact-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.cta-secondary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-3px);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-form {
        order: -1;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .location-info {
        grid-template-columns: 1fr;
    }
}

/* Team Social Media Icons */
.team-social-links {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-social-links h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icon::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;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Facebook - Exact Brand Color */
.social-icon.facebook {
    background: #1877F2;
    border: 2px solid #1877F2;
}

.social-icon.facebook:hover {
    background: #166FE5;
    border-color: #166FE5;
}

/* Instagram - Exact Gradient */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: 2px solid transparent;
    background-origin: border-box;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e68a2e, #d85f33, #d1263d, #c22162, #b31682);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

/* YouTube - Exact Brand Color */
.social-icon.youtube {
    background: #FF0000;
    border: 2px solid #FF0000;
}

.social-icon.youtube:hover {
    background: #E60000;
    border-color: #E60000;
}

/* LinkedIn - Exact Brand Color */
.social-icon.linkedin {
    background: #0077B5;
    border: 2px solid #0077B5;
}

.social-icon.linkedin:hover {
    background: #00669C;
    border-color: #00669C;
}

/* Threads - Exact Brand Color */
.social-icon.threads {
    background: #000000;
    border: 2px solid #000000;
}

.social-icon.threads:hover {
    background: #333333;
    border-color: #333333;
}

/* Responsive Design for Social Icons */
@media (max-width: 768px) {
    .social-icons-container {
        gap: 12px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .team-social-links {
        padding: 20px;
        margin-top: 25px;
    }
    
    .team-social-links h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .social-icons-container {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .team-social-links {
        padding: 15px;
        margin-top: 20px;
    }
}

/* Courses Page Specific Styles */
.page-header {
    background: var(--primary-gradient);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Tab Navigation */
.tab-navigation {
    background: #f8f9fa;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tab-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    backdrop-filter: var(--blur);
}

.tab-btn.active {
    color: #2c3e50;
    border-bottom-color: var(--accent-color);
    background: rgba(243, 156, 18, 0.1);
}

.tab-btn:hover {
    background: rgba(243, 156, 18, 0.05);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 60px 0;
}

.tab-content.active {
    display: block;
}

/* Course Grid */
.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 30px;
}

.course-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.course-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.course-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.course-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

.course-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    backdrop-filter: var(--blur);
}

.course-btn:hover {
    transform: translateY(-2px);
}

/* Dashboard */
.dashboard {
    display: none;
    padding: 40px 0;
    background: #f8f9fa;
}

.dashboard.active {
    display: block;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 40px;
}

.dashboard-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.user-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ebook-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.ebook-card:hover {
    transform: translateY(-5px);
}

.ebook-cover {
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #f0f0f0;
}

.ebook-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ebook-card:hover .ebook-cover img {
    transform: scale(1.05);
}

.ebook-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.ebook-description {
    color: #666;
    margin-bottom: 20px;
}

.download-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.download-btn:hover {
    transform: translateY(-2px);
}

.logout-btn {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    float: right;
    margin-bottom: 20px;
    backdrop-filter: var(--blur);
}

/* Registration Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close:hover {
    color: #000;
}

.modal h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    backdrop-filter: var(--blur);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.modal-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.modal-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.modal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loading {
    display: none;
    text-align: center;
    margin: 20px 0;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.password-display {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    display: none;
    backdrop-filter: var(--blur);
}

.password-display h3 {
    color: #27ae60;
    margin-bottom: 10px;
}

.password-code {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 2px dashed var(--accent-color);
    margin: 10px 0;
}

/* Responsive Design for Courses Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }

    .tab-container {
        flex-direction: column;
    }

    .tab-btn {
        padding: 15px 20px;
    }

    .ebooks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .course-content {
        padding: 20px;
    }

    .ebook-card {
        padding: 20px;
    }
}

/* FAQ Page Specific Styles */
.faq-hero {
    background: var(--primary-gradient);
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.faq-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.faq-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ecf0f1;
}

/* FAQ Content */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f8f9fa;
    font-weight: bold;
    font-size: 1.1rem;
    color: #2c3e50;
    transition: background-color 0.3s ease;
    backdrop-filter: var(--blur);
}

.faq-question:hover {
    background: #f1f1f1;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.faq-toggle {
    transition: transform 0.3s;
    color: var(--accent-color);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* FAQ CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" x="10" y="10" fill="%23cccccc"/><rect width="15" height="15" x="40" y="30" fill="%23999999"/><rect width="25" height="25" x="60" y="60" fill="%23666666"/></svg>');
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.cta-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.cta-secondary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

/* FAQ Search and Filter (Optional Enhancement) */
.faq-search {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    font-size: 1rem;
    transition: border-color 0.3s;
    backdrop-filter: var(--blur);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.faq-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

/* FAQ Categories (Optional Enhancement) */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    backdrop-filter: var(--blur);
}

.faq-category-btn.active,
.faq-category-btn:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.2rem;
    }
    
    .faq-hero p {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-number {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 0.8rem;
        margin-right: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .faq-categories {
        gap: 10px;
    }
    
    .faq-category-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 1.8rem;
    }
    
    .faq-hero p {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

/* Get Started Page Specific Styles */
.get-started-hero {
    background: var(--primary-gradient);
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.get-started-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.get-started-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.get-started-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ecf0f1;
}

/* Form Section */
.form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 50px;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.form-group label.required::after {
    content: " *";
    color: #e74c3c;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-col {
    flex: 1;
}

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    backdrop-filter: var(--blur);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-group {
    margin-top: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-item input {
    margin-right: 10px;
}

.form-section h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.submit-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
    margin-top: 20px;
    backdrop-filter: var(--blur);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
}

.submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

/* Form Message Styling */
.form-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Get Started Page */
@media (max-width: 768px) {
    .get-started-hero h1 {
        font-size: 2.2rem;
    }
    
    .get-started-hero p {
        font-size: 1rem;
    }
    
    .form-card {
        padding: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .get-started-hero h1 {
        font-size: 1.8rem;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .checkbox-item {
        align-items: flex-start;
    }
    
    .checkbox-item label {
        font-size: 0.9rem;
    }
}

/* Portfolio Page Specific Styles */
.portfolio-hero {
    background: var(--primary-gradient);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 800 600" xmlns="http://www.w3.org/2000/svg"><rect width="200" height="150" x="100" y="100" rx="10" fill="%23ffffff20" transform="rotate(15 200 175)"/><rect width="250" height="180" x="300" y="200" rx="10" fill="%23ffffff15" transform="rotate(-10 425 290)"/><rect width="180" height="120" x="500" y="80" rx="10" fill="%23ffffff10" transform="rotate(25 590 140)"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.portfolio-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.portfolio-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.portfolio-hero p {
    font-size: 1.2rem;
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.portfolio-hero .highlight {
    color: var(--accent-color);
    font-weight: bold;
}

/* Portfolio Projects Section */
.portfolio-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.portfolio-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.portfolio-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.portfolio-disclaimer {
    background: rgba(243, 156, 18, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin-bottom: 40px;
    text-align: left;
    border-radius: 0 8px 8px 0;
    backdrop-filter: var(--blur);
}

.portfolio-disclaimer p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: var(--blur);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: #2c3e50;
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.project-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
}

.project-number {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.portfolio-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.portfolio-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-features {
    margin-bottom: 20px;
}

.project-features h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.tech-stack {
    background: rgba(44, 62, 80, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    backdrop-filter: var(--blur);
}

.tech-stack h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1rem;
}

.tech-stack p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.more-projects {
    text-align: center;
    margin-top: 60px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #2c3e50;
}

/* Portfolio CTA Section */
.portfolio-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" x="10" y="10" fill="%23cccccc"/><rect width="15" height="15" x="40" y="30" fill="%23999999"/><rect width="25" height="25" x="60" y="60" fill="%23666666"/></svg>');
    padding: 100px 0;
    text-align: center;
    color: white;
}

.portfolio-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.portfolio-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.cta-secondary {
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-3px);
}

/* Responsive Design for Portfolio Page */
@media (max-width: 768px) {
    .portfolio-hero h1 {
        font-size: 2.2rem;
    }
    
    .portfolio-hero p {
        font-size: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .portfolio-section h2 {
        font-size: 2rem;
    }
    
    .portfolio-section .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-hero h1 {
        font-size: 1.8rem;
    }
    
    .project-content {
        padding: 15px;
    }
    
    .portfolio-item h3 {
        font-size: 1.3rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Services Page Specific Styles */
.services-hero {
    background: var(--primary-gradient);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 800 600" xmlns="http://www.w3.org/2000/svg"><rect width="200" height="150" x="100" y="100" rx="10" fill="%23ffffff20" transform="rotate(15 200 175)"/><rect width="250" height="180" x="300" y="200" rx="10" fill="%23ffffff15" transform="rotate(-10 425 290)"/><rect width="180" height="120" x="500" y="80" rx="10" fill="%23ffffff10" transform="rotate(25 590 140)"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.services-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.2rem;
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.services-hero .highlight {
    color: var(--accent-color);
    font-weight: bold;
}

/* Services Grid Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .features-list li::before {
    transform: scale(1.2);
}

.features-list li:hover {
    color: #2c3e50;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.process-header {
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.process-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" x="10" y="10" fill="%23cccccc"/><rect width="15" height="15" x="40" y="30" fill="%23999999"/><rect width="25" height="25" x="60" y="60" fill="%23666666"/></svg>');
    padding: 100px 0;
    text-align: center;
    color: white;
}

.services-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.cta-secondary {
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
    backdrop-filter: var(--blur);
}

.examination-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    backdrop-filter: var(--blur);
}

.cta-primary:hover, 
.cta-secondary:hover, 
.examination-btn:hover {
    transform: translateY(-3px);
}

/* Service Categories (Optional Enhancement) */
.service-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    backdrop-filter: var(--blur);
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* Service Stats (Optional Enhancement) */
.service-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary,
    .examination-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 20px;
        font-size: 1rem;
        text-align: center;
    }
    
    .service-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .services-section h2,
    .process-header h2 {
        font-size: 2rem;
    }
    
    .services-section .subtitle,
    .process-header p {
        font-size: 1rem;
    }
    
    .service-stats {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Page Specific Styles */
.testimonials-hero {
    background: var(--primary-gradient);
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    padding: 4rem 0;
}

.testimonials-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 2;
}

.testimonials-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.testimonials-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-text);
}

/* Testimonials Content */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3.75rem;
}

.section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 0.9375rem;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 1.875rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.testimonial-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5625rem;
    position: relative;
    padding-left: 1.25rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.625rem;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: serif;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .client-avatar {
    transform: scale(1.1);
}

.client-details h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3125rem;
}

.client-details p {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.country-flag {
    width: 1.25rem;
    height: 0.9375rem;
    margin-right: 0.5rem;
    border-radius: 0.125rem;
    border: 1px solid #ddd;
}

/* Testimonials CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cmVjdCB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHg9IjEwIiB5PSIxMCIgZmlsbD0iI2NjY2NjYyIvPjxyZWN0IHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgeD0iNDAiIHk9IjMwIiBmaWxsPSIjOTk5OTk5Ii8+PHJlY3Qgd2lkdGg9IjI1IiBoZWlnaHQ9IjI1IiB4PSI2MCIgeT0iNjAiIGZpbGw9IiM2NjY2NjYiLz48L3N2Zz4=');
    background-size: cover;
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1.875rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.9375rem 1.875rem;
    border-radius: 1.875rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    backdrop-filter: var(--blur);
}

.cta-primary {
    background: linear-gradient(135deg, var(--danger-color), var(--dark-danger));
    color: white;
}

.cta-secondary {
    background: linear-gradient(135deg, var(--accent-color), var(--dark-accent));
    color: white;
}

.cta-btn:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Testimonial Rating (Optional Enhancement) */
.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-align: left;
}

/* Testimonial Filter (Optional Enhancement) */
.testimonial-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: var(--blur);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* Testimonial Stats (Optional Enhancement) */
.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Responsive Design for Testimonials Page */
@media (max-width: 768px) {
    .testimonials-hero {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.875rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .client-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .client-avatar {
        margin-bottom: 0.625rem;
        margin-right: 0;
    }
    
    .testimonial-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-hero h1 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }
    
    .testimonial-stats {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Animation for testimonial cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Live Chat Widget Styles - Matching Website Theme */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    font-family: 'Arial', sans-serif;
}

/* Chat Button */
.chat-button {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.chat-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(44, 62, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0);
    }
}

/* Chat Container */
.chat-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background: var(--glass-bg);
    border-radius: 15px;
    box-shadow: var(--glass-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
}

.chat-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.chat-header {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 20px;
    position: relative;
}

.chat-header h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.chat-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.close-chat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Chat Body */
.chat-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.95);
}

.chat-welcome {
    margin-bottom: 20px;
    text-align: center;
}

.location-info {
    background: rgba(74, 103, 65, 0.1);
    border: 1px solid rgba(74, 103, 65, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    backdrop-filter: var(--blur);
}

.location-info i {
    color: #4a6741;
}

/* Chat Form */
.chat-form {
    margin-top: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.chat-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
}

.chat-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.chat-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Submit Button */
.chat-submit {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-gradient);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
}

.chat-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.4);
}

.chat-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text, .btn-loading {
    display: inline-block;
}

/* Country Display */
.chat-country {
    margin-top: 15px;
    padding: 10px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--blur);
}

.chat-country i {
    margin-right: 5px;
    color: #4a6741;
}

/* Chat Messages */
.chat-message {
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 8px;
    font-size: 14px;
    animation: slideIn 0.3s ease;
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.chat-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.chat-info {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    color: #3498db;
}

/* Loading Animation */
.btn-loading {
    display: none;
}

.btn-loading .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Chat Status */
.chat-status {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #666;
    background: rgba(248, 249, 250, 0.8);
    margin-top: 10px;
    border-radius: 8px;
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
}

.status-online {
    color: #27ae60;
}

.status-online i {
    color: #27ae60;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .live-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-container {
        width: 320px;
        right: -10px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-container {
        width: 280px;
        right: -5px;
    }
    
    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .chat-body {
        padding: 15px;
    }
    
    .chat-header {
        padding: 15px;
    }
}

/* Scrollbar Styling */
.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chat-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Focus States for Accessibility */
.chat-button:focus,
.close-chat:focus,
.chat-input:focus,
.chat-submit:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .chat-button,
    .chat-container,
    .chat-submit,
    .chat-input {
        transition: none;
    }
    
    .chat-button.pulse {
        animation: none;
    }
    
    .fa-spinner {
        animation: none;
    }
    
    .close-chat:hover {
        transform: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .chat-body {
        background: rgba(40, 40, 40, 0.95);
        color: var(--text-light);
    }
    
    .chat-input {
        background: rgba(50, 50, 50, 0.9);
        color: var(--text-light);
        border-color: #555;
    }
    
    .chat-input:focus {
        border-color: var(--accent-color);
    }
    
    .chat-country {
        background: rgba(60, 60, 60, 0.8);
        color: #ccc;
    }
    
    .input-group label {
        color: var(--text-light);
    }
}

/* ===== ULTIMATE EXAMINATION BUTTON FIX ===== */
.examination-btn {
    font-size: 0.85rem !important;
    padding: 12px 15px !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    word-break: break-word !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    display: inline-block !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    margin: 0 auto !important;
}

.cta-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.cta-buttons a {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: break-word !important;
}

/* ===== NUCLEAR LOCATION SECTION FIX ===== */
.location-section {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    padding: 80px 20px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.location-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.location-info {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 25px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.location-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 25px 20px !important;
    margin: 0 !important;
    min-width: 0 !important; /* Crucial for grid items */
}

/* Add to your CSS file */
.text-justify {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
}

/* Or justify specific sections */
.about-text p, 
.service-card p,
.blog-content p {
    text-align: justify;
    text-justify: inter-word;
}

/* Ensure all CTA button types are styled */
.get-started-btn,
.cta-primary,
.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s;
    display: inline-block;
    text-align: center;
}

.cta-secondary,
.btn-secondary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s;
    display: inline-block;
    text-align: center;
}

.get-started-btn:hover,
.cta-primary:hover,
.btn-primary:hover,
.cta-secondary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.user-quiz-info {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.user-badge, .access-level {
    font-size: 14px;
    color: #ecf0f1;
}

.logout-btn-small {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.logout-btn-small:hover {
    background: #c0392b;
}

