/* Extracted and consolidated styles from the original frontend.php */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        body { font-family: 'Inter', sans-serif; }

        .green-royal-gradient {
            background: linear-gradient(135deg, 
                rgba(86, 165, 61, 1.0) 0%,     /* Emerald green */
                rgba(16, 185, 129, 0.8) 25%,    /* Green */
                rgba(29, 49, 72, 1) 75%,    /* Royal blue */
                rgba(30, 40, 62, 0.85) 100%    /* Deep royal blue */
            );
        }

        .service-card {
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .parallax-banner {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        .feature-icon {
            transition: all 0.3s ease;
        }
        
        .feature-icon:hover {
            transform: scale(1.1);
        }
        
        .stat-card {
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .team-card {
            transition: all 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .timeline-item {
            position: relative;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 16px;
            height: 16px;
            background: #3B82F6;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 4px #3B82F6;
        }

        .content-card {
            transition: all 0.3s ease;
        }
        
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .tab-button.active {
            background: #3b82f6;
            color: white;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        .timeline-item {
            transition: all 0.3s ease;
        }
        
        .timeline-item:hover {
            transform: translateX(10px);
        }
        
        .skill-bar {
            width: 0%;
            transition: width 2s ease-in-out;
        }
        
        .skill-bar.animate {
            width: var(--skill-width);
        }
        
        .quote-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .achievement-card {
            transition: all 0.3s ease;
        }
        
        .achievement-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .social-link {
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            transform: translateY(-3px);
        }




/* Header Styles */
.header-top {
    background: #2c3e50;
    color: white;
    font-size: 14px;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1100;
}

/* adjust main header so it sits below the sticky top bar */
.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 44px; /* leaves room for the .header-top */
    z-index: 1000;
}

/* Hero Slider Styles */
/* Extracted and consolidated styles from the original frontend.php */

/* Header Styles */
.header-top {
    background: #2c3e50;
    color: white;
    font-size: 14px;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1100;
}

/* adjust main header so it sits below the sticky top bar */
.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 44px; /* leaves room for the .header-top */
    z-index: 1000;
}

/* Hero Slider Styles */
.hero-slider { position: relative; height: 700px; overflow: hidden; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0;  transform: scale(1.1); transition:all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); background-size: cover; background-position: center; display: flex; align-items: center; background-repeat: no-repeat; }
/* transition: opacity 1.2s ease-in-out; */
.slide.active { opacity: 1; transform: scale(1);}

.slide-content {
            position: relative;
            z-index: 3;
            animation: slideInContent 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        }

        @keyframes slideInContent {
            0% {
                opacity: 0;
                transform: translateY(60px) translateX(-30px);
                filter: blur(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0) translateX(0);
                filter: blur(0);
            }
        }
.slide-1{ background-image: linear-gradient(135deg, rgba(0,124,186,0.3), rgba(0,124,186,0.3)), url("../../images/writing.png");font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(3rem, 6vw, 5.5rem);line-height: 0.95;color: #ffffff;
transform-style: preserve-3d;}

.slide-1 .slide-content h1 { 
            letter-spacing: -0.04em;
            transform-style: preserve-3d; }

.slide-1 .slide-content h1 .word-3d {
            display: inline-block;
            position: relative;
            transform-style: preserve-3d;
            animation: rotate3D 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        }
        .slide-1 .slide-content h1 .word-3d:nth-child(1) { animation-delay: 0.1s; }
        .slide-1 .slide-content h1 .word-3d:nth-child(2) { animation-delay: 0.2s; }
        .slide-1 .slide-content h1 .word-3d:nth-child(3) { animation-delay: 0.3s; }
        .slide-1 .slide-content h1 .word-3d:nth-child(4) { animation-delay: 0.4s; }
        .slide-1 .slide-content h1 .word-3d:nth-child(5) { animation-delay: 0.5s; }
        .slide-1 .slide-content h1 .word-3d:nth-child(6) { animation-delay: 0.6s; }
        .slide-1 .slide-content h1 .word-3d:nth-child(7) { animation-delay: 0.7s; }
        .slide-1 .slide-content h1 .word-3d:nth-child(8) { animation-delay: 0.8s; }
        .slide-1 .slide-content h1 .word-3d:nth-child(9) { animation-delay: 0.9s; }
        .slide-1 .slide-content h1 .word-3d:nth-child(10) { animation-delay: 1.0s; }


        .slide-1 .slide-content h1 .word-3d::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            color: rgba(44, 185, 37, 0.8);
            transform: translateZ(-20px) translateY(2px) translateX(2px);
            z-index: -1;
            filter: blur(1px);
        }

        .slide-1 .slide-content h1 .word-3d::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            color: rgba(222, 214, 212, 0.6);
            transform: translateZ(-40px) translateY(4px) translateX(4px);
            z-index: -2;
            filter: blur(2px);
        }

        @keyframes rotate3D {
            0% {
                opacity: 0;
                transform: rotateX(-90deg) rotateY(-30deg) translateZ(-100px);
            }
            50% {
                transform: rotateX(-45deg) rotateY(-15deg) translateZ(-50px);
            }
            100% {
                opacity: 1;
                transform: rotateX(0deg) rotateY(0deg) translateZ(0px);
            }
        }




 

.slide-2 { background-image: linear-gradient(135deg, rgba(255,107,53,0.3), rgba(255,107,53,0.3)), url("../../images/laptop.png");font-family: 'Space Grotesk', sans-serif;font-weight: 700;font-size: clamp(2.8rem, 5.8vw, 5.2rem);line-height: 1;}

.slide-2 .slide-content h1 {animation: shimmer 2.5s ease-in-out infinite; z-index: 1; }

        @keyframes shimmer {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }





.slide-3 {background-image: linear-gradient(135deg, rgba(44,62,80,0.3), rgba(44,62,80,0.3)), url("../../images/writing.png");   font-family: 'Outfit', sans-serif;font-weight: 300;font-size: clamp(3.2rem, 6.2vw, 5.8rem);line-height: 1.1;
            color: #ffffff;
            margin-bottom: 1.5rem;
            position: relative;
            perspective: 1500px;
            transform-style: preserve-3d;}


.slide-3 .slide-content h1 .char-3d {
            display: inline-block;
            position: relative;
            transform-style: preserve-3d;
            animation: spiralIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
        }

        .slide-3 .slide-content h1 .char-3d:nth-child(1) { animation-delay: 0.05s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(2) { animation-delay: 0.1s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(3) { animation-delay: 0.15s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(4) { animation-delay: 0.2s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(5) { animation-delay: 0.25s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(6) { animation-delay: 0.3s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(7) { animation-delay: 0.35s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(8) { animation-delay: 0.4s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(9) { animation-delay: 0.45s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(10) { animation-delay: 0.5s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(11) { animation-delay: 0.55s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(12) { animation-delay: 0.6s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(13) { animation-delay: 0.65s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(14) { animation-delay: 0.7s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(15) { animation-delay: 0.75s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(16) { animation-delay: 0.8s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(17) { animation-delay: 0.85s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(18) { animation-delay: 0.9s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(19) { animation-delay: 0.95s; }
        .slide-3 .slide-content h1 .char-3d:nth-child(20) { animation-delay: 1.0s; }

        .slide-3 .slide-content h1 .char-3d::before {
            content: attr(data-char);
            position: absolute;
            top: 0;
            left: 0;
            color: rgba(255, 107, 107, 0.6);
            transform: translateZ(-15px) translateY(1px) translateX(1px);
            z-index: -1;
        }

        .slide-3 .slide-content h1 .char-3d::after {
            content: attr(data-char);
            position: absolute;
            top: 0;
            left: 0;
            color: rgba(255, 217, 61, 0.4);
            transform: translateZ(-30px) translateY(2px) translateX(2px);
            z-index: -2;
        }

        @keyframes spiralIn {
            0% {
                opacity: 0;
                transform: rotateZ(-360deg) rotateY(-180deg) scale(0) translateZ(-200px);
            }
            50% {
                transform: rotateZ(-180deg) rotateY(-90deg) scale(1.2) translateZ(-100px);
            }
            100% {
                opacity: 1;
                transform: rotateZ(0deg) rotateY(0deg) scale(1) translateZ(0px);
            }
        }

        .slide-3 .slide-content h1 .rainbow-3d {
            background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f, #4d9de0);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift3D 3s ease-in-out infinite;
            display: inline-block;
            transform-style: preserve-3d;
            position: relative;
        }

        .slide-3 .slide-content h1 .rainbow-3d::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f, #4d9de0);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transform: translateZ(-20px) translateY(2px) translateX(2px);
            opacity: 0.7;
            z-index: -1;
        }

        @keyframes gradientShift3D {
            0%, 100% { 
                background-position: 0% 50%; 
                transform: translateZ(0px);
            }
            50% { 
                background-position: 100% 50%; 
                transform: translateZ(5px);
            }
        }
















 .slide-3 .slide-content h1 span {
            background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f, #4d9de0);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite;
        }

 @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
/* Text Animation Keyframes */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slide Content Animation */
.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    line-height: 1.6;
}

.slide-content .btn-group { opacity: 0; }

.slide.active .slide-content h1 { animation: slideInUp 1s ease-out 0.3s forwards; }
.slide.active .slide-content p { animation: slideInUp 1s ease-out 0.6s forwards; }
.slide.active .slide-content .btn-group { animation: slideInUp 1s ease-out 0.9s forwards; }

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.nav-dot.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(255,255,255,0.5);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover { transform: translateY(-50%) scale(1.1); background: rgba(255,255,255,0.25); }
.slider-arrow.prev { left: 40px; }
.slider-arrow.next { right: 40px; }

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 16px;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,124,186,0.4); }

.btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-left: 20px;
    font-size: 16px;
}

.btn-secondary:hover { background: white; color: #007cba; transform: translateY(-3px); }

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 400"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,124,186,0.03)" stroke-width="1"/></pattern></defs><rect width="1920" height="400" fill="url(%23grid)"/></svg>');
}

.highlight-content { position: relative; z-index: 2; }

.highlight-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight-subtitle {
    font-size: 1.4rem;
    color: #6c757d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007cba, #ff6b35);
    margin: 0 auto 4rem;
    border-radius: 2px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #007cba;
    margin-bottom: 0.5rem;
}

.stat-label { font-size: 1.1rem; color: #6c757d; font-weight: 500; }

/* Work With Us Section */
.work-section { padding: 100px 0; background: white; }
.section-title { font-size: 3rem; font-weight: 700; color: #2c3e50; text-align: center; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.2rem; color: #6c757d; text-align: center; max-width: 600px; margin: 0 auto 4rem; line-height: 1.6; }

/* Process Section */
.process-section { padding: 100px 0; background: #f8f9fa; }
.process-step { text-align: center; padding: 2rem; }
.process-icon { width: 100px; height: 100px; background: linear-gradient(135deg, #007cba, #ff6b35); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2.5rem; color: white; position: relative; }
.process-icon::after { content: attr(data-step); position: absolute; top: -10px; right: -10px; background: #ff6b35; color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }

/* Help Section */
.help-section { padding: 100px 0; background: white; }
.help-card { background: white; padding: 3rem 2rem; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.3s ease; text-align: center; border: 1px solid #e9ecef; height: 100%; }
.help-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.help-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #007cba, #ff6b35); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2rem; color: white; }

/* Success, About, Cases, Team and other section styles are retained from original */
/* Many more styles (testimonials, pricing, clients, forms, responsive rules) are included below */

.success-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    position: relative;
    overflow: hidden;
}

.success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 600"><circle cx="200" cy="150" r="100" fill="rgba(255,255,255,0.05)"/><circle cx="1700" cy="450" r="150" fill="rgba(255,255,255,0.03)"/><rect x="800" y="200" width="300" height="200" fill="rgba(255,255,255,0.04)" rx="20"/></svg>');
}

.success-content { position: relative; z-index: 2; }
.success-image { background: rgba(255,255,255,0.1); border-radius: 20px; padding: 3rem; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }

/* About */
.about-section { padding: 100px 0; background: white; }
.about-image { background: linear-gradient(135deg, #f8f9fa, #e9ecef); border-radius: 20px; padding: 3rem; height: 400px; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: #007cba; }

/* Testimonials, Cases, Team and other card styles */
.testimonial-card, .case-card, .team-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}
.testimonial-card:hover, .case-card:hover, .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Contact form */
.appointment-section, .quote-section, .excellence-section { padding: 100px 0; }
.form-control { width: 100%; padding: 15px 20px; border: 1px solid rgba(255,255,255,0.3); border-radius: 10px; background: rgba(255,255,255,0.1); color: white; font-size: 16px; transition: all 0.3s ease; backdrop-filter: blur(5px); }
.form-control::placeholder { color: rgba(255,255,255,0.7); }
.form-control:focus { outline: none; border-color: white; background: rgba(255,255,255,0.2); }

/* Footer */
.bg-dark { background: #2c3e50; }
.footer a { color: #cbd5e1; }

/* Mobile Menu Toggle Button */
.mobile-menu-toggle { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 10; }
.mobile-menu-toggle span { display: block; height: 3px; width: 100%; background: #2c3e50; border-radius: 3px; opacity: 1; left: 0; transform: rotate(0deg); transition: .25s ease-in-out; transform-origin: left center; }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: -3px; left: 8px; }
.mobile-menu-toggle.active span:nth-child(2) { width: 0%; opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 39px; left: 8px; }

@media (min-width: 1024px) { .mobile-menu-toggle { display: none !important; } }
@media (max-width: 1023px) { .mobile-menu-toggle { display: flex; } }

/* Search modal */
.search-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: none; align-items: center; justify-content: center; z-index: 9999; }
.search-modal.active { display: flex; }
.search-content { background: white; padding: 2rem; border-radius: 20px; width: 90%; max-width: 500px; position: relative; }
.search-input { width: 100%; padding: 15px 20px; border: 2px solid #e9ecef; border-radius: 50px; font-size: 16px; outline: none; transition: all 0.3s ease; }
.search-input:focus { border-color: #007cba; box-shadow: 0 0 0 3px rgba(0,124,186,0.1); }
.search-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 24px; color: #6c757d; cursor: pointer; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider { height: 600px; }
    .slide-content h1 { font-size: 2.5rem; }
    .slide-content p { font-size: 1.1rem; }
    .btn-secondary { margin-left: 0; margin-top: 15px; }
    .slider-arrow { display: none; }
    .highlight-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .pricing-card.featured { transform: none; margin-top: 2rem; }
}

@media (max-width: 640px) {
    .hero-slider { height: 500px; }
    .slide-content h1 { font-size: 2rem; }
    .highlight-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
}

/* Animation classes */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: all 0.8s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Small styling for country select + mobile input */
.phone-input-wrap select { appearance: none; -webkit-appearance: none; -moz-appearance: none; padding: 10px 12px; border-radius: 8px; border: 1px solid #d1d5db; background: white; }
.phone-input-wrap input[type="tel"] { padding: 10px 12px; border-radius: 8px; border: 1px solid #d1d5db; }

/* small utilities */
.form-control, .form-input { border: 1px solid #d1d5db; border-radius: 8px; padding: 10px; }


/* Text Animation Keyframes */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slide Content Animation */
.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    line-height: 1.6;
}

.slide-content .btn-group { opacity: 0; }

.slide.active .slide-content h1 { animation: slideInUp 1s ease-out 0.3s forwards; }
.slide.active .slide-content p { animation: slideInUp 1s ease-out 0.6s forwards; }
.slide.active .slide-content .btn-group { animation: slideInUp 1s ease-out 0.9s forwards; }

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.nav-dot.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(255,255,255,0.5);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover { transform: translateY(-50%) scale(1.1); background: rgba(255,255,255,0.25); }
.slider-arrow.prev { left: 40px; }
.slider-arrow.next { right: 40px; }

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 16px;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,124,186,0.4); }

.btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-left: 20px;
    font-size: 16px;
}

.btn-secondary:hover { background: white; color: #007cba; transform: translateY(-3px); }

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 400"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,124,186,0.03)" stroke-width="1"/></pattern></defs><rect width="1920" height="400" fill="url(%23grid)"/></svg>');
}

.highlight-content { position: relative; z-index: 2; }

.highlight-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight-subtitle {
    font-size: 1.4rem;
    color: #6c757d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007cba, #ff6b35);
    margin: 0 auto 4rem;
    border-radius: 2px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #007cba;
    margin-bottom: 0.5rem;
}

.stat-label { font-size: 1.1rem; color: #6c757d; font-weight: 500; }

/* Work With Us Section */
.work-section { padding: 100px 0; background: white; }
.section-title { font-size: 3rem; font-weight: 700; color: #2c3e50; text-align: center; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.2rem; color: #6c757d; text-align: center; max-width: 600px; margin: 0 auto 4rem; line-height: 1.6; }

/* Process Section */
.process-section { padding: 100px 0; background: #f8f9fa; }
.process-step { text-align: center; padding: 2rem; }
.process-icon { width: 100px; height: 100px; background: linear-gradient(135deg, #007cba, #ff6b35); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2.5rem; color: white; position: relative; }
.process-icon::after { content: attr(data-step); position: absolute; top: -10px; right: -10px; background: #ff6b35; color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }

/* Help Section */
.help-section { padding: 100px 0; background: white; }
.help-card { background: white; padding: 3rem 2rem; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.3s ease; text-align: center; border: 1px solid #e9ecef; height: 100%; }
.help-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.help-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #007cba, #ff6b35); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2rem; color: white; }

/* Success, About, Cases, Team and other section styles are retained from original */
/* Many more styles (testimonials, pricing, clients, forms, responsive rules) are included below */

.success-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    position: relative;
    overflow: hidden;
}

.success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 600"><circle cx="200" cy="150" r="100" fill="rgba(255,255,255,0.05)"/><circle cx="1700" cy="450" r="150" fill="rgba(255,255,255,0.03)"/><rect x="800" y="200" width="300" height="200" fill="rgba(255,255,255,0.04)" rx="20"/></svg>');
}

.success-content { position: relative; z-index: 2; }
.success-image { background: rgba(255,255,255,0.1); border-radius: 20px; padding: 3rem; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }

/* About */
.about-section { padding: 100px 0; background: white; }
.about-image { background: linear-gradient(135deg, #f8f9fa, #e9ecef); border-radius: 20px; padding: 3rem; height: 400px; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: #007cba; }

/* Testimonials, Cases, Team and other card styles */
.testimonial-card, .case-card, .team-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}
.testimonial-card:hover, .case-card:hover, .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Contact form */
.appointment-section, .quote-section, .excellence-section { padding: 100px 0; }
.form-control { width: 100%; padding: 15px 20px; border: 1px solid rgba(255,255,255,0.3); border-radius: 10px; background: rgba(255,255,255,0.1); color: white; font-size: 16px; transition: all 0.3s ease; backdrop-filter: blur(5px); }
.form-control::placeholder { color: rgba(255,255,255,0.7); }
.form-control:focus { outline: none; border-color: white; background: rgba(255,255,255,0.2); }

/* Footer */
.bg-dark { background: #2c3e50; }
.footer a { color: #cbd5e1; }

/* Mobile Menu Toggle Button */
.mobile-menu-toggle { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 10; }
.mobile-menu-toggle span { display: block; height: 3px; width: 100%; background: #2c3e50; border-radius: 3px; opacity: 1; left: 0; transform: rotate(0deg); transition: .25s ease-in-out; transform-origin: left center; }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: -3px; left: 8px; }
.mobile-menu-toggle.active span:nth-child(2) { width: 0%; opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 39px; left: 8px; }

@media (min-width: 1024px) { .mobile-menu-toggle { display: none !important; } }
@media (max-width: 1023px) { .mobile-menu-toggle { display: flex; } }

/* Search modal */
.search-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: none; align-items: center; justify-content: center; z-index: 9999; }
.search-modal.active { display: flex; }
.search-content { background: white; padding: 2rem; border-radius: 20px; width: 90%; max-width: 500px; position: relative; }
.search-input { width: 100%; padding: 15px 20px; border: 2px solid #e9ecef; border-radius: 50px; font-size: 16px; outline: none; transition: all 0.3s ease; }
.search-input:focus { border-color: #007cba; box-shadow: 0 0 0 3px rgba(0,124,186,0.1); }
.search-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 24px; color: #6c757d; cursor: pointer; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider { height: 600px; }
    .slide-content h1 { font-size: 2.5rem; }
    .slide-content p { font-size: 1.1rem; }
    .btn-secondary { margin-left: 0; margin-top: 15px; }
    .slider-arrow { display: none; }
    .highlight-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .pricing-card.featured { transform: none; margin-top: 2rem; }
}

@media (max-width: 640px) {
    .hero-slider { height: 500px; }
    .slide-content h1 { font-size: 2rem; }
    .highlight-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
}

/* Animation classes */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: all 0.8s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Small styling for country select + mobile input */
.phone-input-wrap select { appearance: none; -webkit-appearance: none; -moz-appearance: none; padding: 10px 12px; border-radius: 8px; border: 1px solid #d1d5db; background: white; }
.phone-input-wrap input[type="tel"] { padding: 10px 12px; border-radius: 8px; border: 1px solid #d1d5db; }

/* small utilities */
.form-control, .form-input { border: 1px solid #d1d5db; border-radius: 8px; padding: 10px; }