  :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;
        }
    }



    /* updated 18.7.2025 */
.services-section {
    background-color: #f9fbfd;
    position: relative;
    overflow: hidden;
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    display: inline-block;
    color: #3a7bd5;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-description {
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1.1rem;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    max-width: 300px;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #3a7bd5, transparent);
    flex-grow: 1;
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: #3a7bd5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(58,123,213,0.15);
    border-color: rgba(58,123,213,0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(58,123,213,0.2);
    transition: all 0.3s ease;
}

.card-hover:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 12px;
}

.service-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    border-radius: 3px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: #34495e;
    position: relative;
    padding-left: 30px;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #2ecc71;
    font-size: 0.9rem;
}

.btn-link {
    color: #3a7bd5;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #2980b9;
}

.btn-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(58,123,213,0.3);
}

@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
