:root {
    --color-green: #008f00; /* Updated to forest green */
    --color-blue: #0a3b8c; /* Updated to royal blue */
    --color-brown: #654321;
    --color-light-blue: #e6eeff; /* Lighter version of the royal blue */
    --color-gray: #808080;
    --color-cream: #FFFDD0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #FAFAFA;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Adjusted heading sizes */
h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-size: 2.2rem; /* Reduced from 2.5rem */
    text-align: center;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--color-green), var(--color-blue));
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--color-blue) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, var(--color-green), var(--color-blue));
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-green) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(250, 250, 250, 1), transparent);
}

.hero h1 {
    font-size: 3.5rem; /* Reduced from 4.5rem */
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 2rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem; /* Reduced from 2.8rem */
    color: var(--color-blue);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 59, 140, 0.1), rgba(0, 143, 0, 0.1));
    z-index: -1;
}

.about-bg-1 {
    top: -150px;
    left: -150px;
}

.about-bg-2 {
    bottom: -150px;
    right: -150px;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(230, 238, 255, 0.5), rgba(255, 255, 255, 0.8));
    position: relative;
    background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/sagarmartha-national-park.jpg-3VYOgeUR2FkWMvZudRXO3WXWnwGrOG.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.features:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--color-blue);
    font-size: 1.5rem; /* Reduced from 1.8rem */
}

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
}

.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    font-size: 1.4rem; /* Reduced from 1.5rem */
    margin-bottom: 0.5rem;
    color: var(--color-blue);
}

.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-blue);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 1rem;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(230, 238, 255, 0.2), rgba(230, 255, 230, 0.2));
    position: relative;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    position: relative;
    height: 100%;
}

.testimonial-card:before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(10, 59, 140, 0.1);
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.testimonial-info p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    color: white;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem; /* Reduced from 2.5rem */
}

.newsletter p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 50px;
    padding: 0 1.5rem;
    background-color: var(--color-blue);
    color: white;
    border: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: var(--color-green);
}

/* TikTok Feed Section */
.tiktok-feed {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.tiktok-title {
    text-align: center;
    margin-bottom: 3rem;
}

.tiktok-title h2 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.tiktok-title p {
    max-width: 600px;
    margin: 0 auto;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tiktok-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    aspect-ratio: 9/16;
}

.tiktok-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tiktok-item:hover img {
    transform: scale(1.05);
}

.tiktok-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tiktok-item:hover .tiktok-overlay {
    opacity: 1;
}

.tiktok-icon {
    color: white;
    font-size: 2rem;
}

.tiktok-play-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 6rem 0;
}

.instagram-title {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-title h2 {
    margin-bottom: 1rem;
    font-size: 2.2rem; /* Reduced from 2.5rem */
}

.instagram-title p {
    max-width: 600px;
    margin: 0 auto;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-icon {
    color: white;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--color-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
}

.footer-text {
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1.4rem; /* Reduced from 1.5rem */
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--color-green), white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-green);
}

.footer-contact {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-green);
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--color-green);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Custom Button */
.btn-custom {
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-custom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-custom:hover:before {
    width: 100%;
}

.btn-custom:hover {
    background-color: var(--color-green) !important;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-custom {
    background: transparent;
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
    padding: 0.7rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: white;
    transform: translateY(-3px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 1rem 0;
        margin-top: 2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .newsletter h2 {
        font-size: 1.6rem;
    }
    
    .newsletter-button {
        position: static;
        width: 100%;
        margin-top: 1rem;
        border-radius: 50px;
    }
    
    .newsletter-input {
        text-align: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(10, 59, 140, 0.8), rgba(0, 143, 0, 0.8)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
}

.breadcrumb-item, .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

section.main {
    padding: 6rem 0;
}