   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #f5f5f5;
        }

        /* Header Styles */
        header {
            background-color: #ffffff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        /* Logo Area */
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            text-decoration: none;
            white-space: nowrap;
        }

        /* Navigation */
        nav {
            display: flex;
            gap: 0;
            flex: 1;
            justify-content: center;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 0;
            align-items: center;
        }

        nav li {
            position: relative;
        }

        nav a {
            display: block;
            padding: 24px 18px;
            text-decoration: none;
            color: #888;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            text-transform: uppercase;
        }

        nav a:hover {
            color: #333;
        }

        /* Dropdown Arrow */
        .dropdown-arrow {
            display: inline-block;
            margin-left: 6px;
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: -1px;
            border-top: 2px solid #007bff;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu a {
            padding: 12px 20px;
            border-bottom: 1px solid #f0f0f0;
            text-transform: capitalize;
            font-size: 13px;
        }

        .dropdown-menu li:last-child a {
            border-bottom: none;
        }

        .dropdown-menu a:hover {
            background-color: #f9f9f9;
            color: #007bff;
        }

        /* Search Icon */
        .search-icon {
            cursor: pointer;
            color: #888;
            font-size: 18px;
            transition: color 0.3s ease;
            margin-left: 20px;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-icon:hover {
            color: #333;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            margin-left: 20px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background-color: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                height: 60px;
            }

            nav {
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                flex-direction: column;
                background-color: #ffffff;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            nav.active {
                max-height: 500px;
            }

            nav ul {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }

            nav a {
                padding: 14px 20px;
                border-bottom: 1px solid #f0f0f0;
                width: 100%;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu-btn.active span:nth-child(1) {
                transform: rotate(45deg) translate(10px, 10px);
            }

            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: #f9f9f9;
                border-top: none;
                border-left: 3px solid #007bff;
                margin-top: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .dropdown.active .dropdown-menu {
                max-height: 300px;
            }

            .dropdown-arrow {
                margin-left: 10px;
                float: right;
            }
        }

          /* What We Do Section */
        .what-we-do {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 40px;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 400;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .title-underline {
            width: 80px;
            height: 2px;
            background-color: #333;
            margin: 0 auto 50px;
        }

        /* Content Container */
        .content-wrapper {
            display: flex;
            gap: 50px;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        /* Left Image Section */
        .image-section {
    flex: 0 0 40%;
    min-height: 300px;
    background-image: url("../images/new-york-night-panorama-PQJU3SS.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Tablet Devices (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .image-section {
        flex: 0 0 50%;
        min-height: 350px;
    }
    
    .image-placeholder {
        font-size: 28px;
        letter-spacing: 2.5px;
    }
}

/* Small Tablets & Large Phones (600px - 768px) */
@media screen and (max-width: 768px) {
    .image-section {
        flex: 0 0 100%;
        min-height: 100vh;
        width: 100%;
    }
    
    .image-placeholder {
        font-size: 32px;
        letter-spacing: 2.5px;
        padding: 20px;
        border-radius: 0;
    }
}

/* Mobile Devices (480px - 600px) */
@media screen and (max-width: 600px) {
    .image-section {
        min-height: 100vh;
        width: 100%;
    }
    
    .image-placeholder {
        font-size: 28px;
        letter-spacing: 2px;
        padding: 15px;
        border-radius: 0;
    }
}

/* Small Mobile Devices (up to 480px) */
@media screen and (max-width: 480px) {
    .image-section {
        min-height: 100vh;
        width: 100%;
    }
    
    .image-placeholder {
        font-size: 24px;
        letter-spacing: 1.5px;
        padding: 15px;
        border-radius: 0;
    }
}

/* Extra Small Devices (up to 360px) */
@media screen and (max-width: 360px) {
    .image-section {
        min-height: 100vh;
        width: 100%;
    }
    
    .image-placeholder {
        font-size: 22px;
        letter-spacing: 1px;
        padding: 12px;
        border-radius: 0;
    }
}


        /* Right Text Section */
        .text-section {
            flex: 0 0 60%;
            padding-top: 10px;
        }

        .text-section p {
            font-family: Georgia, 'Garamond', serif;
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 18px;
            text-align: justify;
        }

        .text-section p:last-of-type {
            margin-bottom: 30px;
        }

        /* Button Container */
        .button-container {
            text-align: center;
            margin-top: 30px;
        }

        /* Read More Button */
        .read-more-btn {
            background-color: #ed1515;
            color: #ffffff;
            padding: 12px 30px;
            border: none;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            border-radius: 2px;
            letter-spacing: 0.5px;
        }

        .read-more-btn:hover {
            background-color: #b81930;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .what-we-do {
                margin: 60px auto;
                padding: 0 30px;
            }

            .content-wrapper {
                gap: 30px;
            }

            .section-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .what-we-do {
                margin: 40px auto;
                padding: 0 20px;
            }

            .content-wrapper {
                flex-direction: column;
                gap: 40px;
            }

            .image-section {
                flex: 0 0 100%;
            }

            .text-section {
                flex: 0 0 100%;
                padding-top: 0;
            }

            .image-placeholder {
                height: 250px;
                font-size: 24px;
            }

            .section-title {
                font-size: 28px;
            }

            .text-section p {
                font-size: 14px;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .what-we-do {
                margin: 30px auto;
                padding: 0 15px;
            }

            .section-title {
                font-size: 24px;
            }

            .image-placeholder {
                height: 200px;
                font-size: 18px;
                letter-spacing: 2px;
            }

            .text-section p {
                font-size: 13px;
            }
        }

        /* end of what we do section */

        /* footer */
          /* Top Brown Banner */
        .footer-banner {
            background-color: #9D8B8B;
            color: #ffffff;
            padding: 20px 40px;
            text-align: center;
            font-size: 16px;
            letter-spacing: 1.5px;
            font-weight: 500;
        }

        /* Main Footer */
        footer {
            background-color: #f0f0f0;
            padding: 60px 40px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Top Section - Title & Enquire Button */
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 50px;
        }

        .company-title {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #333;
            max-width: 60%;
        }

        .enquire-btn {
            background-color: #ffffff;
            color: #333;
            padding: 12px 30px;
            border: 2px solid #333;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 3px;
            letter-spacing: 0.5px;
            white-space: nowrap;
            margin-top: 5px;
        }

        .enquire-btn:hover {
            background-color: #333;
            color: #ffffff;
        }

        /* Social Icons Section */
        .social-section {
            text-align: center;
            margin: 40px 0;
            padding: 30px 0;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 25px;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.2);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            stroke: #333;
            fill: none;
        }

        /* Bottom Content Section */
        .footer-bottom {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 30px;
            align-items: flex-start;
            position: relative;
            margin-top: -80px;
            padding-bottom: 0;
        }

        /* Left Section - Company Info */
        .company-info {
            padding-top: 40px;
            background-color: #f0f0f0;
            position: relative;
            z-index: 5;
            padding-right: 30px;
        }

        .info-text {
            font-size: 14px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
            text-align: justify;
        }

        .divider {
            height: 1px;
            background-color: #333;
            margin: 30px 0;
        }

        /* Contact Details */
        .contact-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .contact-item {
            font-size: 13px;
            line-height: 1.8;
            color: #333;
        }

        .contact-item strong {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .contact-item span {
            display: block;
            margin-bottom: 3px;
        }

        /* Right Section - Attractions Box */
        .attractions-box {
            background-color: #DC143C;
            border: 3px solid #ffffff;
            padding: 40px;
            color: #ffffff;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            z-index: 10;
            margin-top: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            align-self: stretch;
        }

        .attractions-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 25px;
            border-bottom: 2px solid #ffffff;
            padding-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .attractions-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .attractions-list li {
            font-size: 15px;
            margin-bottom: 12px;
            line-height: 1.6;
            padding-left: 20px;
            position: relative;
        }

        .attractions-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 18px;
        }

        .need-help {
            border-top: 2px solid #ffffff;
            padding-top: 20px;
        }

        .help-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .help-icon {
            width: 18px;
            height: 18px;
        }

        .help-text {
            font-size: 13px;
            line-height: 1.6;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            footer {
                padding: 50px 30px;
            }

            .footer-banner {
                padding: 15px 30px;
                font-size: 14px;
            }

            .company-title {
                font-size: 36px;
                max-width: 65%;
            }

            .footer-bottom {
                gap: 40px;
            }

            .attractions-box {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-top {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 40px;
            }

            .company-title {
                font-size: 28px;
                max-width: 100%;
                margin-bottom: 15px;
            }

            .enquire-btn {
                width: 100%;
                text-align: center;
            }

            .social-icons {
                gap: 20px;
            }

            .footer-bottom {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-top: 0;
                padding-bottom: 0;
            }

            .company-info {
                padding-right: 0;
            }

            .attractions-box {
                margin-top: 0;
                min-height: auto;
            }

            .contact-details {
                grid-template-columns: 1fr;
            }

            .attractions-box {
                min-height: auto;
                padding: 30px;
            }

            footer {
                padding: 40px 20px;
            }

            .footer-banner {
                padding: 12px 20px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .company-title {
                font-size: 22px;
                letter-spacing: 0.5px;
            }

            .attractions-title {
                font-size: 20px;
            }

            .info-text {
                font-size: 13px;
                text-align: left;
            }

            .contact-item {
                font-size: 12px;
            }

            .attractions-list li {
                font-size: 14px;
                margin-bottom: 10px;
            }

            footer {
                padding: 30px 15px;
            }

            .footer-banner {
                padding: 10px 15px;
                font-size: 12px;
                letter-spacing: 0.5px;
            }

            .enquire-btn {
                padding: 10px 20px;
                font-size: 12px;
            }
        }
        /* footer */
        
        /* section 2 */
         /* Main Section */
        .why-choose-us {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 40px;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 400;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .title-underline {
            width: 100px;
            height: 2px;
            background-color: #333;
            margin: 0 auto 60px;
        }

        /* Features Container */
        .features-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
        }

        /* Feature Card */
        .feature-card {
            text-align: center;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.3px;
        }

        .feature-description {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .why-choose-us {
                margin: 80px auto;
                padding: 0 30px;
            }

            .section-title {
                font-size: 36px;
            }

            .features-container {
                gap: 40px;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 45px;
            }
        }

        @media (max-width: 768px) {
            .why-choose-us {
                margin: 60px auto;
                padding: 0 20px;
            }

            .features-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .section-title {
                font-size: 28px;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 40px;
            }

            .feature-title {
                font-size: 18px;
            }

            .feature-description {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .why-choose-us {
                margin: 40px auto;
                padding: 0 15px;
            }

            .section-title {
                font-size: 22px;
            }

            .title-underline {
                width: 80px;
            }

            .features-container {
                gap: 40px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 35px;
            }

            .feature-title {
                font-size: 16px;
            }

            .feature-description {
                font-size: 12px;
            }
        }
        /* section 2 */

        /* banner */
          /* Banner Container */
        .banner-section {
            width: 100%;
            height: 500px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Background Image Container */
        .banner-background-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        /* Background Image with Zoom & Slide Animation */
        .banner-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-image: url('../images/singapore1.jpg');
            background-repeat: no-repeat;
            z-index: 1;
        }

        /* Slide Out Animation */
        .banner-background.slide-out {
            animation: slideOutLeft 0.8s ease-in-out forwards;
        }

        /* Zoom In Animation on Entry */
        .banner-background.slide-in {
            animation: zoomInSlide 5s ease-out forwards;
        }

        /* Zoom In + Slide Animation */
        @keyframes zoomInSlide {
            0% {
                transform: scale(1) translateX(0);
            }
            100% {
                transform: scale(1.15) translateX(-20px);
            }
        }

        /* Slide Out Left Animation */
        @keyframes slideOutLeft {
            0% {
                transform: translateX(0) scale(1.15);
                opacity: 1;
            }
            100% {
                transform: translateX(-100%) scale(1.15);
                opacity: 0;
            }
        }

        /* Dark Overlay */
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
            z-index: 2;
        }

        /* Banner Text Content */
        .banner-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #ffffff;
            background-color: #00000080;
            padding : 20px 40px;
            border-radius: 10px;
        }

        .banner-title {
            font-size: 52px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: #e6e1e1;
            font-family: 'Poppins', sans-serif ;
            line-height: 1.4;
            text-shadow: 4px 4px 12px rgba(255, 255, 255, 0.6);
            max-width: 900px;
            margin: 0 auto;
            word-wrap: break-word;
        }

        /* Image Indicators */
        .banner-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 4;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .indicator:hover {
            background-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .indicator.active {
            background-color: #ffffff;
            width: 32px;
            border-radius: 6px;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .banner-section {
                height: 400px;
            }

            .banner-title {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .banner-section {
                height: 300px;
            }

            .banner-title {
                font-size: 28px;
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .banner-section {
                height: 250px;
            }

            .banner-title {
                font-size: 20px;
                padding: 0 15px;
            }

            .banner-indicators {
                bottom: 20px;
                gap: 8px;
            }

            .indicator {
                width: 8px;
                height: 8px;
            }

            .indicator.active {
                width: 24px;
            }
        }
        /* banner */

        /* CTA banner */
         /* CTA Banner Section */
        .cta-banner {
            background-color: #ed1515;
            
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            box-sizing: border-box;
        }

        /* Banner Text */
        .banner-text {
            font-size: 22px;
            font-weight: 500;
            color: #ffffff;
            letter-spacing: 0.5px;
            padding-left: 90px;
            flex: 1;
        }

        /* Get Offers Button */
        .get-offers-btn {
            background-color: #ffffff;
            color: #333;
            padding: 12px 30px;
            border: none;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 3px;
            letter-spacing: 0.5px;
            white-space: nowrap;
            margin-left: 20px;
        }

        .get-offers-btn:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .get-offers-btn:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .cta-banner {
                padding: 35px;
            }

            .banner-text {
                font-size: 24px;
            }

            .get-offers-btn {
                padding: 11px 25px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .cta-banner {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }

            .banner-text {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .get-offers-btn {
                margin-left: 0;
                width: 100%;
                max-width: 200px;
            }
        }

        @media (max-width: 480px) {
            .cta-banner {
                padding: 25px 15px;
            }

            .banner-text {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .get-offers-btn {
                padding: 10px 20px;
                font-size: 13px;
                width: 100%;
            }
        }
        /* CTA banner */

        /* facts section */
        /* Fantastic Facts Section */
        .fantastic-facts {
    background:
        linear-gradient(
            rgba(255, 21, 21, 0.65),
            rgba(242, 23, 23, 0.65)
        ),
        url("../images/1.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
    
}



        .facts-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section Title */
        .facts-title {
            font-size: 38px;
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .facts-underline {
            width: 120px;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.6);
            margin: 0 auto 60px;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        /* Stat Card */
        .stat-card {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-number {
            font-size: 72px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .stat-label {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.5px;
            line-height: 1.6;
            opacity: 0.95;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .fantastic-facts {
                padding: 60px 30px;
            }

            .facts-title {
                font-size: 40px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }

            .stat-number {
                font-size: 60px;
            }
        }

        @media (max-width: 768px) {
            .fantastic-facts {
                padding: 50px 20px;
            }

            .facts-title {
                font-size: 32px;
                letter-spacing: 1px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .stat-number {
                font-size: 48px;
            }

            .stat-label {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .fantastic-facts {
                padding: 40px 15px;
            }

            .facts-title {
                font-size: 24px;
                letter-spacing: 1px;
            }

            .facts-underline {
                width: 80px;
                margin: 0 auto 40px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 35px;
                margin-top: 30px;
            }

            .stat-number {
                font-size: 40px;
            }

            .stat-label {
                font-size: 13px;
            }
        }
        /* facts section */


        /* clients */
          /* Our Clients Section */
        .our-clients {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 40px;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .title-underline {
            width: 100px;
            height: 2px;
            background-color: #333;
            margin: 0 auto 70px;
        }

        /* Clients Grid */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            row-gap: 60px;
        }

        /* Client Logo Card */
        .client-card {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
            background-color: #ffffff;
            border: 0px solid #f0f0f0;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
            min-height: 120px;
        }

        .client-card:hover {
            transform: scale(1.08) translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: #e0e0e0;
        }

        .client-logo {
            max-width: 100%;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .our-clients {
                margin: 80px auto;
                padding: 0 30px;
            }

            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 35px;
                row-gap: 50px;
            }

            .section-title {
                font-size: 40px;
            }

            .client-card {
                padding: 25px 15px;
                min-height: 110px;
            }
        }

        @media (max-width: 768px) {
            .our-clients {
                margin: 60px auto;
                padding: 0 20px;
            }

            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                row-gap: 45px;
            }

            .section-title {
                font-size: 32px;
            }

            .client-card {
                padding: 25px 15px;
                min-height: 100px;
            }

            .client-logo {
                max-height: 70px;
            }
        }

        @media (max-width: 480px) {
            .our-clients {
                margin: 40px auto;
                padding: 0 15px;
            }

            .clients-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                row-gap: 35px;
            }

            .section-title {
                font-size: 24px;
            }

            .title-underline {
                width: 80px;
                margin: 0 auto 50px;
            }

            .client-card {
                padding: 20px 15px;
                min-height: 90px;
            }

            .client-logo {
                max-height: 60px;
            }
        }

        /* clients */


        /* attraction */
         /* Attractions Section */
        .attractions-section {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 40px;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .title-underline {
            width: 100px;
            height: 2px;
            background-color: #333;
            margin: 0 auto 60px;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            margin-bottom: 40px;
        }

        /* Slider Wrapper */
        .slider-wrapper {
            display: flex;
            gap: 30px;
            overflow: visible;
            transition: transform 0.6s ease-in-out;
        }

        /* Card */
        .card {
            flex: 0 0 calc(33.333% - 20px);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .card-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
            border-radius: 4px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 500;
            margin-top: 20px;
            letter-spacing: 0.3px;
            text-align: center;
        }

        /* Navigation Arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.6);
            color: #ffffff;
            border: none;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            border-radius: 4px;
        }

        .nav-arrow:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .nav-arrow.prev {
            left: -70px;
        }

        .nav-arrow.next {
            right: -70px;
        }

        /* Indicators/Dots */
        .slider-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: #333;
            width: 10px;
        }

        .dot:hover {
            background-color: #999;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .attractions-section {
                margin: 80px auto;
                padding: 0 30px;
            }

            .section-title {
                font-size: 40px;
            }

            .card {
                flex: 0 0 calc(50% - 15px);
            }

            .card-image {
                height: 250px;
            }

            .nav-arrow.prev {
                left: -60px;
            }

            .nav-arrow.next {
                right: -60px;
            }
        }

        @media (max-width: 768px) {
            .attractions-section {
                margin: 60px auto;
                padding: 0 20px;
            }

            .section-title {
                font-size: 32px;
            }

            .slider-wrapper {
                gap: 20px;
            }

            .card {
                flex: 0 0 100%;
            }

            .card-image {
                height: 300px;
            }

            .card-title {
                font-size: 16px;
            }

            .nav-arrow {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .nav-arrow.prev {
                left: 10px;
            }

            .nav-arrow.next {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .attractions-section {
                margin: 40px auto;
                padding: 0 15px;
            }

            .section-title {
                font-size: 24px;
            }

            .title-underline {
                width: 80px;
                margin: 0 auto 40px;
            }

            .card-image {
                height: 220px;
            }

            .card-title {
                font-size: 14px;
                margin-top: 15px;
            }

            .nav-arrow {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }

            .slider-indicators {
                gap: 6px;
                margin-top: 20px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }
        }
        /* attraction */

        /* explore the attractions */
        .attractions-section {
    padding: 80px 40px;
    text-align: center;
    background: #fff;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 10px;
}

.title-underline {
    width: 120px;
    height: 2px;
    background: #000;
    margin: 0 auto 50px;
}

/* Grid Layout */
.attractions-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Attraction Card */
.attraction {
    position: relative;
    overflow: hidden;
}

.attraction img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Heights */
.attraction.large {
    height: 500px;
}

.attraction.medium {
    height: 240px;
}

.attraction.small {
    height: 235px;
}

/* Label Overlay */
.attraction-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 500;
}

/* Hover Effect (Optional, matches premium look) */
.attraction img {
    transition: transform 0.6s ease;
}

.attraction:hover img {
    transform: scale(1.08);
}

@media (max-width: 992px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .right-column {
        flex-direction: column;
    }

    .bottom-row {
        grid-template-columns: 1fr;
    }

    .attraction.large,
    .attraction.medium,
    .attraction.small {
        height: 280px;
    }
}

        /* explore the attractions */


        .our-team-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.team-title {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
}

.team-image-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.team-image {
    width: 100%;
    height: auto;
    display: block;
}


/* video  banner */
/* Main Video Banner Section */
        .video-banner-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        }

        .video-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Dark Overlay */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.35);
            z-index: 2;
        }

        /* Text Content */
        .banner-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #fff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            animation: fadeIn 1s ease-in;
        }

        .banner-title {
            font-size: clamp(2rem, 8vw, 5rem);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: #ffffff;
            filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8));
        }

        .banner-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.9);
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* More Videos Button - Bottom Left */
        .more-videos-button {
            position: absolute;
            bottom: 30px;
            left: 30px;
            z-index: 4;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .more-videos-button:hover {
            background: rgba(0, 0, 0, 0.8);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
        }

        /* More Videos Section - Hidden by default */
        .more-videos-section {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background:#00000080;
            padding: 15px 60px 60px;
            z-index: 4;
            max-height: 200px;
            overflow: hidden;
            transform: translateY(100%);
            transition: transform 0.4s ease;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .more-videos-section.active {
            transform: translateY(0);
        }

        .more-videos-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .more-videos-label {
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .close-videos {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s ease;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-videos:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Videos Carousel Container */
        .carousel-container {
            position: relative;
        }

        .videos-carousel {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 5px 0;
        }

        .videos-carousel::-webkit-scrollbar {
            height: 6px;
        }

        .videos-carousel::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .videos-carousel::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
        }

        .videos-carousel::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .video-thumbnail {
            flex: 0 0 200px;
            height: 120px;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .video-thumbnail:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-thumbnail-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: #fff;
            padding: 8px;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            z-index: 5;
        }

        .carousel-nav:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .carousel-nav.left {
            left: -50px;
        }

        .carousel-nav.right {
            right: -50px;
        }

        /* YouTube Icon */
        .youtube-icon {
            display: inline-block;
            margin-right: 8px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .video-banner-container {
                height: 60vh;
            }

            .banner-title {
                font-size: 2.5rem;
            }

            .banner-subtitle {
                font-size: 1rem;
            }

            .more-videos-button {
                bottom: 20px;
                left: 20px;
                padding: 10px 20px;
                font-size: 12px;
            }

            .more-videos-section {
                padding: 20px 15px 15px;
                max-height: 180px;
            }

            .video-thumbnail {
                flex: 0 0 160px;
                height: 100px;
            }

            .carousel-nav {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }

            .carousel-nav.left {
                left: -40px;
            }

            .carousel-nav.right {
                right: -40px;
            }
        }

        @media (max-width: 480px) {
            .video-banner-container {
                height: 50vh;
            }

            .banner-title {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }

            .banner-subtitle {
                font-size: 0.9rem;
            }

            .more-videos-button {
                bottom: 15px;
                left: 15px;
                padding: 9px 16px;
                font-size: 11px;
            }

            .more-videos-section {
                padding: 15px 10px 10px;
                max-height: 160px;
            }

            .video-thumbnail {
                flex: 0 0 140px;
                height: 85px;
            }

            .carousel-nav {
                display: none;
            }

            .more-videos-label {
                font-size: 14px;
            }

            .close-videos {
                width: 24px;
                height: 24px;
                font-size: 20px;
            }
        }


        /* attractions */
        
        /* Main Section Container - NO BORDER */
        .attractions-section {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 60px 40px;
            border-radius: 0;
            box-shadow: none;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 400;
            color: #333;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        /* Decorative Line */
        .title-divider {
            width: 100px;
            height: 3px;
            background: #333;
            margin: 0 auto 40px;
        }

        /* Carousel Container */
        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-item {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
        }

        /* Images Container */
        .images-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 100%;
            max-width: 1000px;
        }

        .image-card {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            box-shadow: none;
            transition: transform 0.3s ease;
            aspect-ratio: 16 / 10;
        }

        .image-card:hover {
            transform: translateY(-5px);
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Image Caption */
        .image-caption {
            padding: 15px;
            text-align: center;
            font-size: 16px;
            color: #333;
            font-weight: 500;
            background: white;
            letter-spacing: 0.3px;
        }

        /* Navigation Arrows - NO BACKGROUND */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            color: #333;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 32px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            transition: all 0.3s ease;
            z-index: 10;
            font-weight: 300;
        }

        .carousel-nav:hover {
            color: #666;
            transform: translateY(-50%) scale(1.2);
        }

        .carousel-nav.prev {
            left: 10px;
        }

        .carousel-nav.next {
            right: 10px;
        }

        /* Dots Pagination */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d0d0d0;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #333;
            width: 30px;
            border-radius: 6px;
        }

        .dot:hover {
            background: #999;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .attractions-section {
                padding: 40px 30px;
            }

            .images-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .carousel-nav {
                width: 45px;
                height: 45px;
                font-size: 28px;
            }

            .carousel-nav.prev {
                left: 5px;
            }

            .carousel-nav.next {
                right: 5px;
            }
        }

        @media (max-width: 768px) {
            .attractions-section {
                padding: 30px 20px;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .title-divider {
                width: 80px;
                margin-bottom: 30px;
            }

            .images-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 24px;
            }

            .carousel-nav.prev {
                left: 0;
            }

            .carousel-nav.next {
                right: 0;
            }

            .image-caption {
                font-size: 14px;
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            .attractions-section {
                padding: 20px 15px;
            }

            .section-title {
                font-size: 24px;
            }

            .carousel-nav {
                display: none;
            }

            .images-grid {
                gap: 10px;
            }

            .carousel-dots {
                gap: 6px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            .dot.active {
                width: 25px;
            }
        }
        /* attractions */


        /* floatinng buttons */

        .floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn svg {
    width: 26px;
    height: 26px;
}

.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* WhatsApp */
.float-btn.whatsapp {
    background-color: #25D366;
}

/* Call */
.float-btn.call {
    background-color: #ff5e5e;
}

