
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            height: 100%;
           
        }

        /* Animated Background Elements */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
            background-size: 400% 400%;
            animation: gradientFlow 20s ease infinite;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M25,35 C25,25 15,20 10,25 C5,20 -5,25 -5,35 C-5,45 25,65 25,65 C25,65 55,45 55,35 C55,25 45,20 40,25 C35,20 25,25 25,35 Z" fill="%23fff" opacity="0.03"/></pattern></defs><rect fill="url(%23hearts)" width="100" height="100"/></svg>');
            background-size: 100px 100px;
            animation: float 25s ease-in-out infinite;
        }

        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(2deg); }
            66% { transform: translateY(15px) rotate(-2deg); }
        }

        /* Floating Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            animation: particleFloat 15s infinite linear;
        }

        .particle:nth-child(1) { left: 10%; width: 6px; height: 6px; animation-delay: 0s; }
        .particle:nth-child(2) { left: 20%; width: 8px; height: 8px; animation-delay: 3s; }
        .particle:nth-child(3) { left: 30%; width: 4px; height: 4px; animation-delay: 6s; }
        .particle:nth-child(4) { left: 40%; width: 7px; height: 7px; animation-delay: 9s; }
        .particle:nth-child(5) { left: 50%; width: 5px; height: 5px; animation-delay: 12s; }
        .particle:nth-child(6) { left: 60%; width: 8px; height: 8px; animation-delay: 2s; }
        .particle:nth-child(7) { left: 70%; width: 4px; height: 4px; animation-delay: 5s; }
        .particle:nth-child(8) { left: 80%; width: 6px; height: 6px; animation-delay: 8s; }
        .particle:nth-child(9) { left: 90%; width: 5px; height: 5px; animation-delay: 11s; }

        @keyframes particleFloat {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding:  0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);

        }
        

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

              
        
        .logo img{
            height: 140px;
            width: 140px;
            position: relative;
            top: 25px;
            right: 300px;
            
         }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            padding: 0.5rem 0;
            top: 35px;
            
            
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }
        

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #667eea;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }
        
 /* Hero Section */
.hero {
    min-height: 120vh;
    display: flex;
    flex-direction: column;       /* Column layout */
    justify-content: flex-end;    /* Content bottom pe align hoga */
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    padding-bottom: 30vh;         /* Bottom se thoda gap, adjust kar sakte ho */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInDown 1s ease 0.5s forwards;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    font-style: italic;
}

.hero-content .subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInUp 1s ease 1s forwards;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .tagline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0;
    animation: bounceIn 1s ease 2s forwards;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    font-size: 1.1rem;
    border: 2px solid white;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    animation-delay: 2.3s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}




        /* About Section */
        .about {
            padding: 8rem 2rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            position: relative;
        }

        .about::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 200 200"><defs><pattern id="roses" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="25" fill="none" stroke="%23667eea" stroke-width="1" opacity="0.05"/><circle cx="50" cy="50" r="15" fill="none" stroke="%23764ba2" stroke-width="1" opacity="0.05"/></pattern></defs><rect fill="url(%23roses)" width="200" height="200"/></svg>');
            background-size: 200px 200px;
            opacity: 0.4;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-text h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #555;
            line-height: 1.8;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .stat-label {
            color: #666;
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        .about-image {
            position: relative;
            height: 650px;
            width: 620px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 25px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        

         /* Services Section */
        .services {
         padding: 8rem 2rem;
         background: rgba(255, 255, 255, 0.98);
         backdrop-filter: blur(15px);
        }

         .services-container {
          max-width: 1200px;
          margin: 0 auto;
        }

      .services h2 {
       text-align: center;
       font-size: 3.5rem;
       margin-bottom: 5rem;
       background: linear-gradient(45deg, #667eea, #764ba2);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
     }

     .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      }

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-icon img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
    white-space: nowrap;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-top: 0;
}

/* Specific adjustment for 2nd service card (Cinematic videography) */
.services-grid .service-card:nth-child(2) .service-icon img {
    margin-top: 10px;
    margin-bottom: 10px;
    transform: translateY(-10px);
}

.services-grid .service-card:nth-child(2) h3 {
    margin-top: 15px;
}

.services-grid .service-card:nth-child(2) p {
    margin-top: 10px;
}

/* Specific adjustment for 3rd service card (Pre-Wedding Photoshoot) */
.services-grid .service-card:nth-child(3) .service-icon img {
    margin-top: 10px;          
    margin-bottom: 10px;       
    transform: translateY(-10px); 
}

.services-grid .service-card:nth-child(3) h3 {
    margin-top: 15px;          
}

.services-grid .service-card:nth-child(3) p {
    margin-top: 20px;          
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: #fff0f2;
    text-align: center;
    overflow: hidden;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #b76e79;
}

.contact p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #333;
}

/* Contact Info Layout */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.info-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-box {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    font-size: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.info-box .icon {
    font-size: 1.6rem;
    color: #764ba2;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .info-row {
        flex-direction: column;
        gap: 20px;
    }
    .info-box {
        min-width: 100%;
        justify-content: center;
        font-size: 1.1rem;
        padding: 25px 20px;
    }
}


        /* Footer */
        footer {
            background: #2d3436;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            color: rgb(238, 128, 238);
            font-size: 1.8rem;
            transition: all 0.3s ease;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-links a:hover {
            color: #f093fb;
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }
        /* Floating Phone Button */
.phone-float {
    position: fixed;
    bottom: 40px;       /* distance from bottom of viewport */
    left:40px;        /* distance from right of viewport */
    z-index: 2000;      /* above everything else */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #667eea;         /* main button color */
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.3s ease;
}

.phone-float a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* Optional pulse animation for attention */
.phone-float .pulse {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.4);
    animation: pulseAnim 1.5s infinite;
    top: 0;
    left: 0;
    z-index: -1;
}

@keyframes pulseAnim {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.7; }
}

.phone-float .phone-number {
    margin-left: 10px;
    font-size: 1rem;
    font-weight: bold;
    display: none; /* optional: hide phone number on small screens */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .phone-float {
        bottom: 20px;
        right: 20px;
    }

    .phone-float .phone-number {
        display: none; /* hide text for mobile */
    }

    .phone-float a {
        padding: 0.8rem 1rem;
        font-size: 1.4rem;
    }
}


        /* Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-80px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(80px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.1);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

      /* ===================== */
/* MEDIA QUERIES FOR ALL DEVICES INCLUDING LOGO & FOOTER */
/* ===================== */



/* ===================== */
/* EXTRA SMALL DEVICES (phones, <576px) */
/* ===================== */
@media (max-width: 575px) {

    /* Hero */
    .hero {
        min-height: 80vh;
        position: relative; /* menu ke liye reference */
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Bottom alignment */
        align-items: center;
        padding-bottom: 10vh; /* Bottom se gap, adjust kar sakte ho */
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
    }

    .hero-content .subtitle {
        font-size: 1.2rem !important;
    }

    .hero-content .tagline {
        font-size: 1rem !important;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }


    

    /* Header & Logo */
    .logo img {
        height: 80px;
        width: 80px;
        top: 5px;
        right: 0;
    }

    /* RIGHT SIDE MOBILE MENU */
   .nav-links {
    position: fixed;
    top: 85px;              /* header ke neeche */
    right: -250px;          /* yahi line ensure karti hai RIGHT SIDE */
    width: 110px;
    background: rgba(255,255,255,0.98);
    padding: 2.8rem 1.2rem;

    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: right;

    height: auto;
    max-height: calc(100vh - 85px);
    overflow: hidden;       /* scroll removed */

    border-left: 2px solid rgba(0,0,0,0.15);
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    transition: right 0.3s ease; 
    z-index: 15000;
}

/* When menu opens → slide from right */
.nav-links.show {
    right: 0;               /* FINAL RIGHT SIDE POSITION */
}

    .nav-links.show {
        display: flex;
        animation: fadeInMenu 0.3s ease;
    }

    /* Hamburger menu */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 10000; /* always above nav-links */
    }
    .mobile-menu span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: all 0.3s ease;
    }
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    @keyframes fadeInMenu {
        0% { opacity: 0; transform: translateY(-10px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    /* ===== SERVICE CARDS ===== */
    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .service-card {
        max-width: 320px;
        margin: 0 auto;
        text-align: center;
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* Contact - section*/
    .contact-container {
        position: relative; /* stacking context ke liye */
        z-index: 1;         /* nav-links ke neeche */
        padding: 0 1rem;
    }
    .info-box {
        min-width: 100%;
        font-size: 1rem;
        padding: 20px;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
        font-size: 0.85rem;
    }
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        padding: 0.4rem;
    }

    /* Floating phone button */
    .phone-float {
        bottom: 15px;
        left: 15px;
    }

    /* Body overflow */
    body, html {
        overflow-x: hidden;
    }
}

/* ===================== */
/* SMALL DEVICES (576px to 767px) */
/* ===================== */
@media (min-width: 576px) and (max-width: 767px) {

    /* Hero */
    .hero {
        min-height: 90vh;
        overflow: visible;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Bottom alignment */
        align-items: center;
        padding-bottom: 10vh; /* Bottom se thoda gap, adjust kar sakte ho */
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content .subtitle {
        font-size: 1.5rem;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }


    /* Logo */
    .logo {
        position: relative;
        z-index: 3000;
    }
    .logo img {
        height: 90px;
        width: 90px;
        display: block;
    }

    /* Navigation */
    .nav-links {
        display: flex !important;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 1.5rem;
        position: relative;
        top: 0;
        right: 0;
        background: transparent;
        padding: 0;
        box-shadow: none;
        width: auto;
        z-index: 2000;
    }
    .nav-links a {
        white-space: nowrap;
        color: #333;
    }
    .mobile-menu {
        display: none;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .about-image {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Contact */
    .contact-container {
        padding: 0 2rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1.5rem;
        font-size: 0.9rem;
    }
    .social-links a {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }
    body, html {
        overflow-x: hidden;
    }
}
/* ===================== */
/* MEDIUM DEVICES (768px to 991px) FIXED LOGO & FOOTER */
/* ===================== */
@media (min-width: 768px) and (max-width: 991px) {

    /* Hero */
    .hero {
        min-height: 95vh;
        overflow: visible;
        position: relative;
    }

    /* Logo tweak */
    .logo {
        position: relative;
        z-index: 3000;
    }
    .logo img {
        height: 110px;
        width: 110px;
        display: block;
        left: 30px;
        top: 10px;
    }

    /* Navigation */
    .nav-links {
        display: flex !important;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 2rem;
        background: transparent;
        padding: 0;
        box-shadow: none;
        width: auto;
    }
    .mobile-menu {
        display: none;
    }

    /* About Section */
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .about-image {
        width: 100%;
        max-width: 450px;
        height: auto;
    }

    /* Services */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-content: center;
        text-align: center;
    }

    /* Contact */
    .contact-container {
        padding: 0 2rem;
        position: relative;
        z-index: 1;
    }

    /* Footer */
    footer {
        position: relative;
        z-index: 1000;
        padding: 3.5rem 2rem;
        font-size: 1rem;
    }

    /* Floating phone button */
    .phone-float {
        position: fixed; /* ensure it floats */
        bottom: 15px;
        left: 15px;
        z-index: 9999;
    }

    /* Body overflow */
    body, html {
        overflow-x: hidden;
    }
}


/* ===================== */
/* LARGE DEVICES (992px to 1199px) FIX */
@media (min-width: 992px) and (max-width: 1199px) {
   
    /* Hero */
    .hero {
        min-height: 95vh;
        position: relative;
        overflow: visible;
        background-size: cover;
        background-position: center;
    }

    .hero-content h1 { 
    font-size: 5rem; 
}

.hero-content .subtitle { 
    font-size: 2rem; 
}

.hero-content .tagline { 
    font-size: 1.25rem; 
}

.cta-button { 
    padding: 1.3rem 3rem; 
    font-size: 1.1rem; 
}

    /* Logo */
    .logo {
        position: relative;
        z-index: 5000;
    }
    .logo img {
        height: 130px;
        width: 130px;
        display: block;
        left: 30px;
        top: 10px;
        position: relative;
    }

    /* Navigation */
    .nav-links {
        display: flex !important;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 2rem;
        background: transparent;
        padding: 0 20px;
        box-shadow: none;
        width: auto;
        z-index: 4000;
        
    }
    .mobile-menu { display: none; }

   .about-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4rem;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 1rem 4rem 1rem;  /* added bottom padding */
        overflow: visible;
        align-items: center;
        position: relative;
        min-height: 800px;  /* enough height */
    }

    .about-image {
        width: 100%;
        max-width: 600px;
        max-height: 650px;
        height: auto;
        display: block;
        margin: 0 auto 3rem auto; /* margin bottom to prevent overlap */
        padding-right: 10px;
        border-radius: 25px;
        object-fit: contain;
        box-sizing: border-box;
        position: relative;
        z-index: 1;
        top: -70px; /* upar 20px shift */
    }

    .stats {
        position: relative;
        z-index: 10; /* make sure stats cards are above image */
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .service-card {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
    height: auto;
    max-height: none;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.service-card * {
    max-width: 100%;
    white-space: normal;
    box-sizing: border-box;
}
    /* Contact Section */
    .contact-container {
        padding: 0 2rem;
        position: relative;
        z-index: 1;
    }

    /* Footer */
    footer {
        position: relative;
        z-index: 1000;
        padding: 4rem 2rem;
        font-size: 1rem;
        width: 100%;
        clear: both;
        box-sizing: border-box;
    }

    /* Floating phone button */
    .phone-float {
        position: fixed;
        bottom: 15px;
        left: 15px;
        z-index: 9999;
    }

    /* Body overflow */
    body, html {
        overflow-x: hidden;
        min-height: 100%;
    }
}


/* ===================== */
/* EXTRA LARGE DEVICES (1200px and above) */
/* ===================== */
@media (min-width: 1200px) {

    .hero-content h1 {
        font-size: 5.5rem;
    }
    .hero-content .subtitle {
        font-size: 2rem;
    }
    .hero-content .tagline {
        font-size: 1.3rem;
    }
    .cta-button {
        padding: 1.3rem 3rem;
        font-size: 1.1rem;
    }

    .logo img {
        height: 140px;
        width: 140px;
    }

    footer {
        padding: 4rem 2rem;
        font-size: 1rem;
    }
}

