:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8a31b;
    --accent-color: #17a2b8;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 10px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(44, 90, 160, 0.1);
}

.navbar-nav .nav-link.active {
    color: white !important;
    background: var(--secondary-color);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}





/* Hero Section */
.hero, .signup-hero, .blog-hero, .blog-detail-hero, .custom-hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(44, 90, 160, 0.6), rgba(44, 90, 160, 0.6)),
        url('../images/photo-1506929562872-bb421503ef21.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.signup-hero {
    height: 60vh;
    min-height: 500px;
}

.blog-hero {
    height: 50vh;
    min-height: 400px;
}

.blog-detail-hero {
    height: 60vh;
    min-height: 500px;
    background-image: url('../images/photo-1503917988258-f87a78e3c995.jpeg');
}

.custom-hero {
    height: 60vh;
    min-height: 500px;
    background-image: url('../images/photo-1431274172761-fca41d930114.jpeg');
    animation: fadeIn 1s ease-in-out;
}

.hero::before, .signup-hero::before, .blog-hero::before, 
.blog-detail-hero::before, .custom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content, .signup-hero-content, .blog-hero-content, 
.blog-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero h1, .signup-hero h1, .blog-hero h1, .blog-detail-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero p, .signup-hero p, .blog-hero p, .blog-detail-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-weight: 600;
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    background-color: #e6930f;
    border-color: #e6930f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(248, 163, 27, 0.4);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Destinations Section */
.destination-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    background-color: #fff;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 90, 160, 0.8) 0%, rgba(44, 90, 160, 0.1) 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.destination-card:hover::before {
    opacity: 1;
}

.destination-card:hover {
    transform: translateY(-8px);
}

.destination-card img {
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
    width: 100%;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-card .card-body {
    padding: 1.8rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.destination-card:hover .card-body {
    transform: translateY(-20px);
}

.destination-card .card-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.destination-card:hover .card-title {
    color: white;
}

.destination-card .card-text {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.destination-card:hover .card-text {
    color: rgba(255, 255, 255, 0.9);
}

.destination-card .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.destination-card:hover .btn {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

/* Package Section */
.package-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    position: relative;
    overflow: hidden;
}

.package-section::before, .package-section::after {
    content: '';
    position: absolute;
    background-color: rgba(248, 163, 27, 0.1);
    border-radius: 50%;
}

.package-section::before {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
}

.package-section::after {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(44, 90, 160, 0.1);
}

.package-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    background-color: white;
    position: relative;
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-card .card-body {
    padding: 2.5rem;
    text-align: center;
}

.package-card i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.package-card .card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.package-duration {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: block;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/photo-1499678329028-101435549a4e.jpeg') center/cover;
    opacity: 0.1;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.author-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.rating {
    color: var(--secondary-color);
    margin-top: 5px;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.8)),
        url('../images/photo-1526778548025-fa2f459cd5c1.jpeg') center/cover no-repeat;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form .form-control {
    height: 55px;
    border-radius: 50px;
    border: none;
    padding: 0 25px;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    position: absolute;
    right: 1px;
    top: 1px;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact-info li {
    margin-bottom: 15px;
    list-style: none;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-payments img, .footer-payments i {
    height: 30px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.footer-payments i:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.loader {
    width: 100px;
    height: 100px;
    position: relative;
}

.loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 8px solid transparent;
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-circle:nth-child(2) {
    border-top-color: white;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation: spin-reverse 1.8s linear infinite;
}

.loader-circle:nth-child(3) {
    border-top-color: var(--accent-color);
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation: spin 2s linear infinite;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
}

.loader-logo i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.8rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Pagination Styles */
.pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 5px;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero h1, .signup-hero h1, .blog-hero h1, .blog-detail-hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 991.98px) {
    .hero h1, .signup-hero h1, .blog-hero h1, .blog-detail-hero h1 {
        font-size: 3.5rem;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-image {
        margin-bottom: 40px;
    }

    #destinations .section-title {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero, .signup-hero, .blog-hero, .blog-detail-hero, .custom-hero {
        min-height: 600px;
    }

    .hero h1, .signup-hero h1, .blog-hero h1, .blog-detail-hero h1 {
        font-size: 2.8rem;
    }

    .hero p, .signup-hero p, .blog-hero p, .blog-detail-hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .package-card .card-body {
        padding: 2rem;
    }

    .contact-form, .contact-info {
        padding: 2rem;
    }

    .footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 575.98px) {
    .hero h1, .signup-hero h1, .blog-hero h1, .blog-detail-hero h1 {
        font-size: 2.2rem;
    }

    .hero p, .signup-hero p, .blog-hero p, .blog-detail-hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a6e 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);

}

.why-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.why-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.8)),
        url('../images/photo-1526778548025-fa2f459cd5c1.jpeg') center/cover no-repeat;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    height: 55px;
    border-radius: 50px;
    border: none;
    padding: 0 25px;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    position: absolute;
    right: 1px;
    top: 1px;
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form .form-control {
    height: 50px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 150px;
}

.contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(248, 163, 27, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-info-text h5 {
    font-weight: 600;
    margin-bottom: 5px;
}





/* About Section */
.about-section {
    background-color: var(--bg-light);
    position: relative;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-stats {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature-box {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: rgba(248, 163, 27, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/photo-1499678329028-101435549a4e.jpeg') center/cover;
    opacity: 0.1;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.author-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.rating {
    color: var(--secondary-color);
    margin-top: 5px;
}











/* About Section */
.about-section {
    background-color: var(--bg-light);
    position: relative;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-stats {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature-box {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: rgba(248, 163, 27, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a6e 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);

}

.why-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.why-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.8)),
        url('../images/photo-1526778548025-fa2f459cd5c1.jpeg') center/cover no-repeat;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    height: 55px;
    border-radius: 50px;
    border: none;
    padding: 0 25px;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    position: absolute;
    right: 1px;
    top: 1px;
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form .form-control {
    height: 50px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 150px;
}

.contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(248, 163, 27, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-info-text h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.custom-hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(44, 90, 160, 0.7), rgba(44, 90, 160, 0.7)),
        url('../images/photo-1431274172761-fca41d930114.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

/* Process Steps */
.process-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.2);
    background-color: var(--primary-color);
}

/* Itinerary Builder */
.itinerary-builder {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.5s ease;
}

.itinerary-builder:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.day-card {
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 2rem;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.activity-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    transform-origin: center;
}

.activity-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Destination Selector */
.destination-selector {
    position: relative;
}

.destination-options {
    position: absolute;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

.destination-option {
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.destination-option:hover {
    background-color: var(--bg-light);
    transform: translateX(5px);
}

/* Sample Itineraries */
.sample-itinerary {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    transform: translateY(0);
}

.sample-itinerary:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.sample-itinerary img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.sample-itinerary:hover img {
    transform: scale(1.1);
}

/* Button Animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(248, 163, 27, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-primary:hover::after {
    transform: translateX(0);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .custom-hero {
        height: 50vh;
        min-height: 400px;
    }
}

.sample-itinerary .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}
.destination-card:hover{background-color: #fff !important;box-shadow:none !important;}
.whitetitle{    color: #ffffff !important;}


/* Signup Form Section */
.signup-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.signup-container {
    max-width: 900px;
    margin: 0 auto;
}

.signup-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.signup-image {
    background: linear-gradient(rgba(44, 90, 160, 0.7), rgba(44, 90, 160, 0.7)),
        url('../images/photo-1508672019048-805c876b67e2.jpeg') center/cover no-repeat;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px;
    text-align: center;
}

.signup-image h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.signup-image p {
    margin-bottom: 30px;
}

.signup-form {
    padding: 50px;
    background-color: white;
}

.signup-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.form-control {
    height: 50px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-light);
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link a {
    color: var(--primary-color);
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

.social-login {
    margin-top: 30px;
    text-align: center;
}

.social-login p {
    position: relative;
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-login p::before,
.social-login p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #ddd;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.btn-google {
    background-color: #DB4437;
}

.btn-facebook {
    background-color: #4267B2;
}

.btn-twitter {
    background-color: #1DA1F2;
}

.blog-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(44, 90, 160, 0.6), rgba(44, 90, 160, 0.6)),
        url('../images/photo-1506929562872-bb421503ef21.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.blog-hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    margin-bottom: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background-color: white;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-post-img {
    height: 350px;
    overflow: hidden;
}

.blog-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post:hover .blog-post-img img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 30px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-post-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.blog-post-meta i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.blog-post-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-post-excerpt {
    margin-bottom: 20px;
    color: var(--text-light);
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Sidebar */
.blog-sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    color: var(--primary-color);
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background-color: var(--primary-color);
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.categories-list span {
    background-color: var(--bg-light);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.recent-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-title {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.recent-post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--secondary-color);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: var(--bg-light);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 50px;
}

.page-item.active .page-link {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-link {
    color: var(--primary-color);
    margin: 0 5px;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: var(--bg-light);
}

.page-link:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.8)),
        url('../images/photo-1526778548025-fa2f459cd5c1.jpeg') center/cover no-repeat;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form .form-control {
    height: 55px;
    border-radius: 50px;
    border: none;
    padding: 0 25px;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    position: absolute;
    right: 1px;
    top: 1px;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* adjust as needed */
}


/* Blog Hero Section */
.blog-detail-hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(44, 90, 160, 0.6), rgba(44, 90, 160, 0.6)),
        url('../images/photo-1503917988258-f87a78e3c995.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.blog-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.blog-detail-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.blog-detail-meta-item {
    display: flex;
    align-items: center;
    margin: 0 15px 10px;
    font-size: 0.95rem;
}

.blog-detail-meta-item i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Blog Content Section */
.blog-detail-section {
    padding: 80px 0;
}

.blog-detail-container {
    margin: 0 auto;
}

.blog-detail-content {
    background-color: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail-img {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.blog-detail-img img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-detail-text h2,
.blog-detail-text h3,
.blog-detail-text h4 {
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.blog-detail-text h2 {
    font-size: 2rem;
}

.blog-detail-text h3 {
    font-size: 1.6rem;
}

.blog-detail-text h4 {
    font-size: 1.3rem;
}

.blog-detail-text blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.2rem;
}

.blog-detail-text ul,
.blog-detail-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-detail-text li {
    margin-bottom: 10px;
}

.blog-detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.blog-tag {
    background-color: var(--bg-light);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background-color: var(--secondary-color);
    color: white;
}

.blog-author {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin: 50px 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
    flex-shrink: 0;
    border: 3px solid var(--secondary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 10px;
    color: var(--primary-color);
}

.author-info p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Comments Section */
.comments-section {
    margin-top: 60px;
}

.comments-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.comments-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.comment {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex-grow: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.comment-author {
    font-weight: 600;
    color: var(--primary-color);
}

.comment-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.comment-text {
    margin-bottom: 15px;
}

.comment-reply {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.comment-reply:hover {
    text-decoration: underline;
}

.comment-reply i {
    margin-left: 5px;
}

.comment-reply-form {
    margin-left: 90px;
    margin-top: 20px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

/* Comment Form */
.comment-form {
    margin-top: 60px;
}

.comment-form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.comment-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.comment-form p {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.25);
}

textarea.form-control {
    min-height: 150px;
}

.form-submit {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.2);
}

/* Related Posts */
.related-posts {
    margin-top: 80px;
}

.related-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.related-post {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-post-img {
    height: 200px;
    overflow: hidden;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-post:hover .related-post-img img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.related-post-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-post-title a:hover {
    color: var(--secondary-color);
}

.related-post-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.8)),
        url('../images/photo-1526778548025-fa2f459cd5c1.jpeg') center/cover no-repeat;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form .form-control {
    height: 55px;
    border-radius: 50px;
    border: none;
    padding: 0 25px;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    position: absolute;
    right: 1px;
    top: 1px;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Make the entire navbar menu scrollable on small screens */
@media (max-width: 991.98px) {
    .navbar-collapse {
      max-height: 80vh; /* Controls the height of the open menu */
      overflow-y: auto; /* Enables scrolling inside the menu */
    }
  
    /* Make dropdown menu scrollable */
    .navbar-nav .dropdown-menu {
      position: static !important; /* prevents being removed from flow */
      max-height: 300px;           /* adjust based on content */
      overflow-y: auto;
      overflow-x: hidden;
    }
  }
  