:root {
            --primary: #8B6B61;
            --secondary: #A1887F;
            --accent: #D7CCC8;
            --light: #ffffff;
            --white: #ffffff;
            --black: #333333;
            --dark: #5D4037;
            --gray: #777777;
            --light-gray: #f9f9f9;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Syne', sans-serif !important;
            font-weight: 600;
            line-height: 1.2;
        }
        p,a,li, span, strong{
            font-family: 'Syne', sans-serif !important;
        }
        a{
            text-decoration: none !important;
        }

        /* Sub Header */
        .subheader {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            padding: 10px 46px;
            font-size: 14px;
        }
        .subheader-left, .subheader-right {
            display: flex;
            align-items: center;
        }
        .subheader-left p {
            margin: 0;
            margin-right: 15px;
            font-weight: bold;
            color: var(--light);
        }
        .subheader-left a, .subheader-right a {
            margin-right: 15px;
            text-decoration: none;
            color: var(--light);
        }
        .subheader-left a i, .subheader-right a i {
            margin-right: 5px;
        }
        .subheader-right a:last-child {
            margin-right: 0;
        }

        .subheader-left a:hover, .subheader-right a:hover {
            color: var(--accent);
        }

        @media (max-width: 768px) {
            .subheader {
                display: none;
            }
        }

        /* Header and navigation styles */
        header {
            background: var(--light);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            max-width: 1290px;
            margin: 0 auto;
            padding: 3px 10px;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 45px;
            width: auto;
        }
        
        /* Main navigation */
        .main-nav {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-item {
            position: static;
        }
        
        .nav-link {
            color: var(--dark);
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
            font-size: 0.95rem;
            text-transform: uppercase;
            cursor: pointer;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }

        .services-toggle, .more-toggle {
            background-color: var(--primary);
            color: var(--light);
            cursor: pointer;
        }

        .services-toggle:hover, .more-toggle:hover {
            background-color: var(--dark);
            color: var(--light);
        }
        
        /* Services Panel Styles */
        .services-panel {
            position: fixed;
            top: 0;
            left: -90%;
            width: 90%;
            height: 100vh;
            background: var(--light);
            z-index: 1001;
            transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: hidden;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
            display: flex;
        }

        .services-panel.active {
            left: 0;
        }

        .services-menu-container {
            width: 20%;
            background: linear-gradient(135deg, var(--light) 0%, var(--light-gray) 100%);
            padding: 30px 20px;
            overflow-y: auto;
            border-right: 1px solid #e0e0e0;
        }

        .services-content-container {
            width: 80%;
            padding: 30px;
            overflow-y: auto;
            background: var(--light);
        }

        .services-panel-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
            z-index: 1002;
        }
        
        .services-panel-close:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }
        
        .services-panel-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--dark);
        }
        
        .services-panel-logo img {
            height: 40px;
            width: auto;
            margin-right: 15px;
        }

        .services-menu {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .services-menu-item {
            position: relative;
        }

        .services-menu-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 15px;
            background-color: var(--light-gray);
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
        }

        .services-menu-link i {
            font-size: 14px;
            color: var(--dark);
            transition: var(--transition);
        }

        .services-menu-link:hover, .services-menu-link.active {
            background-color: var(--primary);
            color: var(--light);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .services-menu-link:hover i, .services-menu-link.active i {
            color: var(--light);
            transform: translateX(3px);
        }

        /* Services Content */
        .services-content {
            display: none;
        }

        .services-content.active {
            display: block;
        }

        .services-content-title {
            color: var(--dark);
            font-size: 24px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--dark);
            display: flex;
            align-items: center;
        }

        .services-content-title i {
            margin-right: 10px;
        }

        .services-mega-menu-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .mega-menu-column h4 {
            color: var(--dark);
            font-size: 16px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: flex;
            align-items: center;
        }
        
        .mega-menu-column h4 i {
            margin-right: 8px;
        }
        
        .mega-menu-links {
            list-style: none;
        }
        
        .mega-menu-links li {
            margin-bottom: 10px;
        }
        
        .mega-menu-links a {
            color: var(--gray);
            text-decoration: none;
            display: block;
            padding: 0px 0;
            transition: var(--transition);
            font-size: 14px;
            border-left: 2px solid transparent;
            padding-left: 10px;
        } 

        .mega-menu-links a .fas{
            color: var(--accent);
            margin-right: 3px;
        }
        
        .mega-menu-links a:hover .fas{
            color: var(--primary);
        }
        .mega-menu-links a:hover {
            color: var(--primary);
            padding-left: 15px;
            border-left: 2px solid var(--primary);
        }
        
        /* More Panel Styles */
        .more-panel {
            position: fixed;
            top: 0;
            right: -30%;
            width: 30%;
            height: 100vh;
            background: linear-gradient(135deg, var(--light) 0%, var(--light-gray) 100%);
            z-index: 1001;
            padding: 30px 20px;
            transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow-y: auto;
        }

        .more-panel.active {
            right: 0;
        }

        .more-panel-menu {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 10px;
        }

        .more-panel-link {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background-color: var(--light-gray);
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border-radius: 5px;
        }

        .more-panel-link i {
            font-size: 14px;
            margin-right: 12px;
            color: var(--dark);
        }

        .more-panel-link:hover {
            background-color: #e0e0e0;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        /* New Social Media Styles */
        .more-panel-social {
            display: flex;
            justify-content: start;
            gap: 8px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }

        .social-icon {
            font-size: 24px;
            color: var(--light);
            background-color: var(--primary);
            padding: 5px 13px;
            transition: var(--transition);
            border-radius: 5px;
        }

        .social-icon:hover {
            color: var(--light);
            background-color: var(--dark);
            transform: scale(1.1);
        }
        
        .more-panel-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .more-panel-close:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }
        
        .more-panel-title {
            color: var(--dark);
            font-size: 22px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--dark);
            display: flex;
            align-items: center;
        }
        
        .more-panel-title i {
            margin-right: 10px;
        }
        
        .more-image-box {
            display: block;
            height: 200px;
            overflow: hidden;
            margin-bottom: 10px;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            border-radius: 8px;
        }
        
        .more-image-box:last-child {
            margin-bottom: 0;
        }
        
        .more-image-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .more-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: var(--transition);
            border-radius: 8px;
        }
        
        .more-image-box:hover img {
            transform: scale(1.05);
        }
        
        .more-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgb(0, 0, 0), transparent);
            color: white;
            border-radius: 0 0 8px 8px;
        }
        
        .more-image-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .more-image-desc {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Mobile menu toggle */
        .mobile-toggle {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--dark);
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f0f0f0;
            transition: var(--transition);
        }
        
        .mobile-toggle:hover {
            background: #e0e0e0;
            color: var(--dark);
        }

        /* Responsive styles */
        @media (max-width: 1100px) {
            .services-panel {
                width: 95%;
                left: -95%;
            }
            
            .more-panel {
                width: 35%;
                right: -35%;
            }
        }
        
        @media (max-width: 992px) {
            .services-panel {
                width: 100%;
                left: -100%;
                flex-direction: column;
            }
            
            .services-menu-container {
                width: 100%;
                height: 40%;
            }
            
            .services-content-container {
                width: 100%;
                height: 60%;
            }
            
            .more-panel {
                width: 40%;
                right: -40%;
            }
            
            .services-mega-menu-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--light);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                height: calc(100vh - 80px);
                overflow-y: auto;
                gap: 10px;
            }
            
            .nav-link{
                color: var(--black);
                text-align: center;
                padding: 15px;
            }
            
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .services-toggle, .more-toggle {
                background-color: var(--dark);
                color: var(--light);
                border-radius: 5px;
            }
            
            .more-panel {
                width: 85%;
                right: -85%;
            }
            
            .services-mega-menu-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .more-panel {
                width: 90%;
                right: -90%;
            }
            
            .more-image-box {
                height: 160px;
            }
        }






        /* ===========banner=========== */



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Variables for easy color changes */
        :root {
            --primary-color: #D4AF37; /* Soft Gold/Bronze */
            --secondary-color: #1a4b5f; /* Darker Teal/Blue for more contrast */
            --accent-color: #f8f5f0;
            --text-dark: #2c2c2c;
            --text-light: #777;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        /* --- Hero Banner Container (Wrapper for slides) --- */
        .hero-banner-container {
            width: 1300px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            height: 85vh; 
        }

        #background-video{
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: .4;
        }
        /* --- Individual Hero Banner Slide --- */
        .hero-banner {
            position: absolute; /* Stack slides on top of each other */
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: start;
            padding: 30px 70px 20px 70px;
            height: 100%;
            opacity: 0; /* Start hidden */
            transition: opacity 0.8s ease-in-out; 
        }

        .hero-banner.active {
            opacity: 1;
            z-index: 5; /* Ensure active slide is on top */
        }

        /* ---------------------------------------------------- */
        /* --- NEW ANIMATION KEYFRAMES (Request 2) --- */
        /* ---------------------------------------------------- */

        /* Animation for Text Content (Slide in from bottom-left) */
        @keyframes fadeInText {
            0% { transform: translateY(20px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        /* Animation for Image Content (Zoom in slightly) */
        @keyframes fadeInImage {
            0% { transform: scale(1.05); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Apply animations to active banner parts */
        .hero-banner.active .content-left-banner {
            animation: fadeInText 1s ease forwards;
        }

        .hero-banner.active .content-right-banner {
            animation: fadeInImage 1s ease 0.2s forwards; /* Start image animation slightly later */
        }
        
        /* ---------------------------------------------------- */
        /* --- Existing Styles (renamed to end with -banner) --- */
        /* ---------------------------------------------------- */
        
        /* Class Name changes based on request 1 */
        .content-left-banner {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            max-width: 600px;
            opacity: 0; /* Start hidden for animation */
        }

        .greeting-box-banner {
            background-color: rgba(26, 75, 95, 0.1);
            padding: 8px 16px;
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            border-radius: 30px;
            color: var(--secondary-color);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .main-heading-banner {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 25px 0;
            color: var(--text-dark);
        }

        .highlight-text-banner {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .highlight-text-banner::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(212, 175, 55, 0.2);
            z-index: -1;
        }

        .description-banner {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 40px;
            max-width: 500px;
            line-height: 1.8;
        }

        /* --- Action Buttons --- */
        .action-buttons-banner {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-banner {
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-align: center;
        }

        .primary-btn-banner {
            background-color: var(--secondary-color);
            color: white;
            border: 2px solid var(--secondary-color);
            box-shadow: var(--shadow);
        }

        .primary-btn-banner:hover {
            background-color: #14394a;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .secondary-btn-banner {
            background-color: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
        }

        .secondary-btn-banner:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* --- Right Side Image and Floating Elements --- */
        .content-right-banner {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            min-width: 300px;
            padding: 20px;
            opacity: 0; /* Start hidden for animation */
        }

        .image-container-banner {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-frame-banner {
            position: absolute;
            width: 85%;
            height: 85%;
            background-color: var(--primary-color);
            border-radius: 20px;
            transform: translate(10%, -5%);
            z-index: 0;
            opacity: 0.9;
        }

        .profile-img-banner {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            z-index: 1;
            position: relative;
            border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        /* Floating Badges/Labels */
        .floating-badge-banner {
            position: absolute;
            background-color: var(--secondary-color);
            color: white;
            font-size: 14px;
            font-weight: bold;
            padding: 15px;
            border-radius: 50%;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            top: 10%;
            right: 5%;
            z-index: 2;
            box-shadow: var(--shadow);
            animation: float 3s ease-in-out infinite;
        }

        .floating-label-banner {
            position: absolute;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: bold;
            z-index: 2;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .label-ui-ux-banner {
            background-color: var(--primary-color);
            color: white;
            bottom: 25%;
            right: 0;
            animation: float 3.5s ease-in-out infinite 0.5s;
        }

        .label-product-banner {
            background-color: var(--secondary-color);
            color: white;
            bottom: 10%;
            left: 0;
            animation: float 4s ease-in-out infinite 1s;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        /* --- Carousel Dots Navigation --- */
        .carousel-dots-banner {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot-banner {
            height: 12px;
            width: 12px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid white;
        }

        .dot-banner.active {
            background-color: var(--secondary-color);
            transform: scale(1.2);
            border-color: var(--primary-color);
        }

        /* Responsive adjustments for stacking/positioning */
        @media (max-width: 900px) {
            .hero-banner {
                flex-direction: column;
                text-align: center;
                padding: 60px 20px;
                min-height: auto;
            }

            .content-left-banner, .content-right-banner {
                max-width: 100%;
                /* Remove animation opacity so elements are visible when stacked */
                opacity: 1; 
            }

            /* Apply animations directly to the slide content on mobile */
            .hero-banner.active .content-left-banner,
            .hero-banner.active .content-right-banner {
                animation: none;
            }

            .image-container-banner {
                margin-top: 40px;
            }
        }

        /* Further media queries remain the same as previous response */
        @media (max-width: 768px) {
            .main-heading-banner { font-size: 2.2rem; }
            .description-banner { font-size: 16px; }
            .btn-banner { padding: 12px 25px; font-size: 14px; }
            .image-container-banner { height: 400px; }
            .floating-badge-banner { width: 60px; height: 60px; font-size: 12px; }
            .floating-label-banner { padding: 10px 15px; font-size: 12px; }
        }

        @media (max-width: 480px) {
            .main-heading-banner { font-size: 1.8rem; }
            .action-buttons-banner { flex-direction: column; width: 100%; }
            .btn-banner { width: 100%; }
            .image-container-banner { height: 300px; }
        }




        /* ===========about section=========== */



        :root {
            --primary-color: #928575; /* Elegant Taupe/Accent */
            --secondary-color: #2c3e50; /* Dark Headings */
            --text-color: #666666; /* Muted Body Text */
            --bg-color: #ffffff; /* Pure White Background */
            --spacing-section: 20px;
            --spacing-gap: 30px;
            --border-radius: 8px;
        }

        /* --- Main Section Layout --- */
        .security-section {
            display: flex;
            align-items: center;
            max-width: 1300px;
            margin: var(--spacing-section) auto;
            padding: 0;
            position: relative;
            /* background-color: var(--bg-color); */
        }

        /* --- Accent Background Block (New Design Element) --- */
        .security-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 55%; /* Covers the image area */
            height: 100%;
            z-index: 1; 
        }

        /* --- Image Container (Dynamic Staggered Columns) --- */
        .image-container {
            width: 50%; 
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            z-index: 2; /* Keep images above the background block */
            padding-left: 5%; /* Push content in slightly */
        }
        
        /* New Arrangement: Two Columns, Staggered Heights */
        .large-image {
            grid-column: 1 / 2; /* First column */
            height: 500px; /* Tall main image */
            margin-top: 50px; /* Pushed down */
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .small-images {
            grid-column: 2 / 3; /* Second column */
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 50px; /* Pushed up */
        }

        .top-image, .bottom-image {
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .top-image {
            height: 230px;
        }
        .bottom-image {
            height: 230px;
        }


        /* Image Styling */
        .large-image img, .top-image img, .bottom-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
            filter: saturate(1.1);
        }
        
        /* Hover Effect: Smooth Perspective Zoom */
        .large-image:hover img, .top-image:hover img, .bottom-image:hover img {
            transform: scale(1.05) perspective(1px);
        }

        /* --- Text Container (Overlapping / Right Side) --- */
        .text-container {
            width: 50%;
            padding: 0 5%;
            z-index: 3; /* To overlap the images slightly for visual interest */
            margin-left: -5%; /* Pull the text container back to overlap the images/bg block */
            background-color: var(--bg-color); /* Ensure text content box is white */
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .about-us-tag {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 10px;
            display: inline-block;
        }

        .main-heading {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.1;
            color: var(--secondary-color);
            margin-bottom: 20px;
            animation: textRise 1s ease-out forwards;
        }
        
        .body-text {
            font-size: 1.05rem;
            color: var(--text-color);
            line-height: 1.8;
            margin-top: 20px;
            border-left: 3px solid var(--primary-color);
            padding-left: 15px;
            animation: textFadeIn 1s ease-out 0.4s forwards;
            opacity: 0;
        }

        /* Highlighted text with simple color */
        .premium-text {
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        /* --- Simple Text Animations (For Freshness) --- */
        @keyframes textRise {
            0% { transform: translateY(20px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
        
        @keyframes textFadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .security-section {
                flex-direction: column; 
                margin: 60px auto;
                padding: 0 20px;
            }
            
            .security-section::before {
                display: none; /* Hide the floating accent block on mobile */
            }

            .image-container {
                width: 100%;
                padding: 0;
                margin-top: 40px;
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            
            /* Remove staggering on tablets for a cleaner, full-width look */
            .large-image {
                margin-top: 0;
                height: 350px;
            }
            .small-images {
                margin-bottom: 0;
            }

            .text-container {
                width: 100%;
                margin-left: 0;
                padding: 20px 0;
            }
            
            .main-heading {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 600px) {
            .image-container {
                grid-template-columns: 1fr; /* Single column stack */
                grid-auto-rows: 250px;
            }
            
            .large-image, .small-images, .top-image, .bottom-image {
                grid-column: 1 / 2; 
                height: 200px;
            }
            
            .small-images {
                flex-direction: column;
                gap: 15px;
            }
        }




        
        /* ==============short servcies========== */

        :root {
            --highlight-primary-color: #34495e; /* Dark Blue for icons/text (You might change this to a soft Pink/Purple for a beauty theme, e.g., #b388ff or #f06292) */
            --highlight-light-bg: #f0f5ff; /* Off-white background */
            --highlight-text-color: #2c3e50;
            --highlight-description-color: #7f8c8d;
            --highlight-font: 'Inter', sans-serif;
            --highlight-card-radius: 12px;
            --highlight-transition: 0.3s ease-in-out;
        }

        .highlight-cover-container{
            font-family: var(--highlight-font);
            margin: 0;
            padding: 40px 20px;
            background-color: var(--highlight-light-bg);
            display: flex;
            justify-content: center;
            align-items: center;
        }

     .highlight-container {
            display: grid;
            grid-template-columns: 1.2fr 1.3fr 1.2fr;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
            max-width: 1200px;
            width: 100%;
            padding: 20px; 
        }

        /* --- Feature Card Styling and HOVER ANIMATION --- */
        .highlight-card {
            background-color: white;
            padding: 30px;
            border-radius: var(--highlight-card-radius);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: center;
            /* Add transition for smooth animation */
            transition: transform var(--highlight-transition), box-shadow var(--highlight-transition); 
            cursor: pointer;
        }

        /* HOVER EFFECT 1: Slight Lift and Scale */
        .highlight-card:hover {
            transform: translateY(-5px) scale(1.02); /* Lift up and slightly enlarge */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
        }

        /* Icon Placement */
        .highlight-icon-box {
            width: 45px;
            height: 45px;
            background-color: var(--highlight-primary-color);
            color: white;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        /* Text Styling */
        .highlight-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--highlight-text-color);
            margin-top: 0;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .highlight-description {
            font-size: 0.95rem;
            color: var(--highlight-description-color);
            margin: 0;
            line-height: 1.6;
        }

        /* --- Center Image Placement and Styling --- */
        .highlight-center-image {
            grid-column: 2 / 3;
            grid-row: 1 / 3; 
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            /* Ensure the wrapper also has a transition for the image effect */
            transition: transform var(--highlight-transition); 
            cursor: pointer;
        }

        /* HOVER EFFECT 2: Subtle Shadow and Zoom on Image */
        .highlight-center-image:hover img {
            transform: scale(1.03); /* Subtle zoom effect on the image */
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .highlight-center-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--highlight-card-radius);
            display: block;
            /* Add transition to the image itself for the smooth scale */
            transition: transform var(--highlight-transition), box-shadow var(--highlight-transition); 
        }

        /* --- Grid Placement for Cards (No Change) --- */
        .highlight-card-top-left { grid-column: 1 / 2; grid-row: 1 / 2; }
        .highlight-card-bottom-left { grid-column: 1 / 2; grid-row: 2 / 3; }
        .highlight-card-top-right { grid-column: 3 / 4; grid-row: 1 / 2; }
        .highlight-card-bottom-right { grid-column: 3 / 4; grid-row: 2 / 3; }

        /* --- Responsive Adjustments (No Change) --- */
        @media (max-width: 992px) {
            .highlight-container {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                padding: 10px;
                gap: 20px;
            }
            
            .highlight-center-image {
                grid-column: 1 / 2;
                grid-row: 1 / 2;
                height: 350px;
                margin-bottom: 0;
            }

            .highlight-card-top-left { grid-column: 1 / 2; grid-row: 2 / 3; }
            .highlight-card-bottom-left { grid-column: 1 / 2; grid-row: 3 / 4; }
            .highlight-card-top-right { grid-column: 1 / 2; grid-row: 4 / 5; }
            .highlight-card-bottom-right { grid-column: 1 / 2; grid-row: 5 / 6; }
            
            .highlight-center-image img { height: 100%; }
        }






        /* ================Sevices=========== */


        
/* ///////services /////// */
.wellness-services-section {
    color: #000000;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    min-height: 100vh;
}

/* Main Container and Header */
.wellness-services-section .services-content-container {
    max-width: 1300px;
    width: 100%;
    text-align: center;
}

.services-header-section {
    margin-bottom: 50px
}

.services-pre-heading {
    font-size: 0.9rem;
    color: #928575;
    border-left: 4px solid #928575;
    text-transform: uppercase;
    margin: 0 auto;
    width: 200px;
    font-weight: 600;
    text-align: start;
    padding-left: 10px;
    align-self: center;
}

.services-main-heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-top: 20px;
}

/* Services Grid and Cards */
.services-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-offering-card {
    flex: 1 1 250px;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
}

/* Image wrappers for different shapes */
.img-wrapper-dry-sauna,
.img-wrapper-cosmetology,
.img-wrapper-massage {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 400px 400px 0 0;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 260px;
}

.img-wrapper-relaxation,
.img-wrapper-finnish-sauna{
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 0 0 400px 400px; 
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    height: 260px;
}

.service-offering-card:hover .img-wrapper-relaxation,
.service-offering-card:hover .img-wrapper-finnish-sauna,
.service-offering-card:hover .img-wrapper-dry-sauna,
.service-offering-card:hover .img-wrapper-cosmetology,
.service-offering-card:hover .img-wrapper-massage{
    border-radius: 50%;
}

.img-wrapper-steam-room {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 50% ;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-offering-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Card Content */
.card-service-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000000;
}

.card-service-description {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

.card-read-more-link {
    font-size: 14px;
    color: #928575;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

.card-read-more-link:hover {
    color: #c3922e;
}


/* Responsive Design */
@media (max-width: 768px) {
    .services-main-heading {
        font-size: 40px;
    }
    .service-offering-card {
    max-width: 300px;
    }
    .img-wrapper-relaxation,
.img-wrapper-finnish-sauna,
.img-wrapper-dry-sauna,
.img-wrapper-cosmetology,
.img-wrapper-massage{
    max-width: 300px;
    height: 310px;
}
}

@media (max-width: 480px) {
    .services-main-heading {
        font-size: 32px;
    }
}





/* ==================Under slider banner=============== */


.slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: end;
            min-height: 90vh;
            overflow: hidden;
            padding: 20px 20px 0 20px;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        /* First slide with your original styling */
        .slide-1 {
            background-image: url(images/h2-background.png);
        }

        /* Additional slides with different backgrounds */
        .slide-2 {
            background-image: linear-gradient(rgba(255, 231, 247, 0.35), rgba(255, 231, 254, 0.265)), url(images/h2-background.png);
        }

        .slide-3 {
            background-image: linear-gradient(rgba(255, 255, 243, 0.453), rgba(255, 253, 226, 0.556)), url(images/h2-background.png);
        }

        .slide-4 {
            background-image: linear-gradient(rgba(240, 245, 255, 0.555), rgba(242, 245, 255, 0.343)), url(images/h2-background.png);
        }

        /* Left and Right Image Sections */
        .image-section-2 {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .image-section-2 img {
            width: auto;
            height: 500px;
            display: block;
            object-fit: contain;
        }

        .right-image-3 {
            position: relative;
            border-radius: 300px 300px 0 0;
            height: 500px;
        }

        .right-image-3 video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 300px 300px 0 0;
            flex: .9;
        }

        .right-image-3::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50px;
            width: 100px;
            height: 100%;
            background: #f0f0f0;
            transform: skewX(-20deg);
            z-index: -1;
        }

        /* Content Section */
        .content-section-4 {
            flex: 1.2;
            padding: 40px 20px;
            text-align: center;
            z-index: 1;
        }

        .logo-5 img {
            width: 70px;
            margin-bottom: 20px;
            filter: brightness(0);
        }

        .services-pre-heading {
            font-size: 0.8rem;
            letter-spacing: 2px;
            color: #666666;
            margin-bottom: 10px;
        }

        .pre-heading-center{
            width: 180px;
            text-align: center;
            margin: 0 auto;
        }

        .heading-7 {
            font-size: 3rem;
            font-weight: 700;
            color: #000000;
            line-height: 1.2;
            margin: 10px 0 20px 0;
        }

        .description-8 {
            color: #333333;
            font-size: 1rem;
            max-width: 400px;
            margin: 0 auto 30px;
        }

        .btn {
            background-color: #928575;
            color: #ffffff;
            border: none;
            padding: 15px 40px;
            font-size: 1rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #000;
        }

        /* Slider navigation */
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: #000;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background-color 0.3s ease;
        }

        .slider-arrow:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .slide {
                flex-direction: column-reverse;
                align-items: center;
            }
            
            .image-section-2 {
                width: 100%;
            }

            .left-image-10{
                display: none;
            }
            
            .content-section-4 {
                width: 100%;
            }
            
            .heading-7 {
                font-size: 2rem;
            }
            
            .right-image-3 {
                height: 300px;
            }
            
            .slider-arrow {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }





        /* ===========Review============= */


        
.review-headings {
  text-align: center;
  padding: 50px 0;
}

.review-headings h2 {
  font-size: 3rem;
  color: #000000;
  margin: 10px 0 30px 0;
}





        /* ===========Footer=========== */




        
         
.footer {
    background-color: #0e0e0e;
    color: #333;
    padding: 5rem 0 2rem;
    position: relative;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #928575, #c3922e);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-about .footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo a {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.footer-logo i {
    color: #ffffff;
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.footer-about p {
    color: #ededed;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(207, 207, 207, 0.05);
    border-radius: 50%;
    color: #dcdcdc;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-social a:hover {
    background-color: #ff6b6b31;
    color: #c3922e;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #928575;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e9e9e9;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #c3922e;
    transform: translateX(5px);
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    color: #c4c4c4;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-contact a{
    transition: all .3s ease;
}

.footer-contact a:hover{
    padding-left: 5px;
}

.footer-contact i {
    color: #928575;
    margin-right: 0.8rem;
    margin-top: 3px;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ffffff47;
    color: #e4e4e4;
    max-width: 1200px;
    margin: 10px auto;
    font-size: 1rem;
}
.footer-bottom a{
    color: #e4e4e4;

    &:hover{
        color: #928575;
    }
}



    .service-tag {
            color: var(--secondary) ;
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            padding-left: 15px;
            margin-bottom: 25px;
            display: inline-block;
            text-transform: uppercase;
        }

        .service-tag::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 100%;
            background-color: var(--secondary);
            border-radius: 2px;
        }