  :root {
            --primary-color: #ff6b6b;
            --secondary-color: #333;
            --accent-color: #4ecdc4;
            --light-bg: #f8f9fa;
            --dark-bg: #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Top Bar - Desktop Only */
        .top-bar {
            background: var(--dark-bg);
            color: #fff;
            font-size: 0.85rem;
            padding: 8px 0;
        }

        .top-bar a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--primary-color);
        }

        /* Main Navbar */
        .main-navbar {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 0;
        }

        .navbar-brand {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color) !important;
            letter-spacing: 2px;
            padding: 15px 0;
        }

        .navbar-brand span {
            color: var(--primary-color);
        }

        /* Contact Us Button in Nav */
        /* Contact Us Button in Nav - Smaller Height */
.btn-contact-nav {
    background: var(--primary-color);
    color: #fff !important;
    padding: 8px 20px !important;  /* Reduced from 10px 25px */
    border-radius: 20px;           /* Slightly reduced from 25px */
    margin-left: 15px;
    font-weight: 600;
    font-size: 0.9rem;             /* Added smaller font size */
    line-height: 0.8;              /* Tighter line height */
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-contact-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

/* Mobile adjustment */
@media (max-width: 991px) {
    .btn-contact-nav {
        margin: 10px 20px;
        display: inline-block;
        text-align: center;
        padding: 6px 18px !important;  /* Even smaller on mobile */
        font-size: 0.85rem;
    }
}

        /* Dropdown Styles */
        .navbar-nav .nav-link {
             font-weight: 500;
            padding: 15px 20px !important;
            position: relative;
            transition: all 0.3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #5cab08 !important;
        }

        /* Dropdown Menu */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-radius: 0;
            padding: 0;
            margin-top: 0;
        }

        .dropdown-item {
            padding: 12px 20px;
            color: var(--secondary-color);
            font-size: 0.9rem;
            transition: all 0.3s;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: #5cab08;
            color: #fff;
            padding-left: 25px;
        }

        /* Sub Dropdown */
        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -1px;
            display: none;
        }

        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }

        .dropdown-submenu > a::after {
            content: "\f285";
            font-family: "bootstrap-icons";
            float: right;
            margin-left: 10px;
            font-size: 0.8rem;
        }

        /* Mobile Menu Styles */
        @media (max-width: 991px) {
            .dropdown-submenu .dropdown-menu {
                left: 0;
                margin-top: 0;
                padding-left: 20px;
                box-shadow: none;
                border-left: 2px solid var(--primary-color);
            }

            .dropdown-submenu:hover > .dropdown-menu {
                display: none;
            }

            .dropdown-submenu.show > .dropdown-menu {
                display: block;
            }

            .dropdown-menu {
                border: none;
                box-shadow: none;
                background: #f8f9fa;
            }

            .dropdown-item {
                border-bottom: 1px solid #e0e0e0;
            }

            .btn-contact-nav {
                margin: 10px 20px;
                display: inline-block;
                text-align: center;
            }
        }

        
        /* Main Slider - Bootstrap Carousel */
        .main-slider {
            position: relative;
            background: #000;
        }

        .main-slider .carousel-item {
            height: 600px;
        }

        .main-slider .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        /* Mobile Slider Fix - Prevent image cutting */
        @media (max-width: 767px) {
            .main-slider .carousel-item {
                height: auto;
                min-height: 250px;
                max-height: 400px;
            }

            .main-slider .carousel-item img {
                object-fit: contain;
                width: 100%;
                height: auto;
                max-height: 400px;
            }
        }

        @media (max-width: 480px) {
            .main-slider .carousel-item {
                min-height: 200px;
                max-height: 300px;
            }

            .main-slider .carousel-item img {
                max-height: 300px;
            }
        }

        .main-slider .carousel-indicators {
            bottom: 30px;
        }

        .main-slider .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            border: 2px solid transparent;
            margin: 0 8px;
            transition: all 0.3s;
        }

        .main-slider .carousel-indicators button.active {
            background-color: var(--primary-color);
            width: 30px;
            border-radius: 6px;
            border-color: #fff;
        }

        .main-slider .carousel-control-prev,
        .main-slider .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .main-slider .carousel-control-prev {
            left: 30px;
        }

        .main-slider .carousel-control-next {
            right: 30px;
        }

        .main-slider .carousel-control-prev:hover,
        .main-slider .carousel-control-next:hover {
            background: var(--primary-color);
        }

        .main-slider .carousel-control-prev-icon,
        .main-slider .carousel-control-next-icon {
            width: 20px;
            height: 20px;
            filter: invert(1) grayscale(100);
        }

        .main-slider .carousel-control-prev:hover .carousel-control-prev-icon,
        .main-slider .carousel-control-next:hover .carousel-control-next-icon {
            filter: invert(0);
        }

        @media (max-width: 767px) {
            .main-slider .carousel-control-prev,
            .main-slider .carousel-control-next {
                width: 35px;
                height: 35px;
            }

            .main-slider .carousel-control-prev {
                left: 10px;
            }

            .main-slider .carousel-control-next {
                right: 10px;
            }

            .main-slider .carousel-indicators {
                bottom: 10px;
            }

            .main-slider .carousel-indicators button {
                width: 10px;
                height: 10px;
                margin: 0 4px;
            }

            .main-slider .carousel-indicators button.active {
                width: 25px;
            }
        }

        /* Welcome Section */
        .welcome-section {
             background: #fff;
        }

        .welcome-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .welcome-content h6 {
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .welcome-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            line-height: 1.3;
        }

        .welcome-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .welcome-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .welcome-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .welcome-image:hover img {
            transform: scale(1.05);
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: var(--primary-color);
            color: #fff;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255,107,107,0.3);
        }

        .experience-badge h3 {
            font-size: 2.5rem;
            margin-bottom: 5px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .experience-badge p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Products Section */
        .products-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h6 {
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }

        .product-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            margin-bottom: 30px;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-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: all 0.3s;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-content {
            padding: 25px;
        }

        .product-content h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .product-content p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }

        .read-more:hover {
            color: var(--secondary-color);
        }

        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* Gallery Section */
        .gallery-section {
            padding: 100px 0;
            background: #fff;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,107,107,0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: #fff;
            font-size: 2rem;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
            color: #fff;
        }

        .testimonials-section .section-header h2 {
            color: #fff;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.05);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }

        .testimonial-stars {
            color: #ffc107;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--primary-color);
        }

        .author-info h5 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .author-info span {
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Blog Section */
        .blog-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .blog-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            margin-bottom: 30px;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .blog-image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--primary-color);
            color: #fff;
            padding: 10px 15px;
            border-radius: 5px;
            text-align: center;
        }

        .blog-date h4 {
            font-size: 1.5rem;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .blog-date span {
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-content .category {
            color: var(--primary-color);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }

        .blog-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .blog-content p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: #fff;
        }

        .feature-box {
            text-align: center;
            padding: 30px;
            transition: all 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: #5cab08;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: #5cab08;
            transition: all 0.3s;
        }

        .feature-box:hover .feature-icon {
            background: #5cab08;
            color: #fff;
            transform: rotateY(360deg);
        }

        .feature-box h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #5cab08;
        }

        .feature-box p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 80px 0;
            background: var(--primary-color);
            color: #fff;
        }

        .newsletter-content h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .newsletter-content p {
            opacity: 0.9;
            margin: 0;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            border-radius: 30px;
            outline: none;
        }

        .newsletter-form button {
            padding: 15px 40px;
            background: var(--secondary-color);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: #fff;
            color: var(--primary-color);
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: #fff;
            padding: 80px 0 0;
        }

        .footer-widget h4 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-widget h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
        }

        .footer-widget p {
            color: #aaa;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-links a i {
            margin-right: 10px;
            font-size: 0.8rem;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #aaa;
        }

        .footer-contact li i {
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 60px;
            padding: 25px 0;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 90px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(255,107,107,0.4);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }

        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 10px 0;
        }

        .mobile-nav-item {
            flex: 1;
            text-align: center;
            color: #666;
            text-decoration: none;
            font-size: 0.75rem;
            transition: all 0.3s;
            padding: 5px;
        }

        .mobile-nav-item i {
            font-size: 1.3rem;
            display: block;
            margin-bottom: 5px;
        }

        .mobile-nav-item.active,
        .mobile-nav-item:hover {
            color: var(--primary-color);
        }

        /* Mobile Top Bar */
        .mobile-top-bar {
            display: none;
            background: var(--dark-bg);
            color: #fff;
            padding: 8px 0;
            font-size: 0.8rem;
        }

        .mobile-top-bar a {
            color: #fff;
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .top-bar {
                display: none;
            }

            .mobile-top-bar {
                display: block;
            }

            .desktop-icons {
                display: none !important;
            }

            .welcome-content {
                padding: 20px;
                margin-top: 30px;
            }

            .experience-badge {
                left: 20px;
                bottom: 20px;
            }

            .newsletter-form {
                flex-direction: column;
                margin-top: 30px;
            }

            /* Show mobile bottom nav */
            .mobile-bottom-nav {
                display: flex;
            }

            body {
                padding-bottom: 70px;
            }
        }

        @media (max-width: 767px) {
            .welcome-image img {
                height: 350px;
            }

            .experience-badge {
                left: 10px;
                padding: 20px;
            }

            .experience-badge h3 {
                font-size: 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .testimonial-card {
                margin-bottom: 20px;
            }

            .back-to-top {
                bottom: 80px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
		
		:root {
            --primary-color: #ff6b6b;
            --secondary-color: #333;
            --accent-color: #4ecdc4;
            --light-bg: #f8f9fa;
            --dark-bg: #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Top Bar - Desktop Only */
        .top-bar {
            background: var(--dark-bg);
            color: #fff;
            font-size: 0.85rem;
            padding: 8px 0;
        }

        .top-bar a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--primary-color);
        }

        /* Main Navbar */
        .main-navbar {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 0;
        }

        .navbar-brand {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color) !important;
            letter-spacing: 2px;
            padding: 15px 0;
        }

        .navbar-brand span {
            color: var(--primary-color);
        }

        /* Contact Us Button in Nav - Smaller Height */
        .btn-contact-nav {
            background: #5cab08;
            color: #fff !important;
            padding: 8px 20px !important;
            border-radius: 20px;
            margin-left: 15px;
            font-weight: 600;
            font-size: 0.9rem;
            line-height: 0.8;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
        }

        .btn-contact-nav:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,107,107,0.3);
        }

        /* Dropdown Styles */
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 15px 20px !important;
            position: relative;
            transition: all 0.3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #5cab08;
        }

        /* Dropdown Menu */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-radius: 0;
            padding: 0;
            margin-top: 0;
        }

        .dropdown-item {
            padding: 12px 20px;
            color: var(--secondary-color);
            font-size: 0.9rem;
            transition: all 0.3s;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: #5cab08;
            color: #fff;
            padding-left: 25px;
        }

        /* Sub Dropdown */
        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -1px;
            display: none;
        }

        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }

        .dropdown-submenu > a::after {
            content: "\f285";
            font-family: "bootstrap-icons";
            float: right;
            margin-left: 10px;
            font-size: 0.8rem;
        }

        /* Mobile Menu Styles */
        @media (max-width: 991px) {
            .dropdown-submenu .dropdown-menu {
                left: 0;
                margin-top: 0;
                padding-left: 20px;
                box-shadow: none;
                border-left: 2px solid var(--primary-color);
            }

            .dropdown-submenu:hover > .dropdown-menu {
                display: none;
            }

            .dropdown-submenu.show > .dropdown-menu {
                display: block;
            }

            .dropdown-menu {
                border: none;
                box-shadow: none;
                background: #f8f9fa;
            }

            .dropdown-item {
                border-bottom: 1px solid #e0e0e0;
            }

            .btn-contact-nav {
                margin: 10px 20px;
                display: inline-block;
                text-align: center;
            }
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            height: 300px;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/ghata-banner.webp') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }

        .page-banner h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .page-banner p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .breadcrumb-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255,255,255,0.15);
            padding: 10px 25px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
        }

        .breadcrumb-nav a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .breadcrumb-nav a:hover {
            color: var(--primary-color);
        }

        .breadcrumb-nav span {
            color: #fff;
            margin: 0 10px;
        }

        @media (max-width: 767px) {
            .page-banner {
                height: 300px;
            }

            .page-banner h1 {
                font-size: 2.2rem;
            }

            .page-banner p {
                font-size: 1rem;
            }
        }

        /* About Intro Section */
        .about-intro {
            padding: 100px 0;
            background: #fff;
        }

        .about-intro-content h6 {
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .about-intro-content h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--secondary-color);
            line-height: 1.3;
        }

        .about-intro-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .about-intro-image {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .about-intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
        }

        .stats-box {
            background: var(--primary-color);
            color: #fff;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            position: absolute;
            bottom: -30px;
            left: 30px;
            box-shadow: 0 10px 30px rgba(255,107,107,0.3);
            min-width: 150px;
        }

        .stats-box h3 {
            font-size: 2.5rem;
            margin-bottom: 5px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .stats-box p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.95;
        }

        @media (max-width: 767px) {
            .about-intro {
                padding: 60px 0;
            }

            .about-intro-content h2 {
                font-size: 2rem;
            }

            .stats-box {
                position: relative;
                bottom: 0;
                left: 0;
                margin-top: 20px;
            }
        }

        /* Mission Vision Section */
        .mission-vision {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .mv-card {
            background: #fff;
            padding: 50px 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary-color);
            transition: width 0.3s;
        }

        .mv-card:hover::before {
            width: 100%;
            opacity: 0.05;
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .mv-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,107,107,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: all 0.3s;
        }

        .mv-card:hover .mv-icon {
            background: var(--primary-color);
            color: #fff;
            transform: rotateY(360deg);
        }

        .mv-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .mv-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 0;
        }

        @media (max-width: 767px) {
            .mission-vision {
                padding: 60px 0;
            }

            .mv-card {
                margin-bottom: 30px;
            }
        }

        /* Timeline Section */
        .timeline-section {
            padding: 100px 0;
            background: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h6 {
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            border-radius: 2px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: #fff;
            border: 4px solid var(--primary-color);
            top: 25px;
            border-radius: 50%;
            z-index: 1;
            transition: all 0.3s;
        }

        .timeline-item:hover::after {
            background-color: var(--primary-color);
            transform: scale(1.3);
        }

        .timeline-left {
            left: 0;
        }

        .timeline-right {
            left: 50%;
        }

        .timeline-right::after {
            left: -10px;
        }

        .timeline-content {
            padding: 25px 30px;
            background-color: #fff;
            position: relative;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .timeline-content h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .timeline-content h4 {
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .timeline-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        .timeline-year {
            position: absolute;
            top: 20px;
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .timeline-left .timeline-year {
            right: -100px;
        }

        .timeline-right .timeline-year {
            left: -100px;
        }

        @media screen and (max-width: 767px) {
            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item::before {
                left: 60px;
                border: medium solid white;
                border-width: 10px 10px 10px 0;
                border-color: transparent white transparent transparent;
            }

            .timeline-left::after, .timeline-right::after {
                left: 21px;
            }

            .timeline-right {
                left: 0%;
            }

            .timeline-year {
                position: relative !important;
                top: 0 !important;
                left: 0 !important;
                right: auto !important;
                margin-bottom: 10px;
                display: inline-block;
                background: rgba(255,107,107,0.1);
                padding: 5px 15px;
                border-radius: 20px;
            }
        }

        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .team-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            margin-bottom: 30px;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .team-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-social {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            background: rgba(255,107,107,0.95);
            padding: 15px;
            display: flex;
            justify-content: center;
            gap: 15px;
            transition: all 0.3s;
        }

        .team-card:hover .team-social {
            bottom: 0;
        }

        .team-social a {
            color: #fff;
            font-size: 1.2rem;
            width: 35px;
            height: 35px;
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .team-social a:hover {
            background: #fff;
            color: var(--primary-color);
        }

        .team-info {
            padding: 25px;
            text-align: center;
        }

        .team-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }

        .team-info span {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
        }

        @media (max-width: 767px) {
            .team-section {
                padding: 60px 0;
            }
        }

        /* Why Choose Us */
        .why-choose {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
            color: #fff;
        }

        .why-choose .section-header h2 {
            color: #fff;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .feature-icon-box {
            min-width: 70px;
            height: 70px;
            background: rgba(255,107,107,0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: all 0.3s;
        }

        .feature-item:hover .feature-icon-box {
            background: var(--primary-color);
            color: #fff;
            transform: rotateY(360deg);
        }

        .feature-text h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .feature-text p {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 0;
        }

        @media (max-width: 767px) {
            .why-choose {
                padding: 60px 0;
            }

            .feature-item {
                flex-direction: column;
                text-align: center;
            }

            .feature-icon-box {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: var(--primary-color);
            text-align: center;
            color: #fff;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta {
            background: #fff;
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
            border: 2px solid #fff;
            margin: 0 10px;
        }

        .btn-cta:hover {
            background: transparent;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .btn-cta-outline {
            background: transparent;
            color: #fff;
        }

        .btn-cta-outline:hover {
            background: #fff;
            color: var(--primary-color);
        }

        @media (max-width: 767px) {
            .cta-section {
                padding: 60px 20px;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }

            .btn-cta {
                margin: 5px;
                padding: 12px 30px;
            }
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: #fff;
            padding: 80px 0 0;
        }

        .footer-widget h4 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-widget h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
        }

        .footer-widget p {
            color: #aaa;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-links a i {
            margin-right: 10px;
            font-size: 0.8rem;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #aaa;
        }

        .footer-contact li i {
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 60px;
            padding: 25px 0;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 90px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(255,107,107,0.4);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }

        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 10px 0;
        }

        .mobile-nav-item {
            flex: 1;
            text-align: center;
            color: #666;
            text-decoration: none;
            font-size: 0.75rem;
            transition: all 0.3s;
            padding: 5px;
        }

        .mobile-nav-item i {
            font-size: 1.3rem;
            display: block;
            margin-bottom: 5px;
        }

        .mobile-nav-item.active,
        .mobile-nav-item:hover {
            color: var(--primary-color);
        }

        /* Mobile Top Bar */
        .mobile-top-bar {
            display: none;
            background: var(--dark-bg);
            color: #fff;
            padding: 8px 0;
            font-size: 0.8rem;
        }

        .mobile-top-bar a {
            color: #fff;
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .top-bar {
                display: none;
            }

            .mobile-top-bar {
                display: block;
            }

            .welcome-content {
                padding: 20px;
                margin-top: 30px;
            }

            .newsletter-form {
                flex-direction: column;
                margin-top: 30px;
            }

            /* Show mobile bottom nav */
            .mobile-bottom-nav {
                display: flex;
            }

            body {
                padding-bottom: 70px;
            }
        }
