body {
            font-family: 'Roboto', Arial, sans-serif;
            background: #f8f9fa;
        }

        /* Hero About Section Background Overlay */
        .hero-about {
            background: url('../assets/photo.jpg') center center/cover no-repeat;
            min-height: 350px;
            color: #fff;
            position: relative;
        }
        .hero-about::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(34, 49, 63, 0.6);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 0 60px 0;
        }
        @media (max-width: 767px) {
            .hero-content { padding: 40px 0 30px 0; }
        }

        .about-us-section img {
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }

        .team-member img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .mission-section {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            padding: 32px 24px;
        }

        .contact-cta {
            background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
            color: #fff;
            border-radius: 12px;
            padding: 40px 24px;
            margin-top: 48px;
        }

        .contact-cta .btn {
            background: #fff;
            color: #185a9d;
            font-weight: bold;
            border: none;
        }

        /* Swiper Tour Packages */
        .packagesSwiper .swiper-slide {
            height: auto;
            display: flex;
            align-items: stretch;
        }
        .packagesSwiper .card {
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            transition: transform 0.2s;
        }
        .packagesSwiper .card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }
        .packagesSwiper .card-img-top {
            height: 180px;
            object-fit: cover;
        }
        .swiper-button-next, .swiper-button-prev {
            color: #185a9d;
        }
        .swiper-pagination-bullet-active {
            background: #43cea2;
        }


        .swiper-pagination-bullet {
  background: green !important;
}
