
     html, body {
    height: auto;       /* or 100% */
    margin: 0;
    padding: 0;
    overflow-y: auto;   /* scroll enable */
}
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: hsl(0, 100%, 98%);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header with Glass Effect */
        header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            z-index: 10;
        }

        .logo img {
            height: 40px;
            transition: all 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }
        
        /* Dynamic Island Style Navigation */
        .nav-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.253);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 15px;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            margin: 0;
            align-items: center;
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.6rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            color: #000;
            background: rgba(255, 255, 255, 0.15);
        }

        /* Dropdown and Tooltip */
        .dropdown {
            position: relative;
        }

        .tooltip-box {
            position: absolute;
            top: 120%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            opacity: 0;
            visibility: hidden;
            display: flex;
            flex-direction: column;
            gap: 5px;
            min-width: 160px;
            padding: 10px;
            border-radius: 12px;
            background-color: #ffffff;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .dropdown:hover .tooltip-box {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .tooltip-box a {
            padding: 8px 12px;
            border-radius: 6px;
            background-color: transparent;
        }
        
        .tooltip-box a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #000;
        }

        /* Eagle Logo in Center */
        .eagle-logo {
            margin: 0 1rem;
        }

        .eagle-logo img {
            width: 32px;
            height: 32px;
            transition: all 0.3s ease;
        }

        /* Right Section with Contact Button */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 10;
        }

        .contact-btn {
            background: rgba(255, 0, 0, 1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-btn:hover {
            background: rgb(0, 0, 0);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* --- Mobile Menu Styles (NEW - More Interesting Design) --- */
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            z-index: 1001; /* Ensure it's above other nav elements */
        }

        /* Wrapper for the side panel and overlay */
        .mobile-nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        
        /* The actual side panel */
        .mobile-nav-panel {
            position: fixed;
            top: 0;
            right: -100%; /* Start off-screen */
            width: 85%;
            max-width: 320px;
            height: 100%;
            background: #ff0000;
            box-shadow: -10px 0 30px rgba(0,0,0,0.2);
            transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
        }

        .mobile-nav-wrapper.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-wrapper.active .mobile-nav-panel {
            right: 0; /* Slide in */
        }
        
        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .mobile-nav-links li {
            margin: 0.5rem 0;
             /* Animation setup */
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        
         /* Staggered animation for list items */
        .mobile-nav-wrapper.active .mobile-nav-links li {
            opacity: 1;
            transform: translateX(0);
        }
        .mobile-nav-wrapper.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.20s; }
        .mobile-nav-wrapper.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.25s; }
        .mobile-nav-wrapper.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.30s; }
        .mobile-nav-wrapper.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.35s; }

        .mobile-nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1.5rem; /* Slightly smaller for panel */
            font-weight: 500;
            padding: 0.8rem 1rem;
            display: block;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .mobile-nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .mobile-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 1.8rem;
            color: #888;
            cursor: pointer;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-close:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }
        
        /* --- Contact Button in Mobile Nav --- */
        .mobile-contact-wrapper {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .mobile-nav-wrapper.active .mobile-contact-wrapper {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.40s; /* Appears after the last link */
        }
        
        .mobile-contact-btn {
            display: inline-block;
            width: 100%;
            padding: 1rem 1.5rem;
            background-color: #fff;
            color: #111;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600; /* Bolder */
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-align: center;
        }

        .mobile-contact-btn:hover {
            background-color: #e0e0e0;
            transform: scale(1.03);
        }

        /* --- Responsive Media Query --- */
        @media (max-width: 992px) {
            .nav-center, .contact-btn {
                display: none !important;
            }
            .mobile-menu {
                display: block !important;
                color: #333;
            }

            /* --- Mobile Dynamic Island Styles --- */
            header, header.scrolled {
                padding: 0.75rem 0;
                display: flex;
                justify-content: center;
                align-items: center;
                background: transparent;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border-bottom: none;
                box-shadow: none;
            }
            
            nav.container {
                width: 90vw; 
                max-width: 400px;
                background: rgba(255, 255, 255, 0.2);
                backdrop-filter: blur(30px);
                -webkit-backdrop-filter: blur(30px);
                border: 1px solid rgba(255, 255, 255, 0.25);
                border-radius: 15px;
                padding: 0.2rem 1.5rem; 
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            }

            .logo img {
                height: 35px;
            }
        }
        /* Hero Section */
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .hero-section {
            height: 100vh;
            min-height: 600px; /* Ensures minimum height on very small screens */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            font-family: 'Arial', sans-serif;
        }

   .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/herosecc.avif');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* for mobile performance */
    z-index: 1; /* niche rakho */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
    z-index: 2; /* upar lana */
}


        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: rgb(0, 0, 0);
            max-width: 900px;
            padding: 20px;
            width: 100%;
        }

        .hero-quote {
            font-size: clamp(2rem, 8vw, 4rem); /* Responsive font size */
            font-weight: 700;
            margin: 0 0 20px 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
            text-align: center;
        }

        .static-text {
            display: block;
            margin-bottom: 10px;
            color: hsl(0, 0%, 100%);
        }

        .dynamic-text {
            color: #ffffff;
         background:  #ff0000;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            transition: all 0.3s ease-in-out;
            display: block;
            text-align: center;
            width: 100%;
            min-height: 1.2em;
        }

        .hero-description {
            font-size: clamp(1rem, 4vw, 1.3rem); /* Responsive font size */
            line-height: 1.6;
            margin-bottom: 30px;
            color: rgba(224, 224, 224, 0.9);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 10px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .btn {
            padding: 15px 30px;
            font-size: clamp(0.9rem, 3vw, 1.1rem); /* Responsive font size */
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            min-width: 160px;
            text-align: center;
            /* Better touch targets for mobile */
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Common Glassmorphism Shine Effect */
.btn-theme,
.btn-connect {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Theme button base style */
.btn-theme {
    background:rgba(255, 0, 0, 1);
    color: rgb(255, 255, 255);
    border: 2px solid rgb (123, 122, 122);
}

/* Connect button base style */
.btn-connect {
    background: rgba(255, 0, 0, 1);
    color: rgb(255, 255, 255);
    border: 2px solid rgb (123, 122, 122);
}

/* Shine Effect (same as contact-btn) */
.btn-theme::before,
.btn-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background:  rgb(156, 13, 13);
    transition: left 0.3s ease;
}

.btn-theme:hover::before,
.btn-connect:hover::before {
    left: 100%;
}

/* Hover Styles */
.btn-theme:hover,
.btn-theme:active {
    background: black;
    color: rgb (123, 122, 122);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-connect:hover,
.btn-connect:active {
    background: black;
    color: rgb (123, 122, 122);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 255, 255, 0.2);
}

        /* Mobile-First Responsive Design */
        
        /* Small Mobile Devices (320px - 480px) */
        @media (max-width: 480px) {
            .hero-section {
                min-height: 100vh;
                padding: 10px 0;
            }
            
            .hero-content {
                padding: 15px;
            }
            
            .hero-quote {
                margin-bottom: 15px;
            }
            
            .static-text {
                margin-bottom: 8px;
            }
            
            .hero-description {
                margin-bottom: 25px;
                padding: 0 5px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 12px;
                margin-top: 15px;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                padding: 12px 25px;
                min-height: 50px;
            }
        }

        /* Medium Mobile Devices (481px - 768px) */
        @media (min-width: 481px) and (max-width: 768px) {
            .hero-content {
                padding: 20px;
            }
            
            .hero-buttons {
                gap: 15px;
            }
            
            .btn {
                min-width: 180px;
                padding: 14px 28px;
            }
        }

        /* Tablets (769px - 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero-quote {
                font-size: 3.5rem;
            }
            
            .hero-description {
                font-size: 1.2rem;
            }
            
            .btn {
                padding: 15px 32px;
            }
        }

        /* Large Screens (1025px+) */
        @media (min-width: 1025px) {
            .hero-background {
                background-attachment: fixed; /* Re-enable parallax on desktop */
            }
        }

        /* Landscape Mobile Orientation */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero-section {
                min-height: 500px;
            }
            
            .hero-quote {
                font-size: 2.5rem;
                margin-bottom: 10px;
            }
            
            .hero-description {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .hero-buttons {
                flex-direction: row;
                gap: 10px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                min-width: 140px;
            }
        }

        /* High DPI Displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .hero-background {
                background-image: url('images/herosecc.avif');
            }
        }

        /* Animation optimizations for mobile */
        @media (prefers-reduced-motion: reduce) {
            .btn-theme {
                animation: none;
            }
            
            .dynamic-text {
                transition: opacity 0.3s ease;
            }
        }

        /* Touch-friendly hover states */
        @media (hover: none) and (pointer: coarse) {
            .btn:hover::before {
                left: 0;
            }
            
            .btn-theme:hover {
                animation: none;
            }
        }

        /* Animation for buttons - reduced on mobile */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .btn-theme {
            animation: pulse 3s infinite;
        }

        .btn-theme:hover,
        .btn-theme:active {
            animation: none;
        }

        /* Mobile performance optimizations */
        @media (max-width: 768px) {
            .btn-theme {
                animation-duration: 4s; /* Slower animation on mobile */
            }
            
            .hero-background {
                will-change: auto; /* Reduce GPU usage */
            }
        }
       

        /* Footer */
  /* Footer */
    footer {
    background: #ffffff;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid #333333;
    position: relative; 
    bottom: 0;       /* screen ke bilkul neeche */
    left: 0;         /* left se start */
    width: 100%;     /* full screen width cover kare */
    z-index: 1000;   /* header aur content ke neeche na chhup jaye */
}


        .social-links {
            margin-bottom: 2rem;
        }

        .social-links a {
            color: #000000;
            font-size: 1.5rem;
            margin: 0 1rem;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .social-links a:hover {
            color: #878787;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        footer p {
            color: #888888;
            font-size: 0.9rem;
        }
        .footer-text {
    color: #000000;              /* normal black */
    text-decoration: none;       /* underline off */
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    margin: 0.3rem 0;
    display: inline-block;
}

.footer-text:hover {
    color: #878787;              /* hover pe grey */
    transform: translateY(-2px); /* thoda lift effect */
}

    /*proficiency selection menu styles */

       @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --background-color: #ffffff;
    --text-primary: #ff0000;
    --text-secondary: #242424;
    --accent-color: #ff0000;
    --border-color: rgba(255, 255, 255, 0.808);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.main-container {
    width: 100%;
}

.section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
}

#hero {
    min-height: 45vh;
    padding: 3rem 1.5rem;
}

#hero + .proficiency-section {
    padding-top: 2rem;
}

.hero-section-content { text-align: center; }
.agency-logo { font-size: 1rem; font-weight: 600; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 1rem; border: 1px solid var(--border-color); padding: 0.5rem 1rem; border-radius: 20px; display: inline-block; }
.main-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; letter-spacing: -3px; line-height: 1.1; margin-bottom: 1.5rem; }
.main-subtitle { font-size: clamp(1rem, 2.5vw, 1.1rem); color: var(--text-secondary); max-width: 650px; margin: 0 auto 2rem; line-height: 1.7; }
.scroll-indicator { color: var(--text-secondary); font-size: 0.9rem; animation: fade-in-out 2.5s infinite; position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);}

@keyframes fade-in-out { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.proficiency-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
}

.text-content {
    text-align: left;
}

.proficiency-section:nth-of-type(even) .text-content {
    order: 2;
}
.proficiency-section:nth-of-type(even) .portfolio-content {
    order: 1;
}

.service-icon, .section-title, .section-description, .portfolio-content {
    will-change: transform, opacity;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
}
.service-icon svg {
    width: 50%;
    height: 50%;
    color: var(--accent-color);
}

/* === THIS IS THE CORRECTED PART === */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: rgb(255, 0, 0);
    margin-bottom: 20px;
}
.section-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: black;
    line-height: 1.7;
}
/* ==================================== */

.portfolio-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.scroll-progress-indicator { position: fixed; top: 0; left: 0; height: 4px; background-color: var(--text-primary); width: 0%; z-index: 10; transition: width 0.1s linear; }

@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }
    #hero + .proficiency-section {
        padding-top: 2rem;
    }
    .proficiency-section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
     .text-content,
     .proficiency-section:nth-of-type(even) .text-content {
        order: 1;
        text-align: center;
    }
     .portfolio-content,
     .proficiency-section:nth-of-type(even) .portfolio-content {
        order: 2;
    }
     .service-icon {
        margin-left: auto;
        margin-right: auto;
    }
}
            

    /* Comparison Section */
  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background: #ffffff;
        }

        .comparison-section {
            background: #ffffff;
            padding: 80px 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out forwards;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            background: #ff0000;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }

        .comparison-container {
            display: grid;
            grid-template-columns: 1fr 2px 1fr;
            gap: 40px;
            align-items: start;
            position: relative;
        }

        .divider-line {
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, #e0e0e0 20%, #e0e0e0 80%, transparent 100%);
            position: relative;
            justify-self: center;
            min-height: 600px;
        }

        .divider-line::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ffffff;
            color: #667eea;
            font-weight: 700;
            font-size: 1.2rem;
    
        }
        .divider-line2 {
    width: 100%; /* full width */
    height: 2px; /* horizontal thickness */
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 20%, #e0e0e0 80%, transparent 100%);
    position: relative;
    align-self: center;
    min-width: 600px; /* agar chahte ho min size */
}

.divider-line2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}


        .comparison-side {
            padding: 20px 0;
            opacity: 0;
            transform: translateY(50px);
            position: relative;
        }

        .comparison-side.us {
            animation: fadeInLeft 1s ease-out 0.3s forwards;
        }

        .comparison-side.them {
            animation: fadeInRight 1s ease-out 0.5s forwards;
        }

        .side-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .side-image {
            width: 100%;
            height: 100%;
            margin: 0 auto 20px;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .side-image:hover {
            transform: scale(1.05);
        }

        .side-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .side-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .side-title.us {
            color: #28a745;
        }

        .side-title.them {
            color: #dc3545;
        }

        .side-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .side-badge.us {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }

        .side-badge.them {
            background: linear-gradient(135deg, #dc3545, #fd7e14);
            color: white;
        }

        .comparison-points {
            list-style: none;
        }

        .comparison-point {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
            padding: 0;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-20px);
        }

        .comparison-point.us {
            animation: slideInLeft 0.6s ease-out forwards;
        }

        .comparison-point.them {
            animation: slideInRight 0.6s ease-out forwards;
        }

        .comparison-point:nth-child(1) { animation-delay: 0.7s; }
        .comparison-point:nth-child(2) { animation-delay: 0.9s; }
        .comparison-point:nth-child(3) { animation-delay: 1.1s; }
        .comparison-point:nth-child(4) { animation-delay: 1.3s; }

        .comparison-point:hover {
            transform: translateX(10px);
        }

        .point-icon {
            flex-shrink: 0;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.3rem;
            margin-top: 2px;
        }

        .point-icon.us {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .point-icon.them {
            background: linear-gradient(135deg, #dc3545, #fd7e14);
            color: white;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        }

        .point-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #2c3e50;
        }

        .point-content p {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .comparison-section {
                padding: 40px 15px;
            }

            .comparison-container {
                grid-template-columns: 1fr 2px 1fr;
                gap: 20px;
            }

            .divider-line {
                min-height: 500px;
            }

            .side-image {
                width: 100%;
                height: 100%;
            }

            .side-title {
                font-size: 1.4rem;
            }

            .comparison-point {
                margin-bottom: 25px;
            }

            .point-icon {
                width: 30px;
                height: 30px;
                font-size: 1.1rem;
            }

            .point-content h3 {
                font-size: 1.1rem;
            }

            .point-content p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .comparison-container {
                gap: 15px;
            }

            .divider-line::before {
                font-size: 1rem;
                padding: 8px 12px;
            }

            .side-image {
                width: 100%;
                height: 100%;
            }

            .side-title {
                font-size: 1.2rem;
            }

            .side-badge {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            opacity: 0.05;
            animation: float 8s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 3s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

               .divider-button-container {
            grid-column: 1 / -1; /* Span across all columns */
            display: flex;
            flex-direction: column; /* Arrange items vertically */
            align-items: center; /* Center items horizontally */
            margin-top: 30px; /* Adjust as needed for spacing */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out 1.5s forwards; /* Animate after other elements */
            text-align: center; /* Center text within its container */
        }

        .button-text {
            margin-bottom: 20px; /* Space between text and button */
            color: #34495e; /* Darker text for readability */
        }

        .button-text p {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #6c757d;
        }

        .button-text h3 {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px; /* Space between heading and paragraph */
        }

        @media (max-width: 768px) {
            .button-text p {
                font-size: 1rem;
            }
            .button-text h3 {
                font-size: 1.5rem;
            }
            .middle-button {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .button-text p {
                font-size: 0.9rem;
            }
            .button-text h3 {
                font-size: 1.3rem;
            }
            .middle-button {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }
         
.dominate-section {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    max-width: 100%;
      margin-top: -40px;        /* sirf top se kheenchna */
    margin-bottom: 0px;  
    font-family: 'Inter', sans-serif;
        box-sizing: border-box;  
  }

  .dominate-text {
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    max-width: 100%;
    line-height: 1.3;
    margin-bottom: 40px;
  }

  .dominate-text strong {
    font-weight: 900;
    color: red;
  }

  .dominate-button {
      background: rgba(255, 0, 0, 1);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: hsl(0, 0%, 100%);
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            text-decoration:
             none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }


  .dominate-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: left 0.5s ease;
        }

        .dominate-button:hover::before {
            left: 100%;
        }

        .dominate-button:hover {
            background: rgba(0, 0, 0, 0.808);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 0 30px rgba(255, 255, 255, 0.2);
        }z

        
         {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            background: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
            cursor: pointer;
        }

        .portfolio-section {
              background-color: #ffffff;   /* pure white bg */
   color: #ff0000;                 /* text readable */
   padding: 40px 20px;          /* thoda space */
            padding: 80px 20px 40px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .portfolio-title {
            font-size: 1.2rem;
            color: #666;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .portfolio-gallery {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
            touch-action: pan-y;
        }

        .portfolio-item {
            position: absolute;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
            border-radius: 20px;
            overflow: hidden;
            transform-style: preserve-3d;
            will-change: transform, opacity;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transform-origin: center center;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            border-radius: 20px;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            user-select: none;
            -webkit-user-select: none;
        }

        .item-center {
            width: auto;
    height: auto;
    max-width: 400px;   /* adjust */
    max-height: 400px;  /* adjust */
    z-index: 5;
    transform: translate3d(0, 0, 0) scale(1);
    margin: 0 auto;
        }

        .item-left-1 {
            width: auto;
            height: auto;
             max-width: 350px;   /* adjust */
             max-height: 300px;  /* adjust */
            z-index: 4;
            transform: translate3d(-280px, 0, 0) scale(0.8) rotateY(-15deg);
            opacity: 0.8;
            filter: brightness(0.8);
        }

        .item-left-2 {
            width: auto;
            height: auto;
             max-width: 350px;   /* adjust */
             max-height: 300px;  /* adjust */
            z-index: 3;
            transform: translate3d(-450px, 0, 0) scale(0.6) rotateY(-20deg);
            opacity: 0.6;
            filter: brightness(0.7);
        }

        .item-right-1 {
            width: auto;
            height: auto;
             max-width: 350px;   /* adjust */
              max-height: 300px;  /* adjust */
            z-index: 4;
            transform: translate3d(280px, 0, 0) scale(0.8) rotateY(15deg);
            opacity: 0.8;
            filter: brightness(0.8);
        }

        .item-right-2 {
            width: auto;
            height: auto;
            max-width: 350px;   /* adjust */
             max-height: 300px;  /* adjust */
            z-index: 3;
            transform: translate3d(450px, 0, 0) scale(0.6) rotateY(20deg);
            opacity: 0.6;
            filter: brightness(0.7);
        }

        .item-hidden {
            opacity: 0;
            transform: translate3d(0, 0, 0) scale(0.5);
            pointer-events: none;
        }

        /* Navigation arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            user-select: none;
            -webkit-user-select: none;
        }

        .nav-arrow:hover {
            background: #000000;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(73, 73, 73, 0.4);
        }

        .nav-arrow:hover::before {
            border-color: white;
        }

        .nav-arrow::before {
            content: '';
            width: 12px;
            height: 12px;
            border: 2px solid #444444;
            border-left: none;
            border-bottom: none;
            transition: all 0.3s ease;
        }

        .arrow-left {
            left: 30px;
        }

        .arrow-left::before {
            transform: rotate(-135deg) translateX(1px);
        }

        .arrow-right {
            right: 30px;
        }

        .arrow-right::before {
            transform: rotate(45deg) translateX(-1px);
        }

        /* Mobile optimization */
        @media (max-width: 1024px) {
            .portfolio-gallery {
                height: 400px;
            }
            
            .item-center {
                width: 350px;
                height: 450px;
            }
            
            .item-left-1, .item-right-1 {
                width: 220px;
                height: 280px;
            }
            
            .item-left-2, .item-right-2 {
                width: 180px;
                height: 220px;
            }
            
            .item-left-1 {
                transform: translate3d(-220px, 0, 0) scale(0.8) rotateY(-15deg);
            }
            
            .item-left-2 {
                transform: translate3d(-350px, 0, 0) scale(0.6) rotateY(-20deg);
            }
            
            .item-right-1 {
                transform: translate3d(220px, 0, 0) scale(0.8) rotateY(15deg);
            }
            
            .item-right-2 {
                transform: translate3d(350px, 0, 0) scale(0.6) rotateY(20deg);
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .portfolio-gallery {
                height: 350px;
            }
            
            .item-center {
                width: 280px;
                height: 350px;
            }
            
            .item-left-1, .item-right-1 {
                width: 180px;
                height: 220px;
            }
            
            .item-left-2, .item-right-2 {
                width: 140px;
                height: 180px;
            }
            
            .item-left-1 {
                transform: translate3d(-180px, 0, 0) scale(0.7) rotateY(-12deg);
            }
            
            .item-left-2 {
                transform: translate3d(-280px, 0, 0) scale(0.5) rotateY(-15deg);
            }
            
            .item-right-1 {
                transform: translate3d(180px, 0, 0) scale(0.7) rotateY(12deg);
            }
            
            .item-right-2 {
                transform: translate3d(280px, 0, 0) scale(0.5) rotateY(15deg);
            }
            
            .nav-arrow {
                width: 40px;
                height: 40px;
            }
            
            .nav-arrow::before {
                width: 10px;
                height: 10px;
            }
            
            .arrow-left {
                left: 15px;
            }
            
            .arrow-right {
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .portfolio-section {
                padding: 40px 15px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .portfolio-title {
                font-size: 1rem;
            }
            
            .portfolio-gallery {
                height: 300px;
            }
            
            .item-center {
                width: 220px;
                height: 280px;
            }
            
            .item-left-1, .item-right-1 {
                width: 140px;
                height: 180px;
            }
            
            .item-left-2, .item-right-2 {
                display: none;
            }
            
            .item-left-1 {
                transform: translate3d(-140px, 0, 0) scale(0.6) rotateY(-10deg);
            }
            
            .item-right-1 {
                transform: translate3d(140px, 0, 0) scale(0.6) rotateY(10deg);
            }
            
            .nav-arrow {
                width: 35px;
                height: 35px;
            }
            
            .nav-arrow::before {
                width: 8px;
                height: 8px;
            }
            
            .arrow-left {
                left: 10px;
            }
            
            .arrow-right {
                right: 10px;
            }
        }

        /* Hover effects - fixed to prevent flickering */
        .portfolio-item.item-left-1:hover,
        .portfolio-item.item-left-2:hover,
        .portfolio-item.item-right-1:hover,
        .portfolio-item.item-right-2:hover {
            filter: brightness(1) !important;
            opacity: 1 !important;
            z-index: 6 !important;
        }

        .item-center:hover {
            transform: translate3d(0, 0, 0) scale(1.02);
        }

        .item-center:hover img {
            transform: scale(1.05);
        }

        /* Touch feedback */
        .portfolio-item:active {
            transition-duration: 0.1s;
        }

        .nav-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        /* Smooth transitions for all states */
        .portfolio-item.transitioning {
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

       /* Services */
 /* Custom styles for animations and layout */
        body {
            font-family: 'Inter', sans-serif;
            overflow: hidden; /* Prevent scrollbars during animation */
            background-color: #f8fafc;
        }

        /* --- New Loading Animation --- */
        #central-logo {
            transform: scale(1.2);
            filter: blur(4px);
            opacity: 0;
            transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s, opacity 0.8s;
        }

        .hub-container.loaded #central-logo {
            transform: scale(1);
            filter: blur(0px);
            opacity: 1;
        }

        .hub-container.loaded .service-point {
            transform: scale(1);
            opacity: 1;
        }

        .service-point {
            position: absolute;
            transform: scale(0);
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.5s;
        }
        
        /* Symmetrical Reveal Animation Delays */
        .point-1, .point-4 { transition-delay: 0.5s; }
        .point-2, .point-6 { transition-delay: 0.7s; }
        .point-3, .point-5 { transition-delay: 0.9s; }


        /* --- Floating Button Animation with Softer Shadow --- */
        @keyframes float {
            0% {
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04), 0 2px 5px rgba(0,0,0,0.06);
                transform: translatey(0px);
            }
            50% {
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 5px 10px rgba(0,0,0,0.07);
                transform: translatey(-6px);
            }
            100% {
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04), 0 2px 5px rgba(0,0,0,0.06);
                transform: translatey(0px);
            }
        }
        
        /* --- New Glow Animation for Highlighted Button --- */
        @keyframes subtle-glow {
            0% {
                box-shadow: 0 0 4px #ddd6fe, 0 0 8px #c4b5fd, 0 0 12px #a78bfa;
            }
            50% {
                box-shadow: 0 0 8px #ddd6fe, 0 0 16px #c4b5fd, 0 0 24px #a78bfa;
            }
            100% {
                box-shadow: 0 0 4px #ddd6fe, 0 0 8px #c4b5fd, 0 0 12px #a78bfa;
            }
        }

        .service-button {
            animation: float 4s ease-in-out infinite;
        }

        /* Unique, staggered delays for float animations on each button */
        .point-1 .service-button { animation-delay: 0s; }
        .point-2 .service-button { animation-delay: -0.7s; }
        .point-3 .service-button { animation-delay: -1.4s; }
        .point-4 .service-button { animation-delay: -2.1s; }
        .point-5 .service-button { animation-delay: -2.8s; }
        .point-6 .service-button { animation-delay: -3.5s; }


        /* --- Tooltip / Modal --- */
        #tooltip-backdrop {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease-in-out;
            backdrop-filter: blur(0px);
        }
        
        #tooltip-backdrop.visible {
            opacity: 1;
            pointer-events: all;
            backdrop-filter: blur(8px);
        }

        #tooltip {
            transform: translateY(20px) scale(0.95);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        }
        
        #tooltip-backdrop.visible #tooltip {
            transform: translateY(0) scale(1);
            opacity: 1;
            pointer-events: all;
        }

/* Main Wrapper jo button aur message ko hold karega */
.whatsapp-wrapper {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px; /* Icon aur message ke beech ka faasla */
    z-index: 1000;
    text-decoration: none; /* Link se underline hatane ke liye */
}

/* Gol WhatsApp Icon ki styling */
.whatsapp-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%; /* Is se bilkul gol ho jayega */
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

/* Message Box ki styling */
.whatsapp-message {
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap; /* Taake text neeche na jaye */
    
    /* Shuru mein message chupana */
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* JAB WRAPPER PAR HOVER HO: */
.whatsapp-wrapper:hover .whatsapp-message {
    /* Message ko show karna */
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-wrapper:hover .whatsapp-icon {
    /* Icon ko thora sa bara karna */
    transform: scale(1.1);
}