﻿

    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background-color: #f9fafb;
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
        }

        .slide-content h1 {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: slideInUp 0.8s ease-out 0.2s both;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
            letter-spacing: -1px;
        }

        .slide-content .meta-description {
            font-size: 22px;
            font-weight: 400;
            line-height: 1.5;
            margin-bottom: 40px;
            max-width: 800px;
            animation: slideInUp 0.8s ease-out 0.4s both;
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
            color: rgba(255, 255, 255, 0.95);
        }

        .slide-content .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 42px;
            background: #2563eb;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: slideInUp 0.8s ease-out 0.6s both;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .slide-content .cta-button:hover {
            background: #1d4ed8;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
        }

        .slide-content .cta-button i {
            font-size: 18px;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

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

        .slider-dot.active {
            background: #fff;
            width: 50px;
            border-radius: 7px;
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: #fff;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: 30px;
        }

        .slider-arrow.next {
            right: 30px;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =========================================
           NEW SECTIONS STYLING
           ========================================= */
        
        /* Common Section Styles */
        .section-padding {
            padding: 80px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #fbbf24; /* Yellow underline */
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #6b7280;
            line-height: 1.6;
        }

        /* Grid Layouts - Base 4 columns */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        /* PARTNER SECTION (Icons) */
        .partner-card {
            background: #f3f4f6; /* Light gray background */
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .partner-card:hover {
            transform: translateY(-5px);
            background: #fff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        .icon-circle {
            width: 64px;
            height: 64px;
            background-color: #dbeafe; /* Light blue bg */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #1e40af; /* Dark blue icon */
            font-size: 24px;
        }

        .partner-title {
            font-weight: 600;
            color: #1f2937;
            font-size: 16px;
        }

        /* SERVICES SECTION */
        .services-bg {
            background-color: #f8fafc; /* Very light blue/gray */
        }

        .service-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 32px;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-color: #bfdbfe;
        }

        .service-icon-box {
            width: 48px;
            height: 48px;
            background-color: #dbeafe;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e40af;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 12px;
        }

        .service-card p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1; /* Pushes button to bottom */
        }

        .learn-more {
            font-size: 14px;
            font-weight: 600;
            color: #2563eb;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s ease;
            margin-top: auto;
        }

        .learn-more:hover {
            gap: 10px;
        }

        /* WHY CHOOSE US */
        .why-us-bg {
            background-color: #fff;
        }

        .why-us-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .yellow-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background-color: #fef3c7; /* Light yellow */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d97706; /* Dark yellow/orange */
            font-size: 20px;
        }

        .why-text h4 {
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 4px;
        }
        
        .why-text p {
            font-size: 14px;
            color: #6b7280;
        }

        /* =========================================
           RESPONSIVE DESIGN
           ========================================= */

        @media (max-width: 1024px) {
            .hero-slider {
                height: 90vh;
                min-height: 550px;
            }

            .slide-content h1 {
                font-size: 52px;
            }
        }

        @media (max-width: 900px) {
            /* General Grid: Switch to 2 columns on tablets/mobile */
            .grid-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            /* SPECIFIC OVERRIDE: Core Services becomes 1 Column */
            .services-grid {
                grid-template-columns: 1fr !important; /* Forces 1 item per line */
            }

            .hero-slider {
                height: 100vh;
                min-height: 500px;
            }

            .slide-content h1 {
                font-size: 36px;
            }

            .slide-content .meta-description {
                font-size: 16px;
            }

            .section-padding {
                padding: 50px 20px;
            }

            .section-title {
                font-size: 28px;
            }
            
            /* Adjustments for Why Choose Us on small screens */
            .why-us-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .slide-content h1 {
                font-size: 28px;
            }

            .slide-content .cta-button {
                padding: 12px 24px;
                font-size: 13px;
            }
            
            .grid-container {
                gap: 15px;
            }

            /* Ensure partner grid is 2 cols on very small screens, 
               but services remains 1 col */
            .partner-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .partner-card {
                padding: 25px 10px;
            }
            
            .icon-circle {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .partner-title {
                font-size: 13px;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            .slide, .slide-content h1, .slide-content .cta-button {
                animation: none;
                transition: none;
            }
        }/* ================= MOBILE HERO SLIDER ADJUSTMENTS ================= */
@media (max-width: 768px) {
    /* Slider Arrows */
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px; /* arrow icon size */
    }

    /* Adjust previous and next positions */
    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    /* Slider Dots */
    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 30px; /* active dot slightly bigger */
    }
}

@media (max-width: 480px) {
    /* Slider Arrows */
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .slider-arrow.prev {
        left: 8px;
    }

    .slider-arrow.next {
        right: 8px;
    }

    /* Slider Dots */
    .slider-dot {
        width: 6px;
        height: 6px;
    }

    .slider-dot.active {
        width: 24px;
    }
}