:root {
    --primary-color: #0062cc;
    /* Slightly brighter blue */
    --primary-dark: #004a9e;
    --secondary-color: #eff6ff;
    --accent-color: #ff6b00;
    /* Energetic Orange for CTAs */
    --text-dark: #2c3e50;
    --text-light: #5a6b7c;
    --white: #ffffff;
    --light-gray: #f4f7f6;
    --border-color: #e1e8ed;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Clean shadow */
    --shadow-strong: 0 15px 35px rgba(0, 98, 204, 0.2);
    /* Colored energetic shadow */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Snappy transition */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    color: var(--text-dark);
}

/* Hero text dark on light, or white on dark */
h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    /* Pill shape for modern look */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 98, 204, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    animation: pulse 2s infinite;
}

.btn-cta:hover {
    background-color: #e65100;
    animation: none;
    /* Stop pulse on hover to prevent jitter */
    transform: scale(1.05);
}

/* Header */
.top-bar {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    /* Very subtle */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu Support */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Hover bridge */
.nav-item-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    /* Bridge gap */
    background: transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-strong);
    border-radius: 10px;
    padding: 15px;
    z-index: 1000;
    border-top: 4px solid var(--primary-color);
}

.nav-item-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.dropdown-menu li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 5px;
}

/* Mobile Friendly Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        background: var(--light-gray);
        margin: 10px 0;
        min-width: 100%;
    }
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: #f0f8ff;
    /* AliceBlue base */
    background-image:
        linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    /* Soft energetic light blue gradient */
    padding: 100px 0;
    position: relative;
}

/* Ensure text is dark because we have a white overlay */
.hero h1 {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--text-dark);
}

.hero p {
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 500;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    padding-right: 20px;
}

.hero-form-wrapper {
    flex: 0 0 400px;
    animation: fadeInUp 0.8s ease-out;
}

/* REPLACED GLASS FORM WITH SOLID ENERGY CARD */
.glass-form {
    background: var(--white);
    border: none;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    /* Strong Energetic Shadow */
    position: relative;
    overflow: hidden;
}

/* Blue top accent */
.glass-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
}

.glass-form h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
}

/* FIX: Input Fields Visibility */
.glass-form input,
.glass-form select,
.glass-form textarea {
    background: #ffffff;
    /* Explicit White */
    border: 2px solid #dde3e8;
    /* Explicit Gray Border */
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 8px;
    /* Softer corners */
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 98, 204, 0.1);
    /* Glow effect */
    outline: none;
}

/* Cards (Why Us & Services) */
.section {
    padding: 90px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Default responsive */
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Force 3 columns on desktop */
    }
}

.bg-light {
    background-color: var(--secondary-color);
}

/* Very light blue tint */

.feature-card,
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft, deep shadow */
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before,
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 98, 204, 0.03) 0%, rgba(0, 98, 204, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover,
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 98, 204, 0.15);
    /* Colorful shadow on hover */
    border-bottom-color: var(--primary-color);
}

.feature-card:hover::before,
.service-card:hover::before {
    opacity: 1;
}

/* Service Icons with Circle Background */
.service-icon,
.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon,
.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
    /* Energetic Flip */
}

.read-more {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Alternating Sections */
.alternating-section {
    padding: 100px 0;
}

.alternating-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.alternating-row.reverse {
    flex-direction: row-reverse;
}

.alt-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy */
}

.alternating-row:hover .alt-image img {
    transform: scale(1.03) rotate(1deg);
}

/* Query Section */
.query-section {
    background: linear-gradient(rgba(0, 30, 60, 0.85), rgba(0, 74, 158, 0.85)), url('images/support-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.query-section h2 {
    color: var(--white);
}

/* Footer */
footer {
    background-color: #0b1c2c;
    color: #a0aeb9;
    padding: 80px 0 0px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aeb9;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6c7a87;
    font-size: 0.85rem;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-call {
    background-color: var(--primary-color);
    animation: pulse 2s infinite;
}

/* Marquee Section */
.marquee-section {
    padding: 50px 0;
    background: var(--secondary-color);
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-item {
    position: relative;
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.marquee-item:hover img {
    transform: scale(1.1);
}

.marquee-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 2));
    }

    /* Move half way assuming content is doubled */
}

/* Pause on hover for better UX */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
    }

    .alternating-row {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(90deg, #0062cc 0%, #4a90e2 100%);
    /* Vibrant Bright Blue */
    color: var(--white);
    padding: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
    position: relative;
    z-index: 900;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    /* Bolder for attention */
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trust-item i {
    color: #fff;
    /* White icons for clean look on blue */
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .trust-grid {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .trust-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 15px;
        text-align: center;
    }

    .trust-item {
        justify-content: center;
    }
}

/* Contact Page Layout & Split Content */
.split-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.text-col {
    flex: 1;
}

.img-col {
    flex: 1;
}

@media (max-width: 768px) {
    .split-content {
        flex-direction: column;
    }
}

.bg-soft-orange {
    background-color: #fff8f2;
    border-top: 1px solid #ffe0b2;
    border-bottom: 1px solid #ffe0b2;
}

/* Repair Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
    margin-top: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 98, 204, 0.3);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before {
        width: 4px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
}
/* FAQ Accordion */
.faq-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
    background: #f0f7ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust if content is longer */
    padding: 0 20px 20px 20px;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Creative Why Choose Us Redesign */
.creative-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.grid-row-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-row-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.creative-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 98, 204, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.creative-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 98, 204, 0.15);
    border-color: var(--primary-color);
}

.creative-card .feature-icon {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.creative-card:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 98, 204, 0.3);
}

.creative-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.creative-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .grid-row-2, .grid-row-3 {
        grid-template-columns: 1fr;
    }
}
