  /* Hero Section Style */
        body {
            font-family: 'Whitney', Georgia, 'Times New Roman', Times, serif;
            padding-top: 80px; /* Account for fixed navbar */
        }

        .owl-theme .owl-nav {
            text-align: end !important;
        }
        
        .footer{
            justify-content: center;
            display: flex;
        }
        /* Performance optimizations */
        * {
            box-sizing: border-box;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* Optimize animations for performance */
        .timeline-item {
            will-change: transform, opacity;
        }
        
        .hero {
            will-change: transform;
        }

        /* Typography Hierarchy for SEO and Consistency */
        h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-align: center;
        }

        h2 {
            font-size: 2rem;
            line-height: 1.3;
            margin-bottom: 0.875rem;
            text-align: center;
        }

        h3 {
            font-size: 1.5rem;
            line-height: 1.4;
            margin-bottom: 0.75rem;
            text-align: center;
        }

        h4 {
            font-size: 1.25rem;
            line-height: 1.4;
            margin-bottom: 0.625rem;
        }

        h5 {
            font-size: 1.125rem;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            text-align: justify;
        }

        /* Section Headings */
        .section-heading {
            font-size: 2.25rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
        }

        /* Content Alignment */
        .content-section {
            text-align: center;
        }

        .content-section p {
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero {
            height: 100vh;
            background-image: url('../images/background.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            margin-top: -80px; /* Adjust for fixed navbar */
        }

        .hero-nutrition{
            background: #a37e53;
            background: linear-gradient(0deg,rgba(163, 126, 83, 1) 0%, rgba(232, 206, 183, 1) 100%);
            height: 12rem;
            margin-top: -80px;
            justify-content: center;
            align-items: center;
            display: flex;
           }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            line-height: 1.5;
            margin-bottom: 2rem;
            text-align: center;
        }


        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 20px;
        }

        /* Sticky Transparent Header */
        .mainheader {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: transparent !important;
            box-shadow: none;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 15px 0;
        }

        /* Sticky Navbar Styles (when scrolled) */
        .mainheader.sticky {
            background: rgba(63, 41, 27, 0.95) !important;
            padding: 8px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        /* Logo switching for sticky state */
        .mainheader .main-logo {
            display: block;
        }
        
        .mainheader .sticky-logo {
            display: none;
        }

        .mainheader.sticky .main-logo {
            display: none;
        }
        
        .mainheader.sticky .sticky-logo {
            display: block;
        }

        .mobile-menu-sec {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: transparent;
            padding: 10px 0;
            z-index: 1030;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .mobile-menu-sec .row {
            align-items: center;
            justify-content: space-between;
        }
        
        .mobile-menu-sec .col-6:first-child {
            text-align: left;
        }
        
        .mobile-menu-sec .col-6:last-child {
            text-align: right;
            padding-right: 15px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        /* Mobile navbar sticky state */
        .mobile-menu-sec.sticky {
            background: rgba(63, 41, 27, 0.95) !important;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 8px 0;
            z-index: 1030 !important;
        }

        .mobile-logo {
            max-height: 60px;
            width: auto;
        }

        .mobile-menu-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            margin-left: auto;
            margin-right: 0;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            color: white;
        }

        /* Mobile navbar improvements */
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }

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

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Login button styling */
        .login-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            color: white;
        }

        .navbar.navbar-light .navbar-nav .nav-link {
            color: white;
        }

        .navbar.navbar-light .navbar-nav .nav-link:hover {
            color: #f8f9fa;
        }

        .navbar li {
            padding: 2px 10px;
            font-size: 16px;
        }

        .mobile-logo {
            position: relative;
            display: none;
        }

        .login-btn {
            color: white;
            border-color: white;
            background-color: #3f291bdb;
        }

        .login-btn:hover {
            color: #333;
            background-color: white;
        }

        /* Navigation Items */
        .navbar-nav {
            display: flex;
        }

        .p-8 {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        .embed-responsive {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
        }

        .embed-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .barista .mb-4 {
            margin-bottom: 2.5rem !important;
        }

                    .barista li {
                text-align: left;
            }

        .barista .fa-check-square {
            margin-right: 20px;
        }

        ul {
            list-style-type: none;
            padding-left: 0;
        }

        .barista li {
            padding-left: 25px;
            font-size: 1.125rem;
            position: relative;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .barista .fa-check-square {
            color: #772b0070;
        }

        .offcanvas-header img{
            max-width: 50%;
        }
        


        .table td,
        .table th {
            padding: 1rem;
            width: 20% !important;
            font-size: 1rem;
            line-height: 1.5;
            text-align: center;
            vertical-align: middle;
            word-wrap: break-word;
        }

        .table .table_th {
            background-color: #755445 !important;
            color: white;
        }

        .table .name {
            background-color: #aa8b7c4d !important;
            color: rgb(0, 0, 0);
        }

        .table td {
            background-color: #ffffffb0 !important;
            color: rgb(0, 0, 0);
        }
        
        


        .owl-theme .owl-nav {
            text-align: center;
            -webkit-tap-highlight-color: transparent;
        }
        
        @media (max-width: 768px) {
            .owl-theme .owl-nav {
                text-align: center;
            }
        }

        .owl-theme button {
            background-color: #70320980 !important;
            width: 30px;
            height: 40px;
        }

        .owl-theme button span {
            color: white !important;
            font-size: 25px;
        }

        .offcanvas {
            background-color: #a18571f2;
            width: 80% !important;
            z-index: 1040 !important;
        }
        
        .offcanvas-backdrop {
            z-index: 1035 !important;
        }

        .Contact {
            background-image: url(../images/cntbcg.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .Contact .form-email {
            text-decoration: none;
            color: black;
        }

        .why_choose {
            background-image: url('../images/table_backgound.webp');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 50px;
        }

        .form-check-input:disabled {
            border-color: #333;
            background-color: #d7d7d7;
        }

        .form-check-input:checked {
            background-color: #4c4846;
            border-color: #000000;
        }

        .btn-primary {
            background-color: #a18571;
            border-color: #a18571;
        }

        .video-sec {
            background-image: url('../images/video_background.webp');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
        }

        .video-sec .watch{
            color : white;
            font-weight : 500;
            text-shadow :  5px 6px 2px black;
        }
        
        .video-sec .py-8{
            padding-left : 10% !important;
            padding-right : 10% !important;
        }
        
        @media (max-width: 768px) {
            .video-sec .py-8{
                padding-left : 5% !important;
                padding-right : 5% !important;
                text-align: center;
            }
            
            .video-sec .watch {
                text-align: center;
            }
        }

        /* Enhanced Timeline Styles */
        .timeline {
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #854305 0%, #b97002 50%, #facc00 100%);
            transform: translateX(-50%);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 60px;
            position: relative;
            width: 100%;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd) {
            justify-content: flex-end;
            padding-right: calc(50% + 40px);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            text-align: right;
            transform-origin: right center;
        }

        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 20px;
            width: 0;
            height: 0;
            border: 15px solid transparent;
            border-left-color: white;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-left: calc(50% + 40px);
        }

        .timeline-item:nth-child(even) .timeline-content {
            text-align: left;
            transform-origin: left center;
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            left: -15px;
            top: 20px;
            width: 0;
            height: 0;
            border: 15px solid transparent;
            border-right-color: white;
        }

        .timeline-content {
            background: white;
            border-radius: 15px;
            padding: 30px;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            position: relative;
            transition: all 0.1s ease;
            border: 2px solid transparent;
            background-clip: padding-box;
        }

        .timeline-content:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: #ff3d022c;
        }

        .timeline-content h3 {
            color: #896844;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            margin-top: 1rem;
            text-align: center;
        }

        .timeline-content h5 {
            color: #896844;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            margin-top: 1rem;
            text-align: center;
        }

        .timeline-content p {
            color: #666;
            line-height: 1.6;
            margin: 0 0 1rem 0;
            font-size: 1rem;
            text-align: center;
        }

        .timeline-circle {
            position: absolute;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #68320f 0%, #bd673f 100%);
            border: 4px solid white;
            border-radius: 50%;
            left: 50%;
            top: 25px;
            transform: translateX(-50%);
            z-index: 10;
            box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.1);
            transition: all 0.4s ease;
        }

        .timeline-item.animate .timeline-circle {
            transform: translateX(-50%) scale(1.2);
            box-shadow: 0 0 0 12px rgba(102, 126, 234, 0.2);
        }

        .timeline-item:nth-child(1) .timeline-circle,
        .timeline-item:nth-child(2) .timeline-circle,
        .timeline-item:nth-child(3) .timeline-circle,
        .timeline-item:nth-child(4) .timeline-circle,
        .timeline-item:nth-child(5) .timeline-circle,
        .timeline-item:nth-child(6) .timeline-circle {
            background: linear-gradient(135deg, #683709 0%, #a73810 100%);
        }

        .footer{
            background-color: #a18571;
        }


        @media (max-width:1360px) {
            .navbar li {
                padding: 2px 5px;
                font-size: 15px;
            }
        }

        @media (max-width:1200px) {
            .navbar li {
                padding: 2px 5px;
                font-size: 12px;
            }

            .mainheader {
                display: block;
            }
        }

        @media (max-width: 992px) {
            .mainheader {
                display: none !important;
            }
            
            .mobile-menu-sec {
                display: block !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                z-index: 1000 !important;
            }
            
            .mobile-menu-sec .col-6:last-child {
                text-align: right;
                padding-right: 20px;
                display: flex;
                justify-content: flex-end;
            }
            
            .mobile-menu-btn {
                margin-left: auto;
                margin-right: 0;
            }

            .mobile-logo {
                position: relative;
                display: block;
            }
        }

        @media (max-width:992px) {
            .hero {
                margin-top: -60px; /* Adjust for mobile navbar */
            }
            
        .hero-nutrition{
          
            height: 16vh;
            margin-top: -80px;
        
           }

            
            body {
                padding-top: 60px; /* Account for mobile navbar */
            }
        }

        @media (max-width: 768px) {
            .why_choose {
             padding : 0px;
            }

            .owl-theme .owl-nav {
                text-align: center !important;
            }
            
            /* Mobile navbar positioning */
            .mobile-menu-sec .col-6:last-child {
                text-align: right;
                padding-right: 15px;
                display: flex;
                justify-content: flex-end;
            }
            
            .mobile-menu-btn {
                margin-left: auto;
                margin-right: 0;
            }
            
            /* Mobile Typography - Centered */
            h1 {
                font-size: 2rem;
                text-align: center;
            }
            
            h2 {
                font-size: 1.75rem;
                text-align: center;
            }
            
            h3 {
                font-size: 1.375rem;
                text-align: center;
            }
            
            .hero h1 {
                margin-top: 20%;
                font-size: 2.5rem;
                margin-bottom: 7%;
                text-align: center;
            }

            .hero p {
                font-size: 1.125rem;
                text-align: center;
            }

            .hero .btn-light {
                margin-top: 10%;
                display: block;
                margin-left: auto;
                margin-right: auto;
            }
            
            .section-heading {
                font-size: 1.875rem;
                text-align: center;
            }

            .table .name,
            .table .table_th {
                font-size: 0.875rem;
            }
            
            .table td {
                font-size: 0.875rem;
            }
            
            /* Make table horizontally scrollable on mobile */
            .table-responsive {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                text-align: center;
            }
            
            .table {
                min-width: 600px;
                margin: 0 auto;
            }
            
            /* Center table content */
            .table td,
            .table th {
                text-align: center;
            }
            
            /* Mobile Image Responsiveness - Centered */
            .owl-carousel .item img {
                max-width: 100%;
                height: auto;
                display: block;
                margin: 0 auto;
            }
            
            .timeline-content img {
                max-width: 100%;
                height: auto;
                display: block;
                margin: 0 auto;
            }
            
            .barista img {
                max-width: 100%;
                height: auto;
                display: block;
                margin: 0 auto;
            }
            
            /* Center all content sections */
            .container {
                text-align: center;
            }
            
            .row {
                justify-content: center;
            }
            
            .col-md-6 {
                text-align: center;
            }
            
            /* Keep barista section left-aligned */
            .barista .col-md-6 {
                text-align: left;
            }
            
            /* Mobile Container Adjustments */
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            /* Mobile Video Responsiveness */
            .embed-responsive {
                padding-bottom: 56.25%;
            }
            
            .embed-responsive iframe {
                width: 100%;
                height: 100%;
            }
            
            .why_choose {
                height: 70vh;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding-left: 12%;
                padding-right: 4%;
            }

            .timeline-content {
                background: white;
                border-radius: 15px;
                padding: 15px;
                width: 100%;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
                position: relative;
                transition: all 0.4s ease;
                border: 2px solid transparent;
                background-clip: padding-box;
                text-align: center;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                text-align: center;
                max-width: 100%;
            }

            .timeline-item:nth-child(odd) .timeline-content::after {
                display: none;
            }

            .timeline-item:nth-child(even) .timeline-content::after {
                left: -15px;
                border-right-color: white;
                border-left-color: transparent;
            }

            .timeline-circle {
                left: 30px;
                transform: translateX(-50%);
            }

            .timeline-item.animate .timeline-circle {
                transform: translateX(-100%) scale(1.1);
            }

            .mt-5{
              margin-top: 10px !important;
            }

            .mb-5{
                margin-bottom: 10px !important;
            }

            button.btn.btn-primary.mobile-menu-btn {
                padding: 8px 12px;
                margin: 0;
                margin-right: 11%;
            }
        }
        
        @media (max-width: 600px) { 
            .hero-nutrition
             {      height: 14vh;
                    margin-top: -80px;
                }
            
        }

        /* Extra Small Mobile Devices */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.3rem;
                line-height: 1.2;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            h1 {
                font-size: 1.75rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            h3 {
                font-size: 1.25rem;
            }
            
            .container {
                padding-left: 10px;
                padding-right: 10px;
            }
            
            .owl-carousel .item img {
                width: 100%;
                max-width: 280px;
            }
            
            .table {
                font-size: 0.8rem;
            }
            
            .table .name,
            .table .table_th,
            .table td {
                font-size: 0.75rem;
                padding: 0.5rem;
            }
            
            /* Contact form mobile improvements - Centered */
            .Contact .row {
                margin: 0;
                justify-content: center;
            }
            
            .Contact .col-md-6 {
                margin-bottom: 2rem;
                text-align: center;
            }
            
            .Contact img {
                max-width: 100%;
                height: auto;
                display: block;
                margin: 0 auto;
            }
            
            .Contact form {
                text-align: center;
            }
            
            .Contact .form-label {
                text-align: center;
                display: block;
            }
        }
        
        /* Mobile Landscape */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                height: 100vh;
                min-height: 500px;
            }

            .hero-nutrition{
          
                height: 13vh;
                margin-top: -80px;
            
               }
            
            .hero h1 {
                font-size: 2.25rem;
                margin-top: 10%;
            }
            
            .hero p {
                font-size: 1.125rem;
            }
        }
        
        /* Additional Mobile Improvements - Centered */
        @media (max-width: 576px) {
            .container {
                padding-left: 10px;
                padding-right: 10px;
                text-align: center;
            }
            
            .hero-content {
                padding: 15px;
                text-align: center;
            }
            
            .btn {
                font-size: 0.9rem;
                padding: 0.5rem 1rem;
                display: block;
                margin: 0 auto;
            }
            
            .timeline-content {
                padding: 15px;
                text-align: center;
            }
            
            .timeline-content h3 {
                font-size: 1.25rem;
                text-align: center;
            }
            
            .timeline-content p {
                font-size: 0.9rem;
                text-align: center;
            }
            
            /* Center all text content */
            p {
                text-align: center;
            }
            
            /* Center form elements */
            .form-control {
                text-align: center;
            }
            
            /* Center lists except barista section */
            ul {
                text-align: center;
            }
            
            li {
                text-align: center;
            }
            
            /* Keep barista list left-aligned */
            .barista ul {
                text-align: left;
            }
            
            .barista li {
                text-align: left;
            }
            .hero h1{
                font-size: 48px !important;
            }
        }
        
        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .btn {
                min-height: 44px;
                min-width: 44px;
            }
            
            .navbar-toggler {
                min-height: 44px;
                min-width: 44px;
            }
            
            .owl-theme button {
                min-height: 44px;
                min-width: 44px;
            }
        }

        /* Nutrition Section Styles */
        #nutrition {
            background: linear-gradient(135deg, #f2e4dc 0%, #e9ecef 100%);
            border-radius: 20px;
            margin-top: 20px;
            margin-bottom: 20px;
            padding-top: 20px;
            padding-bottom: 20px;
           
        }

       .btn-nutrition {
        background-color: #a48573;
       }

       .btn-nutrition:hover {
        background-color: #b1a197;
       }

     