  :root {
            --primary: #B02A2A;
            --secondary: #000;
            --light: #fff;
            --accent: #FFD700;
            --text: #333;
            --gray: #f5f5f5;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .bg-primary {
            background-color: var(--primary) !important;
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-primary:hover {
            background-color: #9a2424;
            border-color: #9a2424;
        }
        
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Top Bar */
        .top-bar {
            background-color: var(--secondary);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .social-icons a {
            color: white;
            margin-left: 12px;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--accent);
        }
        
        /* Navbar */
        .navbar {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            height: 40px;
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--secondary);
            margin: 0 10px;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/2373201/pexels-photo-2373201.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        
        /* Section Styling */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--accent);
            bottom: 0;
            left: 25%;
        }
        
        /* Service Cards */
        .service-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Attestation Section */
        .attestation-process {
            background-color: var(--gray);
        }
        
        .process-step {
            text-align: center;
            padding: 20px;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Tour Packages */
        .tour-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .tour-card:hover {
            transform: translateY(-10px);
        }
        
        .tour-img {
            height: 200px;
            object-fit: cover;
        }
        
        .price-badge {
            background-color: var(--accent);
            color: var(--secondary);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
        }
        
        /* Testimonials */
        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 15px;
            height: 100%;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .client-name {
            font-weight: bold;
            color: var(--primary);
        }
        
        .stars {
            color: var(--accent);
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
        }

/* contact   */
   .contact-section {
        background-color: #f9f9f9;
    }
    
    .title-divider {
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, #B02A2A, #FFD700);
        margin-top: 15px;
    }
    
    .contact-info-card, .contact-form-card {
        border: 1px solid rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .contact-info-card:hover, .contact-form-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .icon-box {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .form-control, .form-select {
        border-radius: 0.25rem;
        border: 1px solid #ced4da;
    }
    
    .form-control:focus, .form-select:focus {
        border-color: #B02A2A;
        box-shadow: 0 0 0 0.25rem rgba(176, 42, 42, 0.25);
    }
    
    .map-container {
        border: 1px solid rgba(0,0,0,0.1);
    }
    
    @media (max-width: 768px) {
        .contact-method {
            flex-direction: column;
        }
        
        .icon-box {
            margin-bottom: 10px;
        }
    }

    /* watsapp */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: #25D366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #128C7E;
    }

    /* footer */
     .footer {
        background-color: #1a1a1a;
    }
    
    .footer-logo {
        filter: brightness(0) invert(1);
    }
    
    .footer h5 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer h5:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(to right, #B02A2A, #FFD700);
    }
    
    .footer a {
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .footer a:hover {
        color: #FFD700 !important;
        padding-left: 5px;
    }
    
    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: rgba(255,255,255,0.1);
        border-radius: 50%;
        margin-right: 8px;
        transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
        background-color: #B02A2A;
        transform: translateY(-3px);
    }
    
    .payment-methods img {
        height: 25px;
        width: auto;
        filter: grayscale(100%) brightness(150%);
        transition: all 0.3s ease;
    }
    
    .payment-methods img:hover {
        filter: none;
    }
    
    @media (max-width: 768px) {
        .footer {
            text-align: center;
        }
        
        .footer h5:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer a:hover {
            padding-left: 0;
        }
        
        .social-icons {
            justify-content: center;
        }
        
        .list-unstyled li {
            justify-content: center !important;
        }
    }