
        :root {
            --primary: #4267B2;
            --secondary: #f8f9fa;
            --accent: #ff6b6b;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        
        /*================================
        Top Header
        ===================================*/
        
        
       .navbar-brand span{
            line-height: 16px;
            font-size: 23px;
            font-weight: 500;
            margin-left: 5px;
            position: relative;
            top: 6px;
       }
        
        /*================================
        Top Header End
        ===================================*/

        /* Header */
        .main-header {
            padding: 2px 0;
            background: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            margin-bottom: 24px;
        }
        
        .main-header .nav-link{
            text-transform: capitalize;
            color: #16213E;
            font-weight: 500;
            margin-left: 12px;
            margin-right: 12px;
        }
        
        
        .call-btn {
            background: var(--primary);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
        }

        .call-btn:hover {
            background: #1a4ab5;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 91, 215, 0.3);
        }

        /* Hero Section */
        /* Hero Section */
        .hero-section {
            padding: 150px 0 100px;
            position: relative;
            margin-top: 50px;
            overflow: hidden;
            color: #fff;
            /* Light text for better contrast */
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-image: url('https://images.unsplash.com/photo-1605497788044-5a32c7078486?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); */
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        h1{
            color: var(--primary);
        }

        .contact-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1605497788044-5a32c7078486?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-color: #4267B2;
            Primary color with 85% opacity */
            z-index: 2;
            opacity: 0.9;
        }


        .contact-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #4267B2;
            /* Primary color with 85% opacity */
            z-index: 2;
            opacity: 1;
        }

        .container.position-relative {
            position: relative;
            z-index: 3;
        }

        .hero-heading {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #181717;
        }

        .hero-subheading {
            font-size: 1.2rem;

            color: var(--primary);
            margin-bottom: 30px;
        }

        .contact-heading {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #fff;

        }

        .contact-subheading {
            font-size: 1.2rem;

            color: #fff;
            margin-bottom: 30px;
        }

        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, .07) ! important;
            color: #333;
            /* Dark text for form */
        }

        /* Why Choose Us */
        .why-choose {
            padding: 30px 0;
            background: #f8f9fa;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            color: var(--primary);
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary);
        }

        .image-card {
            transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
            padding: 12px;
            background: #fff;
            border-radius: 5px;
            
        }
        
        .image-card p{
            margin-bottom: 0px;
            padding: 8px 0px 2px;
            font-size: 17px;
        }
        
        .image-card h4{
            line-height: 22px;
            margin: 8px 0 10px;
            font-size: 20px;
            padding: 0 8px
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        
        /* Craftsmanship Section */
        .craft-section {
            padding: 40px 0;
            background: #fff;
            /* border: 2px solid red; */
        }

        .craft-img {
            border-radius: 10px;
            transition: all 0.3s;
        }

        .craft-img:hover {
            transform: scale(1.05);
        }

        .card-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .video-container {
            border-radius: 12px;
            overflow: hidden;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            -webkit-transition: background .3s, border .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
            transition: background .3s, border .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
            -o-transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
            transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
            transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
        }
        
        .video-container p {
            position: relative;
            height: 0;
            padding-bottom: 56.25%;
            margin: 0;
        }
        
        .video-container iframe {
            max-width: 100%;
            width: 100%;
            margin: 0;
            line-height: 1;
            border: none;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border: 0;
            background-color: #000;
        }

        /* Team Section */
        .team-section {
            padding: 40px 0;
        }

        .team-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-img {
            height: 300px;
            object-fit: cover;
        }

        /* Sticky Buttons */
        .sticky-buttonBook {
            position: fixed;
            /* border: 2px solid red; */
            bottom: 40%;
            right: -63px;
            z-index: 99;
            display: flex;
            flex-direction: column;
            /* gap: 15px; */
            transform: rotate(270deg);
            /* Add this line for 90-degree rotation */
            transform-origin: center;
            /* Ensures it rotates around its center */
        }






        .sticky-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .sticky-buttons1 {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 99;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .sticky-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }

        .book-btn {
            /* width: 60px;
            height: 60px; */
            /* border-radius: 50%; */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;


        }

        .sticky-btn:hover {
            transform: scale(1.1);
        }

        .call-btn-sticky {
            background: var(--primary);
        }

        .whatsapp-btn {
            background: #25D366;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-heading {
                font-size: 2.2rem;
            }

            .ambassador-img {
                margin-top: 50px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 80px;
            }

            .section-title {
                font-size: 22px;
            }
        }


        .hero-image-wrapper {
            position: relative;
            /* padding: 15px; */
            width: 100%;
            height: 500px;
            /* background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2); */

        }

        .hero-image {
            max-height: 500px;
            width: auto;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
            height: 100%;
        }

        .hero-image:hover {
            transform: scale(1.03);
        }

        .button-group {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .custom-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            gap: 8px;
        }

        /* Primary button hover effects */
        .primary-btn {
            background: var(--primary);
            color: white;
            border: 2px solid var(--primary);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .primary-btn:hover {
            background: var(--primary-dark);
            /* Slightly darker shade */
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            color: var(--primary);
        }

        .primary-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .primary-btn:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Outline button hover effects */
        .outline-btn {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .outline-btn:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .outline-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .outline-btn:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Mobile responsive styles */
        @media (max-width: 576px) {

            /* Hide desktop buttons */
            .button-group:not(.mobile-buttons) {
                display: none !important;
            }

            /* Style mobile buttons */
            .mobile-buttons {
                /* flex-direction: column; */
                gap: 10px;
                width: 100%;
            }

            .mobile-buttons .custom-btn {
                width: 100%;
                padding: 12px;
            }
        }

        @media (min-width: 576px) {

            /* Hide mobile buttons on desktop */
            .mobile-buttons {
                display: none !important;
            }
        }


        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
    
        .image-card:hover {
            transform: translateY(-5px);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 20px;
        }

        .image-overlay h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .image-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .image-grid {
                grid-template-columns: 1fr;
            }
        }
   

             .hero-box {
            padding: 1rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .contact-form {
            background: white;
        }

        /* Better responsive adjustments */
        @media (max-width: 576px) {
            .hero-box {
                padding: 0.75rem 0;
            }

            .row.align-items-stretch>div {
                padding: 0 5px;
            }
        }

        @media (min-width: 992px) {
            .d-md-none {
                display: none !important;
            }
        }