:root {
            --primary: #0A4A5A;
            --accent: #E30613;
            --dark: #0F1A1F;
            --light: #F8F9FA;
            --metallic: #A8B5C0;
        }
       
        * { margin: 0; padding: 0; box-sizing: border-box; }
       
        body {
            font-family: 'Inter', system-ui, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 0;
        }
       
        .display-font { font-family: 'Playfair Display', serif; }
       
        /* NAVBAR */
        .navbar {
            background: rgba(15, 26, 31, 0.97);
            backdrop-filter: blur(20px);
            z-index: 1050;
        }
        .navbar.scrolled {
            background: rgba(15, 26, 31, 0.99);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover { color: var(--accent) !important; }
        
        /* CUSTOM AUTO HERO SLIDER - 5 second interval */
        .hero-slider {
            position: relative;
            height: 680px;
            overflow: hidden;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
            display: none;
        }
        .hero-slide.active {
            opacity: 1;
            display: block;
        }
        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10,74,90,0.72) 25%, rgba(15,26,31,0.92) 80%);
            z-index: 1;
        }
        .hero-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(227,6,19,0.16), transparent 70%);
            animation: subtle-red-glow 18s ease-in-out infinite alternate;
            z-index: 2;
        }
        @keyframes subtle-red-glow {
            from { opacity: 0.6; }
            to { opacity: 0.95; }
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 820px;
        }
        .hero-slider h1 {
            font-size: clamp(2.8rem, 5.5vw, 4.7rem);
            line-height: 1.05;
            color: white;
            text-shadow: 0 12px 40px rgba(0,0,0,0.75);
        }
        .hero-slider .lead {
            font-size: 1.38rem;
            color: var(--light);
            max-width: 560px;
        }
        
        /* Subtle slider controls */
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.18);
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 20;
            transition: all 0.4s ease;
        }
        .slider-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
        }
        .slider-btn.prev { left: 30px; }
        .slider-btn.next { right: 30px; }
        
        /* LIVE FUEL PRICES - Manual + Elegant Shine */
        .live-prices {
            background: var(--dark);
            color: white;
            padding: 24px 0;
            position: relative;
            overflow: hidden;
        }
        .live-prices::before {
            content: '';
            position: absolute;
            inset: -50%;
            background: radial-gradient(circle, rgba(227,6,19,0.09) 0%, transparent 70%);
            animation: slow-shine 40s linear infinite;
        }
        @keyframes slow-shine {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .price-card {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 14px;
            padding: 20px 18px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -120%;
            width: 50%;
            height: 300%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
            transform: skewX(-25deg);
            animation: price-shine 7s linear infinite;
        }
        @keyframes price-shine {
            0% { left: -120%; }
            100% { left: 300%; }
        }
        .price-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 35px rgba(227,6,19,0.3);
        }

        /* NEWS SECTION - Modern & Classy */
        /* NEWS IMAGES - PERFECT FIT */
        .news-card {
            overflow: hidden;
            border-radius: 14px;
            background: #fff;
            transition: all 0.4s ease;
        }

        .news-img {
            width: 100%;
            height: 240px;
            overflow: hidden;
            position: relative;
        }

        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;       /* fills nicely */
            object-position: center; /* keeps focus centered */
            transition: transform 0.6s ease;
        }

        .news-card:hover img {
            transform: scale(1.08);
        }

        .news-section {
            background: linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)), url('https://picsum.photos/id/1015/2000/1200') center/cover fixed;
            background-attachment: fixed;
            color: white;
        }
        .news-card {
            background: rgba(255,255,255,0.96);
            color: #222;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .news-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
        }
        .news-card img {
            height: 240px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .news-card:hover img {
            transform: scale(1.08);
        }
        
        /* TEAM SECTION - Modern & Professional */
        /* TEAM CARDS */
        .team-card {
            border-radius: 16px;
            overflow: hidden;
            background: #fff;
            transition: all 0.4s ease;
            text-align: center;
        }

        /* IMAGE CONTAINER */
        .team-img {
            width: 100%;
            height: 320px; /* consistent height */
            overflow: hidden;
        }

        /* IMAGE */
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center; /* KEY FIX: keeps faces visible */
            transition: all 0.5s ease;
        }

        /* HOVER EFFECT (B&W → COLOR) */
        .team-card:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        /* TEXT */
        .team-info {
            padding: 20px;
        }

        .team-info h5 {
            margin-bottom: 5px;
            font-weight: 600;
        }

        .team-info p {
            font-size: 0.9rem;
            color: #777;
        }
        .team-section {
            background: var(--light);
        }
        .team-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
        }
        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(10,74,90,0.15);
        }
        .team-card img {
            height: 320px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .team-card:hover img {
            transform: scale(1.05);
        }
        .team-info {
            padding: 24px;
            text-align: center;
        }
        .team-info h5 {
            margin-bottom: 4px;
            font-weight: 600;
        }
        .team-info p {
            color: var(--primary);
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        
        @media (max-width: 768px) {
            .team-img {
                height: 260px;
            }

            .news-img {
                height: 200px;
            }

            .team-img img {
                object-position: top center; /* keeps faces safe */
            }
        }
        /* TESTIMONIALS - World Class */
        .testimonial-slide {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }
        
        /* Sections */
        section { padding: 110px 0; }
        .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 68px;
            height: 4px;
            background: var(--accent);
        }
        
        .premium-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .premium-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(227,6,19,0.18);
        }
        
        /* Refined buttons */
        .btn-accent {
            background: var(--accent);
            border: none;
            padding: 14px 34px;
            font-weight: 600;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(227,6,19,0.25);
            transition: all 0.4s ease;
        }
        .btn-accent:hover {
            background: #c00510;
            box-shadow: 0 8px 25px rgba(227,6,19,0.35);
            transform: translateY(-2px);
        }
        .btn-primary {
            background: var(--primary);
            border: none;
            padding: 14px 32px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.4s ease;
        }
        .btn-primary:hover {
            background: #0b5a6d;
            transform: translateY(-3px);
        }
        
        /* Premium Footer */
        footer {
            background: var(--dark);
            color: #bbb;
            padding: 90px 0 40px;
        }
        footer h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 24px;
        }
        footer a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--accent);
        }