/* ===== Variables ===== */
:root {
    /* Colors */
    --primary: #4682B4; /* Steel Blue */
    --primary-dark: #36648B;
    --primary-light: #5D8FC2;
    --secondary: #C0C0C0; /* Silver */
    --secondary-dark: #A8A8A8;
    --secondary-light: #D8D8D8;
    --accent: #D35400; /* Rust Orange */
    --accent-dark: #BA4A00;
    --accent-light: #EB6E1A;
    --dark: #36454F; /* Charcoal */
    --dark-light: #4E5D6B;
    --light: #F8F8FF; /* Ghost White */
    --light-gray: #E0E0E0;
    --white: #FFFFFF;
    --black: #222222;
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 15px 30px rgba(0,0,0,0.2);
    --shadow-steel: 0 5px 15px rgba(70, 130, 180, 0.3);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --text-base: 1rem;
    --text-sm: 0.875rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-xxl: 1.5rem;
    --text-xxxl: 2rem;
    
    /* Borders */
    --border-radius: 4px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--dark);
}

p {
    margin-bottom: var(--space-sm);
    color: #959494;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.highlight {
    color: var(--primary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-heading);
    gap: var(--space-xs);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-steel);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    padding: 0;
    border: none;
    background: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.btn-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.btn-lg {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-lg);
}


/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.whatsapp-btn, .call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--primary);
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}



/* ===== Header ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-sm);
            transition: var(--transition-slow);
            backdrop-filter: blur(5px);
        }

        .header.scrolled {
            box-shadow: var(--shadow-md);
            background-color: rgba(255, 255, 255, 0.98);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-sm) 0;
        }

        /* ===== Logo ===== */
        .logo {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            text-decoration: none;
        }

        .logo img {
            max-height: 60px;
            height: auto;
            width: auto;
            max-width: 180px;
            transition: var(--transition);
        }

        .logo-text {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: var(--text-lg);
            color: var(--primary);
        }

        /* ===== Desktop Nav ===== */
        .main-nav ul {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            list-style: none;
        }

        .main-nav a {
            font-weight: 500;
            color: var(--dark);
            position: relative;
            padding: var(--space-xs) 0;
            transition: var(--transition);
            text-decoration: none;
            font-family: var(--font-heading);
        }

        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .main-nav a:hover:after,
        .main-nav a.active:after {
            width: 100%;
        }

        .main-nav a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-cta {
            margin-left: var(--space-md);
        }

        .btn {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            background-color: var(--primary);
            color: var(--white);
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-family: var(--font-heading);
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
        }

        /* ===== Mobile Toggle Button ===== */
        .mobile-nav-toggle {
            display: none;
            background: transparent;
            border: none;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1001;
            cursor: pointer;
            padding: var(--space-xs);
        }

        .mobile-nav-toggle .bar {
            display: block;
            width: 25px;
            height: 3px;
            background: #333;
            margin: 5px auto;
            transition: all 0.3s ease;
        }

        .mobile-nav-toggle.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .mobile-nav-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }
        .mobile-nav-toggle.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* ===== Mobile Nav ===== */
        @media (max-width: 991px) {
            .mobile-nav-toggle {
                display: block;
            }

            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: #fff;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                padding: 80px 30px 30px;
                transition: right 0.5s ease;
                z-index: 999;
                overflow-y: auto;
            }

            .main-nav.active {
                right: 0;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }

            .main-nav li {
                margin: 15px 0;
            }

            .logo img {
                max-height: 50px;
                max-width: 140px;
            }

            .logo-text {
                font-size: var(--text-base);
            }

            body.menu-open {
                overflow: hidden;
            }
        }

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;

    background: linear-gradient(120deg, #1f1f1f, #2f2f2f, #444, #2f2f2f, #1f1f1f);
    background-size: 400% 400%;
    animation: metallicGradient 10s ease infinite;
}

@keyframes metallicGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    width: 100%; 
    max-width: 900px; 
    margin: 0 auto; 
    padding: 0 1rem; 
    text-align: center; 
}

/* Trust Pill - updated to blue fade gradient */
.trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(90deg, rgba(70,130,180,0.15) 0%, rgba(70,130,180,0.25) 100%);
    border: 1px solid rgba(70,130,180,0.5);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #4682B4;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(70,130,180,0.2);
    position: relative;
}

/* Verified Badge */
.verified-badge {
    margin-left: 6px;
    stroke: #4682B4;
    animation: badgeBlink 1.5s infinite;
}

@keyframes badgeBlink {
    0%,100%{opacity:1; transform:scale(1);}
    50%{opacity:0.5; transform:scale(1.2);}
}


/* Hero Heading */
.hero-heading {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 15px;
}

.animated-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #4682B4, #ffffff, #4682B4);
    background-size: 200% 100%;
    background-clip: text; /* standard property */
    -webkit-background-clip: text; /* vendor prefix for Chrome/Safari */
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite, floatUp 1.2s ease forwards;
}

/* TMT Stroke with blue shine */
.text-stroke {
    position: relative;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
}
.text-stroke::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: #4682B4;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    animation: strokeShine 2s infinite;
}

/* Subtext */
.hero-subtext-group { max-width: 520px; margin: 0 auto 20px; }
.hero-subtext {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 10px;
}
.app-subtext {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    line-height: 1.5;
    color: #ccc;
    margin: 14px 0 0;
    padding: 12px;
    background: rgba(255,255,255,0.07);
    border-left: 3px solid #4682B4;
    border-radius: 0 6px 6px 0;
    text-align: left;
}

/* CTA */
.hero-cta-group { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.store-buttons { display: flex; gap: 12px; }
.store-link img { height: 42px; transition: transform 0.3s ease; }
.store-link img:hover { transform: scale(1.05); }

/* Animations */
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.2);opacity:0.7;} }
@keyframes shimmer { 0%{background-position:-200% 0;} 100%{background-position:200% 0;} }
@keyframes floatUp { 0%{opacity:0;transform:translateY(30px);} 100%{opacity:1;transform:translateY(0);} }
@keyframes strokeShine { 0%,100%{clip-path:polygon(0 0,0% 0,0% 50%,0 50%);} 50%{clip-path:polygon(0 0,100% 0,100% 50%,0 50%);} }



    
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem; /* smaller */
    font-size: 0.85rem; /* smaller */
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-lg {
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes textStrokeShine {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0% { box-shadow: 0 4px 12px rgba(230, 81, 0, 0.2); }
    100% { box-shadow: 0 4px 16px rgba(230, 81, 0, 0.3); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
        min-height: 420px;
        height: 70vh;
    }
    .hero-heading {
        font-size: clamp(1.4rem, 6vw, 2.2rem);
        margin-bottom: 12px;
    }
    .trust-pill {
        font-size: 10px;
        padding: 5px 10px;
    }
    .store-link img {
        height: 38px;
        max-width: 120px;
    }
    .btn {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 50px;
        min-height: 380px;
        height: 65vh;
    }
    .hero-heading {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }
    .hero-subtext {
        font-size: 0.85rem;
    }
    .app-subtext {
        font-size: 0.8rem;
        padding: 10px;
    }
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===== About Section ===== */
.about-section {
    padding: var(--space-xxl) 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: var(--text-xxxl);
    color: var(--dark);
}

.section-subtitle {
    color: var(--gray);
    font-size: var(--text-lg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-content h3 {
    font-size: var(--text-xxl);
    margin-bottom: var(--space-md);
}

.features-list {
    margin: var(--space-lg) 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    color: var(--dark-light);
}

/* Feature Icon - Square Box */
.feature-icon {
    position: relative;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    border-radius: 4px; /* square shape with slight rounding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Square Pulsing Glow */
.feature-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(41, 98, 255, 0.3);
    animation: pulse-glow-square 2s infinite;
    z-index: 0;
    border-radius: 4px; /* matches square shape */
}

.feature-icon i {
    position: relative;
    z-index: 1;
}

/* Bold feature text */
.feature span {
    font-weight: 700;
    color: var(--dark-light);
}

/* Glow Animation Keyframes */
@keyframes pulse-glow-square {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Hover Effect */
.feature-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 12px rgba(41, 98, 255, 0.4);
    border-radius: 4px; /* keep hover square */
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.experience-badge span {
    font-size: var(--text-xxxl);
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    font-size: var(--text-sm);
    margin-bottom: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .feature-icon::before {
        width: 100%;
        height: 100%;
    }
}



/* ===== Products Section ===== */
.products-section {
    padding: var(--space-xxl) 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius);
    font-size: var(--text-sm);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.product-content {
    padding: var(--space-md);
}

.product-content h3 {
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.product-specs {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.spec {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--dark-light);
}

.spec i {
    color: var(--primary);
}


/* ===== Projects Section ===== */
.projects-section {
    padding: var(--space-xxl) 0;
    background-color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.project-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

/* Updated: Overlay always visible */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transition: var(--transition);
}

.project-overlay {
    opacity: 1; /* Always visible */
}

.project-overlay h3 {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.project-overlay p {
    color: var(--light-gray);
    margin-bottom: var(--space-sm);
}

.project-stats {
    display: flex;
    gap: var(--space-md);
}

.project-stats .stat {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white);
    font-size: var(--text-sm);
}

.project-stats .stat i {
    color: var(--accent);
}

.project-overlay {
    opacity: 0.9; /* Slightly transparent by default */
}
.project-card:hover .project-overlay {
    opacity: 1; /* Fully opaque on hover */
}

.trust-indicators {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Trust Indicators Section */
.trust-indicators {
  padding: 50px 20px;
  background: #f8f9fb;
}

.trust-indicators .container {
  max-width: 1200px;
  margin: 0 auto;
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.indicator {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.indicator:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.indicator-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0eafc, #cfdef3);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.indicator-icon i {
  font-size: 32px;
  color: #36648B;
  position: relative;
  z-index: 2;
}

.indicator-content .number {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.indicator-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0d0d0d;
  margin: 0;
}

.plus-sign {
  font-size: 28px;
  font-weight: 700;
  color: #0d0d0d;
  margin-left: 3px;
}

.indicator-content p {
  font-size: 16px;
  color: #444;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .indicator {
    padding: 20px 15px;
  }

  .indicator-icon {
    width: 60px;
    height: 60px;
  }

  .indicator-icon i {
    font-size: 26px;
  }

  .indicator-content h3,
  .plus-sign {
    font-size: 22px;
  }

  .indicator-content p {
    font-size: 14px;
  }
}


/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: var(--space-xxl) 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
}

/* Slider Wrapper */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

/* Testimonial Card */
.testimonial-card {
    display: none;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    transition: var(--transition);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Testimonial Content */
.testimonial-content {
    margin-bottom: var(--space-md);
}

.rating {
    color: var(--accent);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-light);
    line-height: 1.6;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.client-info h4 {
    color: var(--dark);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.client-info p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Dots Pagination */
/* Dots Pagination */
.testimonial-dots {
    text-align: center;
    margin-top: var(--space-lg);
}

.testimonial-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #444; /* Dark gray for better visibility */
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dots .active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 6px var(--primary-light); /* Glow effect */
}


/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: var(--space-md);
    }
    .client-info {
        flex-direction: column;
        text-align: center;
    }
    .client-info img {
        margin-bottom: var(--space-sm);
    }
}

/* Ratings Section */
.ratings-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.ratings-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ratings-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.ratings-section .section-subtitle {
    font-size: 1rem;
    color: #555;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.rating-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.rating-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.rating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eceeef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    transition: all 0.3s ease;
}

.rating-card:hover .rating-icon {
    transform: scale(1.1);
}

/* Logos inside icon */
.rating-logo {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.rating-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.stars {
    color: #fbc02d; /* gold stars */
    font-size: 18px;
    margin-bottom: 10px;
}

.rating-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

/* Button */
.btn-rating {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4682B4;
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-rating:hover {
    background-color: #1565c0;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .ratings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rating-card {
        padding: 25px 15px;
    }

    .rating-icon {
        width: 50px;
        height: 50px;
    }

    .rating-logo {
        max-width: 30px;
        max-height: 30px;
    }
}


/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: #f9f9f9; /* light neutral background */
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #555;
}

/* Brand Cards Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.brand-card {
    background: #fff; /* white card */
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 2px solid #1e88e5; /* subtle blue border glow */
}

.brand-logo {
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.brand-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.brand-card:hover .brand-logo img {
    transform: scale(1.1); /* slight zoom on hover */
}

.brand-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .brand-logo {
        height: 60px;
    }
    
    .brand-card h4 {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 12px;
    }
    
    .brand-card {
        padding: 15px 10px;
    }
    
    .brand-logo {
        height: 50px;
        margin-bottom: 8px;
    }
}


/* ===== CTA Section ===== */
.cta-section {
    padding: var(--space-xxl) 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/steel-pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: var(--text-xxxl);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    color: var(--light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* Responsive Fix for CTA Buttons */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px; /* Optional: buttons ek size me rakhne ke liye */
    }
}



/* ===== Footer ===== */
.footer {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/steel-pattern-dark.png');
    opacity: 0.05;
    z-index: 1;
}

.footer-main {
    padding: var(--space-xxl) 0;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: var(--text-xl);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-about p {
    color: var(--light-gray);
    margin-bottom: var(--space-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo img {
    height: 50px;     
    width: auto;       
    object-fit: contain;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: var(--text-lg);   
    font-weight: 600;            
    line-height: 1.2;
}


.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: var(--space-xs);
}

.footer-col ul li a {
    color: var(--light-gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: var(--space-xs);
}

.footer-col ul li a i {
    font-size: var(--text-sm);
    color: var(--primary);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--light-gray);
}

.footer-contact ul li i {
    margin-top: 3px;
    color: var(--primary-light);
}

.footer-bottom {
    background-color: var(--black);
    padding: var(--space-md) 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light-gray);
    font-size: var(--text-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}


/* ===== Animations ===== */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .quality-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-image {
        order: -1;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        right: 0;
        bottom: -10px;
    }
    
    .experience-badge span {
        font-size: var(--text-xxl);
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        padding: var(--space-xxl) var(--space-lg);
        transition: var(--transition-slow);
        z-index: 1000;
        box-shadow: var(--shadow-xl);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: var(--space-md);
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .section-title {
        font-size: var(--text-xxl);
    }
    
    .section-subtitle {
        font-size: var(--text-base);
    }
    
    .indicators-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-indicators {
        margin-top: -30px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 600px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .indicators-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}   

