:root {
    --bg: #0f0f0f;
    --accent: #f37021; 
    --card-bg: #1a1a1a;
    --text: #ffffff;
    --gray-muted: #888;
    --navy: #003366;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: var(--bg); color: var(--text); overflow-x: hidden; scroll-behavior: smooth;cursor: none; }

/* Navigation */
.navbar {
    display: flex; justify-content: space-between; padding: 30px 10%;
    position: fixed; width: 100%; z-index: 100; transition: 0.4s;
}
.logo { font-weight: 800; letter-spacing: 4px; color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }

/* --- Mobile Navbar Styles --- */
@media (max-width: 968px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 2px;
        margin: 5px auto;
        background-color: var(--text);
        transition: all 0.3s ease-in-out;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        height: 100vh;
        width: 70%;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    /* When menu is active */
    .nav-links.nav-active {
        right: 0;
    }

    /* Hamburger to 'X' Animation */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Add this keyframe to your CSS */
@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
/* Hero Section */
.hero-carousel {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.slide.active .slide-bg {
    transform: scale(1); /* Slow zoom-out effect */
}

/* Indicators */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 10%;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent);
    width: 60px;
}

/* Stats Grid */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; padding: 100px 10%; background: #000; }
.counter { font-size: 3.5rem; color: var(--accent); }

/* Tech Feature */
.tech-feature { display: flex; align-items: center; gap: 80px; padding: 150px 10%; }
.tech-content { flex: 1; }
.tech-img { flex: 1; height: 500px; background-size: cover; background-position: center; border-radius: 2px; }
.tech-list { list-style: none; margin-top: 30px; }
.tech-list li { border-left: 2px solid var(--accent); padding-left: 20px; margin-bottom: 15px; color: var(--gray-muted); }

/* Gallery Accordion */
.gallery-accordion { display: flex; height: 600px; gap: 15px; padding: 0 10% 100px; }
.acc-item { flex: 1; background-size: cover; position: relative; transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); filter: grayscale(1); cursor: pointer; }
.acc-item:hover { flex: 4; filter: grayscale(0); }
.acc-text { position: absolute; bottom: 30px; left: 30px; opacity: 0; transition: 0.4s; }
.acc-item:hover .acc-text { opacity: 1; }

/* Animation Utility Classes */
.reveal-slide-up { opacity: 0; transform: translateY(80px); transition: 1.2s ease-out; }
.reveal-left { opacity: 0; transform: translateX(-80px); transition: 1.2s ease-out; }
.reveal-zoom { opacity: 0; transform: scale(0.9); transition: 1s ease-out; }
.reveal-fade { opacity: 0; transition: 1.5s ease-in; }
.active { opacity: 1; transform: translate(0) scale(1); }

/* Button Group Layout */
.btn-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Primary Button (Solid Bronze) */
.btn-main {
    padding: 18px 40px;
    background: var(--accent);
    color: white;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    
}

.btn-main:hover {
    background: #8e785f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Secondary Button (Outlined) */
.btn-outline {
    padding: 18px 40px;
    background: transparent;
    color: white;
    border: 1px solid var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* Mobile Responsive adjustment for buttons */
@media (max-width: 600px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-main, .btn-outline {
        width: 100%;
        text-align: center;
    }
}
/* Services Section Layout */
.services {
    padding: 100px 10%;
    background-color: var(--bg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    margin-top: 50px;
    text-align: center; /* Aligned to the left as per your style */
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Card Styling */
.card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid #2a2a2a;
    transition: all 0.4s ease;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

/* FIX: Image Visibility */
.card-img {
    width: 100%;
    height: 250px; /* Essential: Gives the background image a height to be seen */
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
    filter: grayscale(0.5); /* Adds to the vintage/high-contrast vibe */
    transition: 0.5s ease;
}

.card:hover .card-img {
    filter: grayscale(0);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
    letter-spacing: 1px;
}

.card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tech Feature Section Layout */
.tech-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 120px 10%;
    background-color: #0a0a0a; /* Slightly darker to separate from services */
}

.tech-content {
    flex: 1;
}

/* Ensure the title matches your preference for left-alignment */
.tech-content .section-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: 2.8rem;
    color: var(--text);
}

.tech-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Tech List Styling */
.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Custom list bullet */
.tech-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 1px;
    background-color: var(--accent);
}

/* FIX: Image Visibility */
.tech-img {
    flex: 1;
    height: 500px; /* Essential: Gives the container height */
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid #222;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .tech-feature {
        flex-direction: column;
        text-align: left;
        padding: 80px 5%;
    }

    .tech-img {
        width: 100%;
        height: 350px;
    }
}
/* Testimonials Section Layout */
.testimonials-carousel {
    padding: 120px 15%;
    background: #080808;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.test-container {
    position: relative;
    height: 220px;
    
}

.test-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    visibility: hidden;
}

.test-slide.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.quote-mark {
    font-size: 8rem;
    color: var(--accent);
    line-height: 0;
    opacity: 0.1;
    font-family: serif;
    position: absolute;
    top: 40px;
    left: -20px;
}

.test-text {
    font-size: 1.5rem;
    color: #eee;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 30px;
    font-style: italic;
}

.test-info h5 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.test-info span {
    color: #666;
    font-size: 0.85rem;
}

/* Controls */
.test-controls {
    display: flex;
    align-items: center;
   
    
}

.test-btn {
    background: transparent;
    border: 1px solid #222;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.test-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.test-dots { display: flex; gap: 10px; }
.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #222;
    cursor: pointer;
    transition: 0.3s;
}

.t-dot.active {
    background: var(--accent);
    transform: scale(1.5);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    /* Tighten every section globally */
    section {
        padding: 30px 5% !important; /* Minimum breathing room */
    }

    /* Grid/Stats specific tightening */
    .grid-4 {
        gap: 8px !important; /* Nearly touching for a unified block look */
        padding: 20px 5% !important;
    }

    .stat-item {
        padding: 5px;
        border-left: 2px solid var(--accent); /* Thicker line, smaller area */
    }

    .counter {
        font-size: 1.8rem; /* Smaller numbers to stay on one line */
        margin-bottom: 0;
    }

    .stat-item p {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    /* Testimonial Tightening */
    .test-header {
        margin-bottom: 10px;
    }

    .test-container {
        margin-top: 5px;
        min-height: auto;
    }

    .test-text {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .quote-mark {
        display: none; /* Remove large icons to save vertical space */
    }

    .test-controls {
        margin-top: 10px;
    }
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: rgba(0,0,0,0.9);
    list-style: none;
    padding: 10px 0;
    min-width: 180px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* LINKS */
.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
}

.dropdown-menu li:hover {
    background: rgba(255,255,255,0.05);
}

/* Ensure Animation renders */
.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}
/* 1. SECTION LAYOUT (Cinematic Style) */
.cinematic-contact {
    position: relative;
    padding: 150px 10%;
    min-height: 100vh;
    background-color: #050505; /* Deep black for maximum contrast */
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

/* 2. SCHEMATIC ANIMATION BACKGROUND */
.contact-schematic-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.2; /* Minimalist subtlety */
    transition: opacity 1s ease;
}

/* Interactive shift: Schematics brighten when user interacts with form */
.cinematic-contact.form-active .contact-schematic-wrap {
    opacity: 0.5;
}

.energy-schematic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Base style for all animated paths */
.energy-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease;
}

/* Reveal: Paths draw themselves when section becomes active */
.active .energy-path {
    stroke-dashoffset: 0;
}

/* Pulse animation for the central Sun Node */
.sun-node {
    animation: sunPulse 4s infinite ease-in-out;
}

.sun-ring {
    animation: ringPulse 4s infinite ease-in-out;
}

/* Floating particle animations */
.particle {
    opacity: 0;
}

.active .particle {
    opacity: 1;
}

.active .p1 { animation: flowPath1 6s infinite linear; offset-path: path("M500,500 L800,200 H950"); }
.active .p2 { animation: flowPath2 6s infinite linear 2s; offset-path: path("M500,500 L200,800 H50"); }
.active .p3 { animation: flowPath3 6s infinite linear 4s; offset-path: path("M500,500 V950"); }

/* SVG ANIMATION KEYFRAMES */
@keyframes sunPulse {
    0%, 100% { r: 40; opacity: 1; }
    50% { r: 45; opacity: 0.8; }
}

@keyframes ringPulse {
    0%, 100% { r: 60; opacity: 0.3; }
    50% { r: 75; opacity: 0.1; }
}

@keyframes flowPath1 {
    0% { offset-distance: 0%; opacity: 0; }
    10%, 90% { opacity: 1; }
    100% { offset-distance: 100%; opacity: 0; }
}
/* p2 and p3 use similar animations to flowPath1, adjusted for timing */
@keyframes flowPath2 { 0% { offset-distance: 0%; opacity: 0; } 10%, 90% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@keyframes flowPath3 { 0% { offset-distance: 0%; opacity: 0; } 10%, 90% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }


/* 3. CONTENT & FORM STYLING (Luxury Minimalist) */
.contact-content-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Header left, form right */
    gap: 80px;
    align-items: start;
}

.contact-details {
    margin-top: 15px;
    line-height: 1.8;
    font-size: 15px;
}

.contact-details a {
    
    color: var(--accent);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-header {
    text-align: left;
}

.contact-header .section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-header p {
    color: #888;
    max-width: 450px;
    line-height: 1.8;
    margin-top: 35px;
}

/* The form itself: minimal container, no heavy background */
.contact-form-card {
    background: transparent;
}

.input-wrap {
    position: relative;
    margin-bottom: 30px;
}

.contact-form-card input, 
.contact-form-card textarea {
    width: 100%;
    padding: 20px 0; /* Horizontal padding removed for minimalist feel */
    background: transparent; /* Seamless integration */
    border: none;
    border-bottom: 1px solid #222; /* Minimalist bottom line only */
    color: white;
    font-size: 1rem;
    transition: 0.4s;
}

.contact-form-card textarea {
    height: 120px;
    resize: none;
}

/* INTERACTIVE INPUT ANIMATION: The 'Focus Line' */
.focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; /* Starts invisible */
    height: 1px;
    background-color: var(--accent); /* Bronze accent */
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-form-card input:focus ~ .focus-line,
.contact-form-card textarea:focus ~ .focus-line {
    width: 100%; /* Line draws itself across input */
}

/* Submit Button & The 'System Active' Light */
.system-activate-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    position: relative;
}

.btn-status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #333; /* Default state: Off */
    transition: 0.4s;
}

/* Hover state: Activate the button 'light' */
.system-activate-btn:hover .btn-status-light {
    background-color: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

/* RESPONSIVENESS */
@media (max-width: 968px) {
    .contact-content-wrap {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* Floating Container */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Base Button Style */
.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

/* WhatsApp Specific (Branded Green) */
.whatsapp {
    background-color: #25D366;
    animation: pulse-green 2s infinite;
}

/* Call Specific (Using your Bronze Accent) */
.call {
    background-color: var(--accent);
}

.fab-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.fab-btn svg {
    width: 28px;
    height: 28px;
}

/* Pulse Animation for attention */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .fab-btn {
        width: 50px;
        height: 50px;
    }
}
.solar-footer {
    position: relative;
    background: #050505;
    padding: 100px 10% 40px;
    overflow: hidden;
    color: #fff;
    border-top: 1px solid #1a1a1a;
}

/* 1. The Solar Animation Backdrop */
.footer-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-sun {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.15;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.energy-grid {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background-image: 
        linear-gradient(rgba(163, 139, 113, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(163, 139, 113, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 500px;
    transform: rotateX(60deg);
    mask-image: linear-gradient(to top, black, transparent);
}

/* 2. Content Layout */
.footer-content {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-col h3 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 25px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: var(--gray-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }

/* 3. Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 40px;
    font-size: 0.75rem;
    color: #444;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-muted);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25D366;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@media (max-width: 968px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-icon {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-muted);
    border: 1px solid #222;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: #0a0a0a;
    overflow: hidden;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    z-index: 2;
    transition: 0.3s;
}

/* The Energy Glow behind the icon */
.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
    z-index: 1;
}

/* Hover States */
.social-icon:hover {
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(163, 139, 113, 0.2);
}

.social-icon:hover .icon-glow {
    opacity: 0.4;
    transform: scale(1.5);
}

/* Top Class Footer Solar Animation: "The Grid Flare" */
.solar-footer:has(.social-icon:hover) .energy-grid {
    background-image: 
        linear-gradient(rgba(163, 139, 113, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(163, 139, 113, 0.2) 1px, transparent 1px);
    transition: 0.5s ease;
}

.solar-footer:has(.social-icon:hover) .footer-sun {
    opacity: 0.4;
    transform: translateX(-50%) scale(1.2);
    filter: blur(40px);
}
/* Navbar Logo Styling */
.brand-logo {
    height: 60px; /* Adjust based on your preference */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Footer Logo Styling */
.footer-brand-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

/* Navbar height adjustment to fit the logo */
.navbar {
    padding: 15px 10%; /* Reduced padding for a sleeker look with the image */
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 45px;
    }
}
.nav-links a.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

/* About Us Section Styles */
.about-section {
    padding: 120px 10%;
    background-color: #0a0a0a;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
}

/* Visual Side */
.about-visual {
    flex: 1;
    position: relative;
}

.main-img-box {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    border: 1px solid #222;
    filter: grayscale(0.3) contrast(1.1); /* Cinematic high-contrast look */
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    padding: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 5;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Text Side */
.about-text-content {
    flex: 1.2;
}

.sub-heading {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.about-text-content .section-title {
    text-align: left; /* Consistent with your preference */
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.description {
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Feature Grid inside About */
.about-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feat-item {
    display: flex;
    gap: 20px;
}

.feat-icon {
    font-family: serif;
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.5;
    font-style: italic;
}

.feat-text h5 {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.feat-text p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
    }
    .main-img-box {
        height: 400px;
    }
    .experience-badge {
        right: 20px;
    }
}

.electric-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;

    box-shadow:
        0 0 10px var(--accent),
        0 0 20px var(--accent),
        0 0 40px var(--accent);

    transform: translate(-50%, -50%);
}

.trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;

    box-shadow: 0 0 10px var(--accent);

    animation: fadeOut 0.3s linear;
}

@keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.2); }
}


.main-img-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
    border: none;
}

.img-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.img {
    position: absolute;
    width: 75%;
    height: 75%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

/* Overlapping positions */
.img1 {
    top: 0;
    left: 0;
    z-index: 4;
}

.img2 {
    top: 40px;
    left: 40px;
    z-index: 3;
}

.img3 {
    top: 80px;
    left: 80px;
    z-index: 2;
}

.img4 {
    top: 100px;
    left: 100px;
    z-index: 1;
}

/* Hover effect */
.img:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* Badge styling (keep yours or improve) */
.experience-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #0a66c2;
    color: white;
    padding: 12px 15px;
    border-radius: 12px;
    text-align: center;
}
.parallax-section{
    height: 500px;
    background: url('assets/modi1.png') center/contain no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 60px;
    background-color: #000; /* important for empty space */
}
.parallax-content{
    background:rgba(0,0,0,0.6);
    padding:40px;
}
/* CTA IMAGE */
.image-cta{
    height: 500px;
   background: url('assets/modi.png') center/contain no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cta-overlay{
    text-align:center;
    background:rgba(0,0,0,0.7);
    padding:40px;
}

/* MOBILE */
@media(max-width:768px){
    .split-section{flex-direction:column;}
    .floating-section{flex-direction:column;}
    .image-strip{flex-direction:column;}
}
.space{
    margin-top: 10px;
}
.space a{
    text-decoration: none;
    color: white;
}
/* Logo Layout */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo Image */
.brand-logo {
    height: 50px;
    animation: logoFade 1s ease-in-out;
}

/* Main Text */
.brand-text {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    line-height: 1.2;

    /* Gradient animation */
    background: linear-gradient(270deg, #0a7cff, #00c6ff, #00ffcc, #0a7cff);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 6s ease infinite, slideUp 1s ease;
}

/* Subtext */
.brand-text span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    letter-spacing: 1px;

    animation: fadeIn 2s ease;
}

/* 🔥 Animations */

/* Gradient moving */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Slide up effect */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Fade in */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Logo fade */
@keyframes logoFade {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ✨ Hover Glow Effect */
.brand-text:hover {
    text-shadow: 0 0 10px rgba(10, 124, 255, 0.6),
                 0 0 20px rgba(0, 198, 255, 0.5);
    cursor: pointer;
}

/* SECTION */
.pm-section {
    padding: 60px 20px;
    
}

/* CONTAINER */
.pm-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.pm-left {
    flex: 1;
    
    margin-right: 50px;
}

/* IMAGE */
.pm-img {
    width: 100%;
    height: 300px;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.pm-img:hover {
    transform: scale(1.05);
}

/* RIGHT */
.pm-right {
    flex: 1;
}

/* TITLE */
.pm-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

/* SUBTITLE */
.pm-subtitle {
    font-size: 18px;
    color: #716969;
    margin-bottom: 20px;
}

/* LIST */
.pm-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pm-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #766a6a;
}

/* BUTTON */
.pm-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #F37021;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.pm-btn:hover {
    background: #1ebe5d;
}

/* REMOVE UNDERLINE */
.no-decoration {
    text-decoration: none;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .pm-container {
        flex-direction: column;
        text-align: center;
    }

    .pm-title {
        font-size: 26px;
    }

    .pm-img {
        margin-bottom: 20px;
    }
}