/* Global Styles */
:root {
    --primary-color: #002B49;    /* Dark Blue */
    --secondary-color: #00E5FF;  /* Cyan/Turquoise */
    --accent-color: #00E5FF;     /* Cyan/Turquoise */
    --text-color: #2c3e50;
    --light-bg: #f5f6fa;
    --white: #ffffff;
    --dark-blue: #002B49;
    --gradient-start: #002B49;
    --gradient-end: #004B7C;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 43, 73, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    padding: 20px;
    overflow-y: auto;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: var(--white);
    width: 95%;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 20px;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-steps {
    position: relative;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 43, 73, 0.1);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 43, 73, 0.1);
    transition: transform 0.3s ease;
}

.modal-step {
    display: none;
    text-align: center;
    padding: 15px;
    animation: fadeIn 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.modal-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.modal-step h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.modal-step h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.modal-step p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.modal-step ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.modal-step ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.modal-step ul li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.next-step {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 43, 73, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.next-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 43, 73, 0.3);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.whatsapp-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.step-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 43, 73, 0.1);
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 43, 73, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    transform: rotate(90deg);
    background: white;
    color: var(--accent-color);
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 100%;
        margin: 10px;
    }
    
    .modal-steps {
        padding: 20px 15px;
    }
    
    .modal-step {
        padding: 10px;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .modal-step h3 {
        font-size: 1.3rem;
    }

    .modal-step p {
        font-size: 0.95rem;
    }

    .modal-step ul li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .next-step,
    .whatsapp-button {
        padding: 10px 20px;
        font-size: 0.95rem;
        max-width: 250px;
    }

    .step-dots {
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 20px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue), #001B29);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    margin-bottom: 4rem;
    font-size: 4.5rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
        text-align: center;
    color: var(--white);
    position: relative;
}

.stat-circle {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
        justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-item:hover .stat-circle {
    transform: scale(1.1);
}

.stat-item:hover .stat-circle::before {
    transform: translateX(100%);
}

.stat-item .counter {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .stat-item .counter {
        font-size: 2.8rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.nav-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* Ripple effect */
.nav-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(245, 0, 87, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}

.nav-links a.ripple::before {
    width: 300px;
    height: 300px;
    opacity: 0;
    transition: 0s;
}

/* Remove the underline animation */
.nav-links a::after {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
}

/* Sections */
.section {
    padding: 60px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background-color: var(--light-bg);
}

/* Typography */
h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Main Introduction Section */
#main-intro {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#main-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(26, 35, 126, 0.05) 0%, rgba(13, 71, 161, 0.05) 100%);
    z-index: 0;
}

.intro-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.intro-content .intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}

.intro-content .intro-text::before,
.intro-content .intro-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
}

.intro-content .intro-text::before {
    top: -20px;
    left: -20px;
}

.intro-content .intro-text::after {
    bottom: -40px;
    right: -20px;
}

@media (max-width: 768px) {
    #main-intro {
        padding: 60px 0;
    }

    .intro-content h2 {
        font-size: 2.2rem;
    }

    .intro-content .intro-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Typing Effect Section */
#intro-text {
    background: var(--light-bg);
}

.typing-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.typing-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-color);
    min-height: 100px;
    margin: 2rem 0;
    display: block;
    position: relative;
}

.typing-text .typed-cursor {
    font-size: 1.4rem;
    color: var(--accent-color);
    opacity: 1;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.point:hover {
    transform: translateX(10px);
}

.point i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.point span {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.2);
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.team-member:hover i {
    transform: scale(1.2);
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.why-us-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.why-us-item:hover i {
    transform: scale(1.2);
}

/* Next Steps Section */
.next-steps-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.logo-divider {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.7;
}

footer p {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 35px;
    }
    
    .logo-divider {
        font-size: 1.2rem;
    }
    
    footer p {
        font-size: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }
    
    h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    #main-intro {
        padding: 60px 0;
    }

    .services-grid,
    .team-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .particle {
        width: 3px;
        height: 3px;
        box-shadow: 0 0 3px var(--accent-color);
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item .counter {
        font-size: 2.8rem;
    }
    
    .typing-text {
        font-size: 1.2rem;
        min-height: 80px;
    }
    
    .point {
        padding: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 1s ease-out;
}

/* Motion Safe Animations */
@media (prefers-reduced-motion: no-preference) {
    .motion-safe\:animate-bounce {
        animation: bounce 1s infinite;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Particle effect */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1001;
    transform: translate(-50%, -50%);
        opacity: 1;
    box-shadow: 0 0 4px var(--accent-color);
}

/* Presenter Info Styles */
.presenter-info {
    margin-bottom: 2rem;
    text-align: center;
}

.presenter-logo {
    width: 200px;  /* Increased size */
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.3));
    transition: transform 0.3s ease;
}

.presenter-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

.presenter-name {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.presenter-tagline {
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

@media (max-width: 768px) {
    .presenter-logo {
        width: 100px;
    }

    .presenter-name {
        font-size: 2rem;
    }

    .presenter-tagline {
        font-size: 1rem;
    }
}

/* Vision Section */
.vision-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.vision-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 43, 73, 0.03) 0%, rgba(0, 229, 255, 0.03) 100%),
        radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 43, 73, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.vision-header {
    text-align: center;
    position: relative;
    margin-bottom: 4rem;
}

.vision-header h2 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.vision-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.vision-content {
    display: flex;
    align-items: center;
}

.vision-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 43, 73, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.1);
    position: relative;
}

.vision-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.vision-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.vision-feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 43, 73, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vision-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 43, 73, 0.15);
}

.vision-feature:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.vision-feature h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.vision-feature p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .vision-section {
        padding: 60px 0;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-header h2 {
        font-size: 2.5rem;
    }

    .vision-text {
        padding: 1.5rem;
    }

    .vision-text p {
        font-size: 1.1rem;
    }

    .vision-features {
        gap: 1.5rem;
    }

    .vision-feature {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .vision-feature h3 {
        font-size: 1.3rem;
    }

    .vision-feature p {
        font-size: 1rem;
    }
}

/* Detailed Services Section */
#detailed-services {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    padding: 80px 0;
}

#detailed-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#detailed-services .service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 43, 73, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#detailed-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#detailed-services .service-card:hover::before {
    transform: scaleX(1);
}

#detailed-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 43, 73, 0.15);
}

#detailed-services .service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

#detailed-services .service-card:hover i {
    transform: scale(1.1);
}

#detailed-services .service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#detailed-services .service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#detailed-services .service-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

#detailed-services .service-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    #detailed-services {
        padding: 60px 0;
    }
    
    #detailed-services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #detailed-services .service-card {
        padding: 20px;
    }
    
    #detailed-services .service-card i {
        font-size: 2rem;
    }
    
    #detailed-services .service-card h3 {
        font-size: 1.3rem;
    }
}

/* Protection Message Styles */
.protection-message {
    display: none;
    position: fixed;
    width: auto;
    min-width: 300px;
    background: rgba(0, 43, 73, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.protection-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: scaleIn 0.3s ease;
}

.protection-content i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.protection-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.protection-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Ripple Effect */
.protection-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 1s ease-out;
    pointer-events: none;
    z-index: 99998;
}

@keyframes ripple {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 43, 73, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 43, 73, 0.15);
}

.testimonial-content {
    position: relative;
}

.testimonial-content i.fa-quote-left {
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 43, 73, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.free-month-badge {
    position: absolute;
    top: 18px;
    left: -45px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 8px 40px;
    transform: rotate(-45deg);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
    width: 180px;
    text-align: center;
    border-radius: 22px;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transform: none;
    min-width: 100px;
    text-align: center;
}

.pricing-card.featured .free-month-badge {
    top: 25px;
}

.pricing-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.pricing-header h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.price {
    margin: 1.5rem 0;
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.price .amount::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle at center, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
}

.price .period {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.free-month-text {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pricing-card.featured {
    border: 2px solid transparent;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(45deg, var(--accent-color), var(--secondary-color)) border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.2);
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0, 229, 255, 0.05) 100%);
}

.pricing-features {
    margin: 30px 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #666;
    font-size: 1rem;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    background: rgba(37, 211, 102, 0.05);
    transform: translateX(5px);
}

.pricing-features li i {
    color: #25D366;
    margin-right: 10px;
    font-size: 1.1rem;
    background: rgba(37, 211, 102, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pricing-features li:hover i {
    transform: scale(1.1) rotate(5deg);
    background: rgba(37, 211, 102, 0.2);
}

.pricing-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 43, 73, 0.2);
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 43, 73, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 43, 73, 0.02);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .testimonial-card,
    .pricing-card {
        padding: 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* Portfolio Privacy Section */
.portfolio-privacy-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 43, 73, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.privacy-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 43, 73, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 43, 73, 0.15);
}

.privacy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.privacy-icon i {
    font-size: 1.8rem;
    color: white;
}

.privacy-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.privacy-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-card.featured-card {
    border: 2px solid transparent;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(45deg, var(--accent-color), var(--secondary-color)) border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.portfolio-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: var(--primary-color);
}

.portfolio-link i {
    font-size: 0.9rem;
}

.portfolio-preview {
    margin-top: 20px;
    display: grid;
    gap: 15px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.preview-item:hover {
    transform: translateX(5px);
    background: rgba(0, 229, 255, 0.1);
}

.preview-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.preview-item span {
    color: var(--primary-color);
    font-weight: 500;
}

.privacy-note {
    margin-top: 40px;
}

.note-content {
    background: rgba(0, 43, 73, 0.03);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.note-content i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.note-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .portfolio-privacy-section {
        padding: 60px 0;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .privacy-card {
        padding: 25px;
    }

    .privacy-icon {
        width: 60px;
        height: 60px;
    }

    .privacy-icon i {
        font-size: 1.5rem;
    }

    .privacy-card h3 {
        font-size: 1.3rem;
    }

    .note-content {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .note-content i {
        margin: 0 auto 10px;
    }
}

.pricing-disclaimer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 15px 20px;
    background: rgba(0, 43, 73, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.pricing-disclaimer p {
    color: var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-disclaimer strong {
    color: var(--primary-color);
    font-weight: 600;
}

.limited-time-offer {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .pricing-disclaimer {
        margin-bottom: 30px;
        padding: 12px 15px;
    }
    
    .pricing-disclaimer p {
        font-size: 0.9rem;
    }
    
    .limited-time-offer {
        font-size: 0.8rem;
    }
}

/* Global Presence Section */
.global-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin: 4rem 0;
    padding: 2rem 0;
}

.global-item {
    background: transparent;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.global-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.global-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.global-item p {
    color: rgba(44, 62, 80, 0.7); /* Using --text-color with opacity */
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.global-benefits {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.global-benefits h3 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.global-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.global-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(44, 62, 80, 0.7); /* Using --text-color with opacity */
    font-size: 1rem;
    line-height: 1.6;
}

.global-benefits li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .global-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .global-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .global-benefits {
        padding: 2rem;
        margin: 2rem 1rem;
    }
}

/* Language Selection Screen */
.language-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.language-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
}

.language-logo {
    margin-bottom: 2rem;
}

.splash-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.language-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.language-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.language-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.lang-btn {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    border: 2px solid #ffffff33;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* RTL Support for Arabic */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .service-card ul li {
    padding-right: 25px;
    padding-left: 0;
}

[dir="rtl"] .service-card ul li:before {
    right: 0;
    left: auto;
}

[dir="rtl"] .pricing-features li {
    padding-right: 25px;
    padding-left: 0;
    text-align: right;
}

[dir="rtl"] .pricing-features li i {
    right: 0;
    left: auto;
}

[dir="rtl"] .global-benefits li {
    padding-right: 25px;
    padding-left: 0;
}

[dir="rtl"] .global-benefits li i {
    right: 0;
    left: auto;
    margin-left: 10px;
    margin-right: 0;
}

[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
}

[dir="rtl"] .faq-question i {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .modal-step ul li {
    padding-right: 25px;
    padding-left: 0;
}

[dir="rtl"] .modal-step ul li:before {
    right: 0;
    left: auto;
}

[dir="rtl"] .whatsapp-button i {
    margin-right: 0;
    margin-left: 10px;
}

/* Language Selection Screen Enhancements */
.language-screen {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.language-content {
    max-width: 500px;
    text-align: center;
}

.language-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.lang-btn {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    border: 2px solid #ffffff33;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.splash-logo {
    max-width: 200px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    [dir="rtl"] .nav-links {
        right: -100%;
        left: auto;
    }

    [dir="rtl"] .nav-links.active {
        right: 0;
        left: auto;
    }

    [dir="rtl"] .mobile-menu-btn {
        right: auto;
        left: 20px;
    }

    .language-buttons {
        flex-direction: column;
        align-items: center;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Language-specific styles */
.arabic-lang {
    font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

.english-lang {
    font-family: 'Poppins', sans-serif;
}