:root {
            --primary: #1A1A1A;
            --secondary: #B8860B;
            --light: #F9F9F9;
            --dark: #121212;
            --gray: #777777;
            --white: #FFFFFF;
            --off-white: #F5F5F5;
            --overlay: rgba(0, 0, 0, 0.7);
        }
        
        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--light);
            font-size: 20px;
            text-decoration: none;
            transition: background 0.3s, color 0.3s, opacity 0.3s;
        }
        
        .icon-circle i {
            opacity: 1;
        }
        body {
            color: var(--dark);
            background-color: var(--white);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .logo{
            height:40px;   
        }
        pre {
            line-height: 1.8;
            overflow-x: auto; /* Horizontal scrolling for long content */
            white-space: pre-wrap; /* Wrap text while preserving formatting */
            font-size: 18px; /* Comfortable font size */
            margin-bottom: 20px; /* Spacing from other elements */
        } 
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
        }
        .custom-icon{
            font-size:40px;
            padding:15px;
            background: rgba(184, 134, 11, 0.1);
            border-radius:8px;
            color:var(--secondary);
        }

        .section-padding {
            padding: 120px 0;
        }
        
        .section-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            color: var(--primary);
            line-height: 1.2;
        }
        
        .section-subtitle {
            font-size: 1rem;
            font-weight: 500;
            color: var(--secondary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            display: inline-block;
            position: relative;
        }
        
        .section-subtitle::before,
        .section-subtitle::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 1px;
            background-color: var(--secondary);
        }
        
        .section-subtitle::before {
            left: -40px;
        }
        
        .section-subtitle::after {
            right: -40px;
        }
        
        /* Buttons */
        .btn-custom {
            background-color: var(--secondary);
            color: var(--white);
            border: none;
            padding: 15px 35px;
            font-weight: 500;
            border-radius: 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--primary);
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .btn-custom:hover::before {
            width: 100%;
        }
        
        .btn-custom:hover {
            color: var(--white);
        }
        
        .btn-outline-custom {
            background-color: transparent;
            color: var(--white);
            border: 1px solid var(--white);
            padding: 15px 35px;
            font-weight: 500;
            border-radius: 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-outline-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--white);
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .btn-outline-custom:hover::before {
            width: 100%;
        }
        
        .btn-outline-custom:hover {
            color: var(--primary);
        }
        

        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 100vh;
            min-height: 600px;
            position: relative;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
            z-index: 1;
        }
        
        .carousel-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            animation: zoomOut 10s forwards;
            transform: scale(1.1);
        }
        
        @keyframes zoomOut {
            0% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .carousel-caption {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 10%;
            right: 10%;
            text-align: center;
            z-index: 2;
        }
        
        .carousel-subtitle {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--secondary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 5px;
            opacity: 0;
            animation: fadeInUp 0.5s forwards;
            animation-delay: 0.3s;
        }
        
        .carousel-title {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 0.5s forwards;
            animation-delay: 0.6s;
            line-height: 1.2;
        }
        
        .carousel-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 0.5s forwards;
            animation-delay: 0.9s;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .carousel-buttons {
            opacity: 0;
            animation: fadeInUp 0.5s forwards;
            animation-delay: 1.2s;
        }
        
        .carousel-indicators {
            z-index: 3;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 5px;
        }
        
        .carousel-indicators button.active {
            background-color: var(--secondary);
            transform: scale(1.2);
        }
        
        .carousel-control-prev, .carousel-control-next {
            z-index: 3;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
        }
        
        .carousel-control-prev {
            left: 30px;
        }
        
        .carousel-control-next {
            right: 30px;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
        }
        
        /* About Section */
        .about-section {
            background-color: var(--white);
            position: relative;
        }
        
        .about-img-container {
            position: relative;
            padding-right: 30px;
            padding-bottom: 30px;
        }
        
        .about-img {
            position: relative;
            overflow: hidden;
        }
        
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-img-container::after {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            border: 5px solid var(--secondary);
            bottom: 0;
            right: 0;
            z-index: -1;
        }
        
        .about-content {
            padding: 30px 0;
        }
        
        .about-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            transition: all 0.3s ease;
            background-color: var(--white);
        }
        
        .about-feature:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transform: translateY(-5px);
        }
        
        .about-feature-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            text-align: center;
            background-color: var(--off-white);
            color: var(--secondary);
            font-size: 1.8rem;
            margin-right: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .about-feature:hover .about-feature-icon {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .about-feature-content h5 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        /* Menu Section */
        .menu-section {
            background-color: var(--off-white);
            position: relative;
        }
        
        .menu-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }
        
        .menu-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .menu-tab {
            padding: 12px 30px;
            margin: 5px;
            background-color: var(--white);
            color: var(--primary);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border: none;
        }
        
        .menu-tab.active, .menu-tab:hover {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .menu-card {
            background-color: var(--white);
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .menu-img {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .menu-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .menu-card:hover .menu-img img {
            transform: scale(1.1);
        }
        
        .menu-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--secondary);
            color: var(--white);
            padding: 5px 15px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .menu-info {
            padding: 30px;
        }
        
        .menu-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .menu-price {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .menu-desc {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        /* Chefs Section */
        .chefs-section {
            background-color: var(--white);
        }
        
        .chef-card {
            position: relative;
            margin-bottom: 30px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .chef-img {
            position: relative;
            overflow: hidden;
            height: 450px;
        }
        
        .chef-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .chef-card:hover .chef-img img {
            transform: scale(1.05);
        }
        
        .chef-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .chef-card:hover .chef-info {
            background: linear-gradient(to top, rgba(184, 134, 11, 0.9), rgba(184, 134, 11, 0.7), rgba(0, 0, 0, 0));
        }
        
        .chef-name {
            font-size: 1.8rem;
            margin-bottom: 5px;
            color: var(--white);
        }
        
        .chef-title {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .chef-card:hover .chef-title {
            color: var(--white);
        }
        
        .chef-social {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .chef-social a {
            display: inline-block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .chef-social a:hover {
            background-color: var(--white);
            color: var(--secondary);
        }
        
        /* Testimonials Section */
        .testimonials-section {
            background-color: var(--primary);
            color: var(--white);
            position: relative;
        }
        
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .testimonials-section .section-title {
            color: var(--white);
        }
        
        .testimonials-section .section-subtitle {
            color: var(--secondary);
        }
        
        .testimonial-card {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 40px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
        }
        
        .testimonial-card::before {
            content: '\201C';
            font-family: Georgia, serif;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: var(--secondary);
            opacity: 0.3;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid var(--secondary);
        }
        
        .author-info h5 {
            margin-bottom: 5px;
            color: var(--white);
            font-size: 1.2rem;
        }
        
        .author-info .stars {
            color: var(--secondary);
        }
        
        /* Gallery Section */
        .gallery-section {
            background-color: var(--white);
            position: relative;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 300px;
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            grid-column: span 1;
            grid-row: span 1;
        }
        
        .gallery-item:nth-child(1),
        .gallery-item:nth-child(4) {
            grid-column: span 2;
        }
        
        .gallery-item:nth-child(3),
        .gallery-item:nth-child(6) {
            grid-row: span 2;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(184, 134, 11, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .gallery-icon {
            color: var(--white);
            font-size: 2.5rem;
            transform: scale(0);
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-item:hover .gallery-icon {
            transform: scale(1);
        }
        
        /* Services Section */
        .services-section {
            background-color: var(--off-white);
            position: relative;
        }
        
        .service-card {
            background-color: var(--white);
            text-align: center;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--secondary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .service-card img {
            display: block;
            width: 100%;
            height:40vh;
            object-fit:cover;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            margin: 0; /* Remove any default image spacing */
        }
        .service-icon {
            width: 90px;
            height: 90px;
            line-height: 90px;
            text-align: center;
            background-color: var(--off-white);
            color: var(--secondary);
            font-size: 2.5rem;
            margin: 0 auto 25px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background-color: var(--secondary);
            color: var(--white);
            transform: rotateY(360deg);
        }
        
        .service-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* Contact Section */
        .contact-section {
            background-color: var(--white);
            position: relative;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            transition: all 0.3s ease;
            background-color: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            background-color: var(--off-white);
            color: var(--secondary);
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .contact-content h5 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .contact-form {
            background-color: var(--white);
            padding: 50px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--secondary);
            z-index: -1;
        }
        
        .form-control {
            height: 55px;
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding: 10px 20px;
            background-color: transparent;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            box-shadow: none;
            border-color: var(--secondary);
        }
        
        textarea.form-control {
            height: 120px;
            resize: none;
        }
        
        /* Footer */
        .footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 100px 0 20px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }
        
        .footer-content {
            position: relative;
            z-index: 1;
        }
        
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--secondary);
        }
        
        .footer-text {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
        }
        
        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--white);
            position: relative;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links a::before {
            
            font-family: 'Bootstrap Icons';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary);
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 20px;
        }
        
        .social-links {
            margin-top: 30px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            color: var(--white);
            transform: translateY(-5px);
        }
        
        .newsletter-form {
            position: relative;
        }
        
        .newsletter-form .form-control {
            height: 55px;
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--white);
            padding: 10px 20px;
            padding-right: 50px;
        }
        
        .newsletter-form .btn {
            position: absolute;
            top: 0;
            right: 0;
            height: 55px;
            width: 55px;
            background-color: var(--secondary);
            color: var(--white);
            border: none;
            font-size: 1.2rem;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 70px;
            
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            z-index: 1;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 1199px) {
            .section-title {
                font-size: 3rem;
            }
            
            .carousel-title {
                font-size: 4rem;
            }
            
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-item:nth-child(1),
            .gallery-item:nth-child(4) {
                grid-column: span 1;
            }
            
            .gallery-item:nth-child(3),
            .gallery-item:nth-child(6) {
                grid-row: span 1;
            }
        }
        
        @media (max-width: 991px) {
            .section-padding {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .carousel-title {
                font-size: 3.5rem;
            }
            
            .about-img-container::after {
                display: none;
            }
            
            .contact-form::before {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .section-padding {
                padding-top: 120px;
                padding-bottom: 10px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .carousel-title {
                font-size: 2.8rem;
            }
            
            .carousel-description {
                font-size: 1rem;
            }
            
            .gallery-container {
                grid-template-columns: 1fr;
            }
            
            .navbar-collapse {
                background-color: var(--primary);
                padding: 20px;
                margin-top: 15px;
            }
            
            .navbar-collapse .nav-link {
                color: var(--white) !important;
            }
            
            .navbar-collapse .nav-link:hover,
            .navbar-collapse .nav-link.active {
                color: var(--secondary) !important;
            }
            
            .contact-form {
                padding: 30px;
                margin-top: 30px;
            }
        }
        
        img{
            object-fit:cover;
        }
        
        textarea{
            resize:none;
        }
        
        .navbar .dropdown-toggle::after{
            display: none !important;
        }
        
        /* Video Banner Styles */
		.video-banner {
			position: relative;
			height: 100vh;
			overflow: hidden;
		}

		.video-wrapper {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

		.video-wrapper video {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.banner-content {
			position: relative;
			z-index: 1;
			height: 100%;
			display: flex;
			align-items: center;
			text-align: center;
			background: rgba(0, 0, 0, 0.5);
		}
		
		/* Navbar Styles */
		.navbar {
			transition: all 0.3s ease;
			padding: 1.5rem 0;
		}

		.navbar.scrolled {
			background: rgba(0, 0, 0, 0.9);
			padding: 1rem 0;
		}

		.nav-link {
			color: white !important;
			font-weight: 500;
			padding: 0.5rem 1.5rem !important;
			transition: all 0.3s ease;
		}

		.nav-link:hover {
			opacity: 0.8;
		}
		
		@media (max-width: 768px) {
			.navbar {
				background: rgba(0, 0, 0, 0.9);
				padding: 1rem 0;
			}
		}
		

   
    /* Fixed Testimonial Button */
    /* Modal styling */
    .testimonial-modal-header {
        background-color: #0d6efd;
        color: white;
        border-radius: 6px 6px 0 0;
    }
   
    .testimonial-modal-title {
        font-weight: 600;
        letter-spacing: 0.5px;
    }
   
    .testimonial-modal-content {
        border: none;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
   
    .testimonial-modal-body {
        padding: 25px;
    }
   
    .testimonial-modal-footer {
        border-top: 1px solid #f0f0f0;
        padding: 15px 25px;
    }
   
    .testimonial-modal-form-label {
        font-weight: 500;
        margin-bottom: 8px;
        color: #444;
    }
   
    .testimonial-modal-form-control {
        border: 1px solid #e0e0e0;
        padding: 10px 15px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
   
    .testimonial-modal-form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    }
   
    .testimonial-modal-submit-btn {
        padding: 10px 24px;
        font-weight: 500;
        letter-spacing: 0.3px;
    }
   
    /* Star rating styling */
    .testimonial-modal-star-rating {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
   
    .testimonial-modal-star-rating input {
        display: none;
    }
   
    .testimonial-modal-star-rating label {
        cursor: pointer;
        font-size: 25px;
        color: #ddd;
        padding: 0 2px;
    }
   
    .testimonial-modal-star-rating label:hover,
    .testimonial-modal-star-rating label:hover ~ label,
    .testimonial-modal-star-rating input:checked ~ label {
        color: #ffc107;
    }
   
    /* Modal dialog centering */
    .testimonial-modal-dialog {
        display: flex;
        align-items: center;
        min-height: calc(100% - 1rem);
    }
   
    @media (min-width: 576px) {
        .testimonial-modal-dialog {
            max-width: 500px;
            margin: 1.75rem auto;
        }
    }
    .otp-modal-header {
        background-color: #0d6efd;
        color: white;
        border-radius: 6px 6px 0 0;
        padding: 16px 24px;
    }
   
    .otp-modal-title {
        font-weight: 600;
        letter-spacing: 0.5px;
        font-size: 1.25rem;
    }
   
    .otp-modal-content {
        border: none;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
   
    .otp-modal-body {
        padding: 30px;
    }
   
    .otp-modal-footer {
        border-top: 1px solid #f0f0f0;
        padding: 16px 24px;
        background-color: #f8f9fa;
        border-radius: 0 0 8px 8px;
    }
   
    .otp-modal-form-label {
        font-weight: 500;
        margin-bottom: 10px;
        color: #444;
    }
   
    .otp-modal-form-control {
        border: 1px solid #e0e0e0;
        padding: 12px 15px;
        border-radius: 6px;
        transition: all 0.3s ease;
        height: 48px;
    }
   
    .otp-modal-form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    }
   
    .otp-modal-submit-btn {
        padding: 12px 24px;
        font-weight: 500;
        letter-spacing: 0.3px;
        height: 48px;
    }
   
    .otp-input-group {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 25px 0;
    }
   
    .otp-input {
        width: 50px;
        height: 60px;
        text-align: center;
        font-size: 1.5rem;
        font-weight: 600;
        border: 2px solid #dee2e6;
        border-radius: 8px;
        background-color: #fff;
        transition: all 0.2s;
    }
   
    .otp-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
        outline: none;
    }
   
    .otp-description {
        text-align: center;
        color: #6c757d;
        margin-bottom: 20px;
    }
   
    .otp-email {
        font-weight: 600;
        color: #212529;
    }
   
    .otp-timer {
        text-align: center;
        margin-top: 15px;
        font-size: 0.9rem;
        color: #6c757d;
    }
   
    .otp-resend-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 25px;
    }
   
    .otp-resend-btn {
        background-color: transparent;
        border: 1px solid #0d6efd;
        color: #0d6efd;
        font-weight: 500;
        padding: 8px 20px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }
   
    .otp-resend-btn:hover {
        background-color: #0d6efd;
        color: white;
    }
   
    .otp-icon {
        font-size: 3rem;
        color: #0d6efd;
        margin-bottom: 15px;
    }
   
    .otp-header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
   
    .otp-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #212529;
    }
   
    .resend-notification {
        background-color: #d1e7dd;
        color: #0f5132;
        border-radius: 4px;
        padding: 12px 15px;
        margin-top: 15px;
        margin-bottom: 5px;
        display: none;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        animation: fadeIn 0.5s ease-in-out;
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
   
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
   
    .spinner-border-sm {
        width: 1rem;
        height: 1rem;
        border-width: 0.15em;
    }
    .testimonial-site-review-btn {
        position: fixed;
        bottom: 25px;
        left: 25px;
        background-color: #0d6efd;
        color: #fff;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        z-index: 9999; /* High z-index to keep it on top */
        overflow: hidden;
        white-space: nowrap;
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 0 0 0 15px; /* Padding adjusted to center icon */
    }
   
    /* Hover effect */
    .testimonial-site-review-btn:hover {
        width: 170px;
        border-radius: 30px;
        background-color: #0b5ed7;
        box-shadow: 0 6px 16px rgba(13, 110, 253, 0.5);
    }
   
    /* Icon styling */
    .testimonial-site-review-btn i {
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 24px; /* Ensure icon has minimum width */
    }
   
    /* Hidden text (visible on hover) */
    .testimonial-site-review-text {
        font-size: 15px;
        font-weight: 500;
        opacity: 0;
        margin-left: 10px; /* Space between icon and text */
        transition: all 0.3s ease;
        letter-spacing: 0.3px;
    }
   
    .testimonial-site-review-btn:hover .testimonial-site-review-text {
        opacity: 1;
    }
   
    /* Optional: Add a pulse animation to draw attention */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
        }
    }
   
    .testimonial-site-review-btn {
        animation: pulse 2s infinite;
    }
   
    .testimonial-site-review-btn:hover {
        animation: none;
    }
    @keyframes mouseScroll {
        0% {
            transform: translateY(0);
        }
        30% {
            transform: translateY(15px);
        }
        60% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(0);
        }
    }

/* description section */
.description-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.image-block {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.image-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content-block {
  padding: 4rem 2rem;
}

@media (max-width: 991.98px) {
  .description-section {
    flex-direction: column;
  }

  .image-block {
    position: relative;
    height: auto;
  }

  .image-block img {
    height: auto;
  }
}

.cta{
    background:var(--secondary);
}

.img-fit {
  height: 250px; /* ya jo bhi tum fixed height chaaho */
  object-fit: cover;
}




/* Social Media */


.social-item {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: 10px;
}

.social-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.social-item:hover img {
  transform: scale(1.1);
}

.social-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(184, 134, 11, 0.9), rgba(184, 134, 11, 0.7), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-item:hover .overlay {
  opacity: 1;
}

.social-item .overlay i {
  color: #fff;
  font-size: 30px;
}

/* Parallax Section */
.parallax-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.parallax-section .parallax-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index:10;
}

.parallax-section .parallax-text {
    color: #fff;
    z-index:10;
}

.parallax-section .subtitle {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    display: block;
    margin-bottom: 20px;
    opacity: 0.9;
    z-index:10;
}

.parallax-section .title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    z-index:10;
}

.parallax-section .custom-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    z-index:10;
}

.parallax-section .custom-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-5px);
}

.parallax-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index:1;
}
@media (max-width: 768px) {
    .parallax-section .title {
        font-size: 2.5rem;
    }
    
    .parallax-section .subtitle {
        font-size: 1rem;
    }
    
    .parallax-section .custom-btn {
        padding: 12px 30px;
    }
}

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

.parallax-section .parallax-text {
    animation: float 3s ease-in-out infinite;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary) !important;
  border-top: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
}