﻿:root {
    --primary-color: #ff7e33;
    --secondary-color: #2a3d66;
    --accent-color: #ffd166;
    --light-color: #f7f7f7;
    --dark-color: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1px 0;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.95);
    }

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 24px;
}

    .navbar-brand span {
        color: var(--secondary-color);
    }

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        bottom: 0;
        left: 0;
        transition: width 0.3s ease;
    }

    .nav-link:hover:after {
        width: 100%;
    }

    .nav-link.active:after {
        width: 100%;
    }

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

    .hero-section h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        animation: fadeInDown 1s ease;
    }

    .hero-section p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 30px;
        animation: fadeInUp 1s ease;
    }

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #e56a2a;
        border-color: #e56a2a;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 126, 51, 0.3);
    }

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

    .section-title:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background: var(--primary-color);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

.offer-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

    .offer-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

.offer-img {
    height: 200px;
    overflow: hidden;
}

    .offer-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.offer-card:hover .offer-img img {
    transform: scale(1.1);
}

.offer-body {
    padding: 20px;
    background: white;
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.destination-circle {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .destination-circle:hover {
        transform: translateY(-10px);
    }

.circle-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

    .circle-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.discount-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.trip-type-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trip-type-img {
    width: 100%;
    height: 100%;
}

    .trip-type-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.trip-type-card:hover .trip-type-img img {
    transform: scale(1.1);
}

.trip-type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
}

    .trip-type-overlay h3 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

.divya-darshan-section {
    background: linear-gradient(rgba(42, 61, 102, 0.9), rgba(42, 61, 102, 0.9)), url('https://images.unsplash.com/photo-1587474260584-136574528ed5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    color: white;
}

.divya-darshan-title {
    margin-bottom: 50px;
    text-align: center;
}

.divya-darshan-slider {
    padding: 20px 0;
}

.holy-place-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 10px;
    transition: all 0.3s ease;
}

    .holy-place-card:hover {
        transform: translateY(-10px);
    }

.holy-place-img {
    height: 200px;
    overflow: hidden;
}

    .holy-place-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.holy-place-body {
    padding: 20px;
    color: var(--dark-color);
}

    .holy-place-body h3 {
        margin-bottom: 10px;
        color: var(--secondary-color);
    }

.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-color);
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.social-media-section {
    padding: 50px 0;
    background-color: var(--secondary-color);
    color: white;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .social-icon:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--primary-color);
        top: 0;
        left: -100%;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .social-icon:hover {
        transform: translateY(-5px);
    }

        .social-icon:hover:after {
            left: 0;
        }

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    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 ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        background: #128C7E;
    }

footer {
    background-color: #096256;
    color: white;
    padding: 50px 0 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

    .footer-logo span {
        color: white;
    }

.footer-links h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 5px;
    }

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .circle-img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

    .section-title {
        margin-bottom: 30px;
    }

    .circle-img {
        width: 120px;
        height: 120px;
    }

    .discount-badge {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 20px;
    }

    .hero-section {
        padding: 60px 0;
    }

        .hero-section h1 {
            font-size: 1.8rem;
        }

    .circle-img {
        width: 100px;
        height: 100px;
    }
}
