/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

.btn-outline {
    border-color: #dc2626;
    color: #dc2626;
    background: transparent;
}

.btn-outline:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}
.brand-text{
    font-style: italic;
    font-size: 20px;
    color: red;
    font-weight: bold;
}
.brand-text1{
   font-style: normal;
    font-size: 20px;
   color: red;
    display: block;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        z-index: 2000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        font-size: 2rem;
        color: #111827;
        cursor: pointer;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-link,
    .btn {
        width: 100%;
        display: block;
    }
}
/* HEROS SECTION */

/* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            height: 80%;
            display: flex;
            margin-top: 70px;
            align-items: center;
            overflow: hidden;

        }

        /* ===== BACKGROUND SLIDESHOW ===== */
       .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}


        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

      .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Full height of hero-background */
  background-size: cover;
  background-position: center top; /* Show more of top */
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 2s ease-in-out, transform 20s ease-out;
}


        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .slide.next {
            opacity: 1;
            transform: scale(1.05);
        }

        /* ===== ELEGANT OVERLAY ===== */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(15, 23, 42, 0.85) 0%,
                rgba(30, 41, 59, 0.75) 25%,
                rgba(220, 38, 38, 0.2) 50%,
                rgba(15, 23, 42, 0.9) 100%
            );
            z-index: 2;
        }

        /* ===== ANIMATED PARTICLES ===== */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(251, 191, 36, 0.6);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .particle:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 5s;
            animation-duration: 30s;
        }

        .particle:nth-child(3) {
            top: 80%;
            left: 20%;
            animation-delay: 10s;
            animation-duration: 35s;
        }

        .particle:nth-child(4) {
            top: 30%;
            left: 70%;
            animation-delay: 15s;
            animation-duration: 28s;
        }

        .particle:nth-child(5) {
            top: 50%;
            left: 50%;
            animation-delay: 20s;
            animation-duration: 32s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
            50% {
                transform: translateY(-100px) rotate(180deg);
            }
        }

        /* ===== HERO CONTENT ===== */

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;

        }

        /* ===== BACKGROUND SLIDESHOW ===== */
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 2s ease-in-out, transform 20s ease-out;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .slide.next {
            opacity: 1;
            transform: scale(1.05);
        }

        /* ===== ELEGANT OVERLAY ===== */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;

            z-index: 2;
        }

        /* ===== ANIMATED PARTICLES ===== */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(251, 191, 36, 0.6);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .particle:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 5s;
            animation-duration: 30s;
        }

        .particle:nth-child(3) {
            top: 80%;
            left: 20%;
            animation-delay: 10s;
            animation-duration: 35s;
        }

        .particle:nth-child(4) {
            top: 30%;
            left: 70%;
            animation-delay: 15s;
            animation-duration: 28s;
        }

        .particle:nth-child(5) {
            top: 50%;
            left: 50%;
            animation-delay: 20s;
            animation-duration: 32s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
            50% {
                transform: translateY(-100px) rotate(180deg);
            }
        }

        /* ===== HERO CONTENT ===== */
        .hero-content {
            position: relative;
            z-index: 3;
            width: 100%;
            padding: 0 20px;
        }

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

        .hero-text {
            max-width: 800px;
            animation: slideInUp 1s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.3);
            color: #1261A0;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

        .badge-icon {
            font-size: 1rem;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
        }

        .title-main {
            color: #ffffff;
            display: block;
            margin-bottom: 8px;
        }

        .title-highlight {
            color: #1261A0;
            display: block;
            margin-bottom: 8px;
        }

        .title-accent {
            background: linear-gradient(90deg, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            font-size: 0.8em;
        }

        .hero-description {
            font-size: 1.25rem;
            line-height: 1.7;
            color: #cbd5e1;
            margin-bottom: 32px;
            max-width: 600px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #1261A0;
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #94a3b8;
            font-weight: 500;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #b91c1c, #991b1b);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* ===== SCROLL INDICATOR ===== */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            animation: bounce 2s infinite;
        }

        .scroll-mouse {
            width: 24px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 12px;
            position: relative;
        }

        .scroll-wheel {
            width: 4px;
            height: 8px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }

        .scroll-text {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        /* ===== SLIDESHOW NAVIGATION ===== */
        .slideshow-nav {
            position: absolute;
            bottom: 40px;
            right: 40px;
            z-index: 3;
            display: flex;
            gap: 12px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-dot.active {
            background: #1261A0;
            transform: scale(1.2);
        }

        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.1);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes slideInUp {
            0% {
                opacity: 0;
                transform: translateY(60px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes scroll {
            0% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(16px);
            }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .hero-stats {
                gap: 24px;
                justify-content: center;
            }

            .stat-number {
                font-size: 2rem;
            }

            .hero-actions {
                justify-content: center;
            }

            .btn {
                padding: 14px 24px;
                font-size: 0.9rem;
            }

            .slideshow-nav {
                bottom: 120px;
                right: 50%;
                transform: translateX(50%);
            }

            .scroll-indicator {
                bottom: 80px;
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding: 0 16px;
            }

            .hero-stats {
                gap: 20px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
        }

/* ===== BUSINESSES SECTION ===== */
.businesses-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.businesses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.business-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
    transition: left 0.6s ease;
}

.business-card:hover::before {
    left: 100%;
}

.business-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #dc2626;
}

.business-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    transition: transform 0.3s ease;
}

.business-card:hover .business-icon {
    transform: scale(1.1) rotate(5deg);
}

.business-icon svg {
    width: 40px;
    height: 40px;
}

.business-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.business-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.business-link {
    color: #dc2626;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.business-link:hover {
    color: #b91c1c;
    transform: translateX(5px);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 120px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(17, 24, 39, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.product-content p {
    color: #6b7280;
    line-height: 1.7;
}

.section-footer {
    text-align: center;
}

/* ===== QUALITY SECTION ===== */
.quality-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.quality-content {
    display: grid;

    gap: 80px;
    align-items: center;
}

.quality-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background:  linear-gradient(135deg, #1261A0, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #e5e7eb;
    margin-bottom: 25px;
    line-height: 1.7;
}

.quality-text p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 30px;
}

.quality-image {
    position: relative;
}

.quality-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quality-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-quote {
    width: 40px;
    height: 40px;
    color: #dc2626;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #dc2626;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.author-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background:  linear-gradient(135deg, #111827, #dc2626);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #dc2626;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: #dc2626;
}
/* FOR LOGO */

.brand-link {
  display: flex;
  align-items: center;   /* vertical center */
  gap: 12px;             /* spacing between text and logo */
}

.brand-text-wrap {
  display: flex;
  flex-direction: column; /* stack the two spans */
  line-height: 1.05;
}

.brand-text {
  font-weight: 700;
}

.brand-text1 {
  font-size: .9rem;
}

.brand-img {
  height: 40px;  /* adjust */
  width: auto;
}


/* ===== FOOTER ===== */
.footer {
    background: #1261A0;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-brand .brand-logo {
    width: 50px;
    height: 50px;
    color: #dc2626;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    padding: 10px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    color: #dc2626;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    color:  linear-gradient(135deg, #1261A0, #dc2626);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item strong {
    color:  linear-gradient(135deg, #1261A0, #dc2626);
    font-weight: 600;
}

.contact-item span {
    color: #d1d5db;
    word-break: break-word;
}

.footer-bottom {
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #dc2626;
}

/* ===== RESPONSIVE FOOTER FOR SMALL SCREENS ===== */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 5pxpx;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    /* Hide Products section on mobile */
    .footer-section:nth-child(2) {
        display: none;
    }

    /* Create mobile-specific layout */
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    /* First section (brand) stays full width */
    .footer-section:first-child {
        order: 1;
        width: 100%;
    }

    /* Create container for Company and Contact */
    .mobile-footer-row {
        display: flex;
        gap: 0px;
        order: 2;
    }

    /* Company section on left, Contact on right */
    .footer-section:nth-child(3) {
        flex: 1;
    }

    .footer-section:nth-child(4) {
        flex: 1;
    }

    /* Compact footer brand */
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
        margin-bottom: 15px;
    }

    .footer-brand .brand-logo {
        width: 35px;
        height: 35px;
    }

    .footer-brand h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    /* Compact description */
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    /* Compact social links */
    .social-links {
        gap: 0px;
        justify-content: flex-start;
    }

    .social-link {
        padding: 8px;
        font-size: 0.9rem;
    }

    /* Compact section headers */
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        border-bottom: 2px solid #dc2626;
        padding-bottom: 8px;
        display: inline-block;
    }

    /* Compact links */
    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 5px 0;
        display: block;
    }

    /* Compact contact info */
    .contact-info {
        gap: 0px;
    }

    .contact-item {
        gap: 3px;
    }

    .contact-item strong {
        font-size: 0.9rem;
    }

    .contact-item span {
        font-size: 0.85rem;
    }

    /* Compact footer bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        margin: 0;
    }

    .footer-bottom-links {
        gap: 20px;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 20px;
        padding: 0 12px;
    }

    .footer-brand h3 {
        font-size: 1rem;
    }

    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .social-links {
        gap: 8px;
    }

    .social-link {
        padding: 6px;
        font-size: 0.8rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .contact-item strong,
    .footer-links a {
        font-size: 0.85rem;
    }

    .contact-item span {
        font-size: 0.8rem;
    }

    .footer-bottom {
        gap: 12px;
        padding-top: 15px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.75rem;
    }

    .footer-bottom-links {
        gap: 15px;
    }
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .quality-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .quality-stats {
        position: static;
        margin: 30px auto 0;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .businesses-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .business-card,
    .testimonial-card {
        padding: 25px;
    }

    .quality-text h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== SCROLL ANIMATIONS ===== */
.business-card,
.product-card,
.testimonial-card {
    transition-delay: calc(var(--animation-order, 0) * 0.1s);
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.container, section, .nav-menu {
  max-width: 100vw;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .video-grid {
    height: 100%;
  }

  .video-grid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
  }
}
/* The whole cont us style */
/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    background: #1261A0;
    overflow: hidden;
    margin-top: 80px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/contact-pattern.svg') repeat;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(220, 38, 38, 0.6);
    border-radius: 50%;
    animation: float-particles 15s infinite;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 2.5s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 4.5s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 1.5s; }

@keyframes float-particles {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #111827, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    animation: slideInDown 1s ease-out;
}

.contact-hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out 0.3s both;
}

.contact-main {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.contact-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(220, 38, 38, 0.03) 50%, transparent 70%);
    animation: sweep 15s linear infinite;
}

@keyframes sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ===== CONTACT FORM STYLES ===== */
.contact-form-section {
    position: relative;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 50px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 1s ease-out;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #1261A0, #dc2626);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: #dc2626;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.form-control:focus + .form-focus-effect {
    opacity: 1;
    transform: scale(1);
}

.form-focus-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(251, 191, 36, 0.1));
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
}

.submit-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* ===== CONTACT INFO STYLES ===== */
.contact-info-section {
    animation: slideInRight 1s ease-out;
}

.info-cards-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #1261A0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(220, 38, 38, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.info-details {
    display: grid;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6b7280;
    transition: color 0.3s ease;
}

.info-item:hover {
    color: #dc2626;
}

.info-item svg {
    width: 18px;
    height: 18px;
    color: #dc2626;
    flex-shrink: 0;
}

/* ===== LOCATIONS SECTION ===== */
.locations-section {
    margin-top: 80px;
}

.locations-header {
    text-align: center;
    margin-bottom: 60px;
}

.locations-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #dc2626, #1261A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.location-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(17, 24, 39, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-card:hover .location-overlay {
    opacity: 1;
}

.view-map-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #dc2626;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-map-btn:hover {
    background: white;
    transform: scale(1.05);
}

.location-content {
    padding: 35px;
}

.location-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.location-info {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #6b7280;
}

.location-info-item svg {
    width: 18px;
    height: 18px;
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 2px;
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-list li {
    padding: 4px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.hours-list li:last-child {
    border-bottom: none;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: #1261A0;
    color: white;
    margin-top: 100px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background:  linear-gradient(135deg, #111827, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

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

.faq-question:hover {
    color:  linear-gradient(135deg, #111827, #dc2626);;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #dc2626;
}

.faq-item.active .faq-toggle {
    background: #dc2626;
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}



/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .contact-hero h1 {
        font-size: 3rem;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        padding: 0 20px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.2rem;
    }

    .form-card {
        padding: 30px;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-header h2 {
        font-size: 2.5rem;
    }

    .locations-header h2 {
        font-size: 2.5rem;
    }

    .info-cards-grid {
        gap: 20px;
    }

    .location-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .form-card {
        padding: 25px;
    }

    .info-card {
        padding: 25px;
    }

    .faq-header h2 {
        font-size: 2rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* home page */
/* Slider Container */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Slide Images */
.slides {
    display: flex;
    animation: slideAnimation 15s infinite;
}
.slides img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* PRODUCTS MODAL CSS  */
/* Enhanced Product Card Styles */
.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #94a3b8;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 97, 160, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-image:hover .image-overlay {
    opacity: 1;
}

.read-more-btn {
    background: none;
    border: none;
    color: #dc2626;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #1261A0;
}

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

.read-more-btn.expanded .read-more-icon {
    transform: rotate(180deg);
}

.view-details-btn {
    background: linear-gradient(135deg, #1261A0, #0f4c75);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #0f4c75, #1261A0);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 97, 160, 0.3);
}

.more-features {
    color: #1261A0;
    font-weight: 600;
    font-style: italic;
}

.spec-more {
    color: #1261A0;
    font-weight: 600;
    font-size: 0.875rem;
}

.no-products {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.no-products-content {
    text-align: center;
    color: #6b7280;
}

.no-products-content svg {
    margin-bottom: 24px;
    color: #1261A0;
}

.no-products-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

/* Modal Styles */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    animation: modalFadeIn 0.3s ease;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1000px;
    max-height: 90vh;
    width: 90%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    background: linear-gradient(135deg, #111827, #1261A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: #f3f4f6;
    border: none;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.modal-close:hover {
    background: #dc2626;
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px 40px 40px;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
}

.modal-image-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.modal-placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.modal-category {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 20px;
}

.modal-description h3,
.modal-features h3,
.modal-specifications h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1261A0;
}

.modal-description p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.modal-features li {
    padding: 10px 0;
    color: #374151;
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1rem;
}

.specs-grid-modal {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
}

.spec-item-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(18, 97, 160, 0.05);
    border-radius: 8px;
    border-left: 4px solid #1261A0;
}

.modal-actions {
    margin-top: 30px;
}

.btn-download {
    background: linear-gradient(135deg, #1261A0, #0f4c75);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.btn-download:hover {
    background: linear-gradient(135deg, #0f4c75, #1261A0);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 97, 160, 0.3);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }
}
