* {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background-color: #f8f9fa;
        }

        /* Navbar */
        .navbar {
            background: #9abcdab5;
            backdrop-filter: blur(10px);
        }

        .navbar a {
            color: #fff !important;
            font-weight: 500;
            transition: 0.3s;
        }

        .navbar a:hover {
            color: #c5001a !important;
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            /* background: url('../img/gallery/1.jpg') center/cover no-repeat fixed; */
            position: relative;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-direction: column;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            z-index: 1;
            animation: fadeInDown 1.5s ease;
        }

        .hero p {
            font-size: 1.3rem;
            z-index: 1;
            animation: fadeInUp 1.5s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Dual Image Slider */
        .slider-section {
            padding: 80px 0;
            background: #fff;
        }

        .dual-slider {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .dual-slider img {
            width: 48%;
            border-radius: 15px;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .dual-slider img:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            font-weight: 700;
            font-size: 2.5rem;
            color: #002c54;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            width: 100px;
            height: 4px;
            background: #c5001a;
            display: block;
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* About */
        #about {
            padding: 80px 0;
            background: #f1f5f9;
        }

        #about p {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            color: #555;
        }

        /* Services */
        #services {
            background: #fff;
            padding: 80px 0;
        }

        .card {
            border: none;
            border-radius: 15px;
            transition: 0.4s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .card i {
            color: #c5001a;
            transition: 0.3s;
        }

        .card:hover i {
            transform: rotate(10deg);
        }

        /* Testimonials */
        #testimonials {
            padding: 80px 0;
            background: #f9fafb;
        }

        .testimonial {
            background: #fff;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .testimonial:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .testimonial img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }

        /* FAQ */
        #faq {
            padding: 80px 0;
            background: #fff;
        }

        .faq-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            transition: 0.3s;
            cursor: pointer;
        }

        .faq-item:hover {
            background: #e3f2fd;
        }

        .faq-item p {
            display: none;
            margin-top: 10px;
            color: #555;
        }

        /* Footer */
        footer {
            background: #002c54;
            color: #fff;
            padding: 50px 0;
            text-align: center;
        }

        footer a {
            color: #c5001a;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }