/* CSS Variables */
        :root {
            --primary-light-grey: #e8e8e8;
            --secondary-grey: #d0d0d0;
            --accent-grey: #a8a8a8;
            --white: #ffffff;
            --dark-text: #2c2c2c;
            --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Header Styling */
        header {
            background: #0f1a2a;
            padding: 1rem 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--accent-grey);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        /* Logo Section */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            animation: fadeInSlideLeft 0.8s ease-out;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary-grey) 0%, var(--accent-grey) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--white);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .logo:hover .logo-icon {
            transform: scale(1.12) rotateY(10deg);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .logo:hover .logo-icon::before {
            opacity: 1;
            animation: shimmer 0.6s ease-in-out;
        }

        .logo-text {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            animation: fadeInSlideLeft 0.8s ease-out 0.1s both;
        }

        .logo-text .tagline {
            display: block;
            font-size: 0.65rem;
            color: var(--accent-grey);
            letter-spacing: 0.5px;
            margin-top: 3px;
            font-weight: 500;
        }

        /* Navigation Menu */
        nav {
            display: flex;
            gap: 2.5rem;
            animation: fadeInSlideRight 0.8s ease-out 0.2s both;
        }

        nav a {
            color: var(--dark-text);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 800;
            position: relative;
            padding: 0.8rem 0;
            transition: color var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-grey), var(--accent-grey));
            transition: width var(--transition);
        }

        nav a:hover {
            color: var(--accent-grey);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 7px;
            cursor: pointer;
            animation: fadeInSlideRight 0.8s ease-out 0.2s both;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--dark-text);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
            background: var(--accent-grey);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
            background: var(--accent-grey);
        }

        /* Search Bar (Optional) */
        .search-box {
            position: relative;
            animation: fadeInSlideRight 0.8s ease-out 0.3s both;
        }

        .search-input {
            background: var(--primary-light-grey);
            border: 2px solid var(--secondary-grey);
            padding: 0.7rem 1rem 0.7rem 2.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: all var(--transition);
            width: 200px;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--accent-grey);
            box-shadow: 0 0 10px rgba(168, 168, 168, 0.3);
            width: 250px;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-grey);
            pointer-events: none;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                flex-direction: column;
                gap: 1rem;
                background: var(--white);
                padding: 1.5rem 2rem;
                width: 100%;
                border-top: 3px solid var(--accent-grey);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
                animation: slideDown 0.4s ease-out;
            }

            nav.active {
                display: flex;
            }

            nav a {
                padding: 1rem 0;
                border-bottom: 1px solid var(--secondary-grey);
            }

            nav a::after {
                display: none;
            }

            nav a:hover {
                padding-left: 1rem;
            }

            .hamburger {
                display: flex;
            }

            .search-box {
                display: none;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .header-container {
                padding: 0.8rem 20px;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1rem;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 1.4rem;
            }

            nav {
                padding: 1rem 1.5rem;
            }

            nav a {
                font-size: 0.95rem;
            }

            .logo {
                gap: 10px;
            }
        }

        /* Animations */
        @keyframes fadeInSlideLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInSlideRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(168, 168, 168, 0.4);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(168, 168, 168, 0);
            }
        }

        /* Utility Classes */
        .active-nav {
            color: var(--accent-grey);
            font-weight: 700;
        }

        .active-nav::after {
            width: 100%;
        }


        /* ===========banner======== */

        /* CSS Variables */
        :root {
            --light-grey: #e8e8e8;
            --medium-grey: #c0c0c0;
            --dark-grey: #888888;
            --black: #1a1a1a;
            --pure-black: #000000;
            --white: #ffffff;
        }

        /* Banner Section */
        .banner-section {
            position: relative;
            min-height: 100vh;
            /* background: ; */
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 4rem 0;
        }

        /* Animated Background Pattern */
        .banner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            background-size: 50px 50px;
            opacity: 0.5;
            animation: patternMove 30s linear infinite;
        }

        /* Floating Elements Background */
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            font-size: 4rem;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            font-size: 3rem;
            animation-delay: 5s;
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 20%;
            font-size: 3.5rem;
            animation-delay: 10s;
        }

        .floating-element:nth-child(4) {
            top: 30%;
            right: 25%;
            font-size: 2.5rem;
            animation-delay: 15s;
        }

        /* Banner Container */
        .banner-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Banner Content */
        .banner-content {
            animation: fadeInUp 1s ease-out;
        }

        .banner-subtitle {
            color: var(--medium-grey);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out 0.2s both;
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(232, 232, 232, 0.1);
            border-radius: 25px;
        }

        .banner-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--light-grey);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .banner-title .highlight {
            color: var(--white);
            position: relative;
            display: inline-block;
        }

        .banner-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, var(--medium-grey), transparent);
            opacity: 0.5;
            animation: expandWidth 1.5s ease-out 1s both;
        }

        .banner-description {
            font-size: 1.15rem;
            color: #fff;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        /* CTA Buttons */
        .banner-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--light-grey), var(--medium-grey));
            color: var(--black);
            box-shadow: 0 8px 24px rgba(232, 232, 232, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(232, 232, 232, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--light-grey);
            border: 2px solid var(--medium-grey);
        }

        .btn-secondary:hover {
            background: var(--medium-grey);
            color: var(--black);
            transform: translateY(-3px);
        }

        /* Banner Image/Visual */
        .banner-visual {
            position: relative;
            animation: fadeInRight 1s ease-out 0.5s both;
        }

        .banner-visual-inner {
            position: relative;
            padding: 2rem;
        }

        .detective-illustration {
            width: 100%;
            max-width: 500px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
            animation: levitate 4s ease-in-out infinite;
        }

        .visual-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 232, 232, 0.1), transparent);
            animation: pulse 3s ease-in-out infinite;
        }

        .visual-circle.circle-1 {
            width: 400px;
            height: 400px;
            top: 10%;
            right: -10%;
            animation-delay: 0s;
        }

        .visual-circle.circle-2 {
            width: 300px;
            height: 300px;
            bottom: 5%;
            left: -5%;
            animation-delay: 1s;
        }

        /* Stats Section */
        .banner-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            animation: fadeInUp 1s ease-out 1s both;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--light-grey);
            line-height: 1;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--dark-grey);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Decorative Elements */
        .magnifying-glass-icon {
            position: absolute;
            font-size: 15rem;
            color: var(--light-grey);
            opacity: 0.03;
            right: -5%;
            top: 50%;
            transform: translateY(-50%) rotate(-15deg);
            z-index: 1;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .banner-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .banner-visual {
                order: -1;
            }

            .banner-title {
                font-size: 2.8rem;
            }

            .detective-illustration {
                max-width: 400px;
                margin: 0 auto;
                display: block;
            }
        }

        @media (max-width: 768px) {
            .banner-section {
                min-height: auto;
                padding: 3rem 0;
            }

            .banner-container {
                padding: 0 20px;
                gap: 2rem;
            }

            .banner-title {
                font-size: 2.2rem;
            }

            .banner-description {
                font-size: 1rem;
            }

            .banner-cta {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
                padding: 1rem 2rem;
            }

            .banner-stats {
                gap: 2rem;
                flex-wrap: wrap;
            }

            .stat-number {
                font-size: 2rem;
            }

            .detective-illustration {
                max-width: 300px;
            }

            .magnifying-glass-icon {
                font-size: 10rem;
            }
        }

        @media (max-width: 480px) {
            .banner-title {
                font-size: 1.8rem;
            }

            .banner-subtitle {
                font-size: 0.85rem;
                letter-spacing: 2px;
            }

            .banner-description {
                font-size: 0.95rem;
            }

            .stat-number {
                font-size: 1.6rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes expandWidth {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        @keyframes patternMove {
            from {
                background-position: 0 0;
            }
            to {
                background-position: 50px 50px;
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.15;
            }
        }

        @keyframes levitate {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }



        

        /* ========body background========= */

        body {
            /* background-color: #888888 !important; */
            background-image: url(/images/detective1.webp) !important;
            background-repeat: no-repeat !important;
            background-size: cover !important;
            background-position: center;  /* center the image */
  background-attachment: fixed; 
        }

        /* =========service section========== */
        /* CSS Variables - Dark Premium Theme */
        :root {
            --primary-dark: #0f1419;
            --secondary-dark: #1a2332;
            --tertiary-dark: #2a3f5f;
            --card-bg: #1f2d3d;
            --accent-gold: #fff;
            --accent-gold-light: #fff;
            --text-light: #e8e8e8;
            --text-muted: #a8a8a8;
            --border-color: #3a4a5a;
            --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Services Section */
        .services-section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
            background: #00000080;
        }

        /* Animated Background Pattern */
        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%);
            background-size: 80px 80px;
            opacity: 0.6;
            animation: patternFlow 40s linear infinite;
            z-index: 1;
        }

        /* Floating Background Elements */
        .floating-element {
            position: absolute;
            opacity: 0.05;
            animation: float 25s infinite ease-in-out;
            z-index: 2;
        }

        .floating-element:nth-child(1) {
            top: -10%;
            left: 5%;
            font-size: 15rem;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            bottom: -10%;
            right: 10%;
            font-size: 12rem;
            animation-delay: 8s;
        }

        /* Services Container */
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 10;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInDown 1s ease-out;
        }

        .section-subtitle {
            color: var(--accent-gold);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            animation: fadeInUp 1s ease-out;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .section-title .highlight {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        /* Service Card */
        .service-card {
            background: linear-gradient(135deg, var(--card-bg) 0%, rgba(42, 63, 95, 0.3) 100%);
            border-radius: 12px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            transition: all var(--transition);
            animation: fadeInUp 1s ease-out;
            cursor: pointer;
            border: 1px solid var(--border-color);
        }

        .service-card:nth-child(1) { animation-delay: 0.2s; }
        .service-card:nth-child(2) { animation-delay: 0.4s; }
        .service-card:nth-child(3) { animation-delay: 0.6s; }
        .service-card:nth-child(4) { animation-delay: 0.8s; }
        .service-card:nth-child(5) { animation-delay: 1s; }
        .service-card:nth-child(6) { animation-delay: 1.2s; }

        /* Glow Effect on Hover */
        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity var(--transition);
            z-index: 1;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        /* Shimmer Effect */
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transition: left var(--transition);
            z-index: 2;
        }

        .service-card:hover::after {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 20px 48px rgba(212, 175, 55, 0.2);
            border-color: var(--accent-gold);
            background: linear-gradient(135deg, rgba(42, 63, 95, 0.6) 0%, rgba(42, 63, 95, 0.4) 100%);
        }

        /* Service Card Icon */
        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 2rem;
            transition: all var(--transition);
            position: relative;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
            transition: all 0.8s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(-15deg);
            box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
        }

        .service-card:hover .service-icon::before {
            top: 0;
            left: 0;
        }

        /* Service Card Content */
        .service-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1rem;
            transition: color var(--transition);
            position: relative;
            z-index: 5;
        }

        .service-card:hover .service-title {
            color: var(--accent-gold);
        }

        .service-description {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 5;
        }

        /* Service Features */
        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 5;
        }

        .service-features li {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            padding-left: 1.8rem;
            position: relative;
            transition: all var(--transition);
        }

        .service-features li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: 700;
            transition: all var(--transition);
        }

        .service-card:hover .service-features li {
            color: var(--text-light);
            padding-left: 2.2rem;
        }

        .service-card:hover .service-features li::before {
            color: var(--accent-gold-light);
        }

        /* Read More Link */
        .service-link {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all var(--transition);
            position: relative;
            z-index: 5;
        }

        .service-link::after {
            content: '→';
            transition: transform var(--transition);
        }

        .service-link:hover {
            color: var(--accent-gold-light);
        }

        .service-link:hover::after {
            transform: translateX(5px);
        }

        /* Premium Badge */
        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            color: var(--primary-dark);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0;
            transform: scale(0.7) rotateZ(-20deg);
            transition: all var(--transition);
            z-index: 20;
            box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
        }

        .service-card:hover .service-badge {
            opacity: 1;
            transform: scale(1) rotateZ(0deg);
        }

        /* CTA Section */
        .services-cta {
            text-align: center;
            padding: 2rem 0;
            animation: fadeInUp 1s ease-out 1.4s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            color: var(--primary-dark);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 12px 36px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(212, 175, 55, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }

            .section-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 4rem 0;
            }

            .services-container {
                padding: 0 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .service-card {
                padding: 2rem;
            }

            .service-icon {
                width: 75px;
                height: 75px;
                font-size: 2.2rem;
                margin-bottom: 1.5rem;
            }

            .service-title {
                font-size: 1.3rem;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .services-section {
                padding: 2.5rem 0;
            }

            .services-container {
                padding: 0 15px;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .section-subtitle {
                font-size: 0.85rem;
                padding: 0.4rem 1rem;
            }

            .section-description {
                font-size: 0.9rem;
            }

            .service-card {
                padding: 1.5rem;
                margin-bottom: 1rem;
            }

            .service-icon {
                width: 65px;
                height: 65px;
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .service-title {
                font-size: 1.1rem;
            }

            .service-description {
                font-size: 0.85rem;
            }

            .service-features li {
                font-size: 0.8rem;
            }

            .cta-button {
                padding: 1rem 2rem;
                font-size: 0.95rem;
            }
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes patternFlow {
            from {
                background-position: 0 0;
            }
            to {
                background-position: 80px 80px;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-40px) rotate(180deg);
            }
        }

        /* Scroll Animation Observer */
        .service-card.in-view {
            animation: fadeInUp 1s ease-out forwards;
        }
        /* =========service section end========== */

/* ===============footer========== */
/* Footer Styling - Single Row Layout */
footer {
    background: linear-gradient(180deg, #d0d0d0 0%, #e8e8e8 100%);
    border-top: 3px solid #a8a8a8;
    padding: 2.5rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

/* Footer Background Animation */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(168, 168, 168, 0.05) 49%, rgba(168, 168, 168, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(168, 168, 168, 0.05) 49%, rgba(168, 168, 168, 0.05) 51%, transparent 52%);
    background-size: 100px 100px;
    opacity: 0.5;
    animation: patternFlow 60s linear infinite;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 0;
    flex-wrap: nowrap;
}

.footer-section {
    flex: 1;
    animation: fadeInUp 1s ease-out;
    min-width: 0;
}

.footer-section:nth-child(1) { 
    animation-delay: 0.1s;
    flex: 1.2;
}
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { 
    animation-delay: 0.4s;
    flex: 1.3;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    animation: fadeInLeft 1s ease-out;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #a8a8a8, #d0d0d0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.footer-logo:hover .footer-logo-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.footer-logo-text {
    color: #2c2c2c;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.footer-description {
    color: #2c2c2c; /* darker so it shows clearly on the footer background */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: block;
}

/* Footer Section Title */
.footer-section h3 {
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.6rem;
    animation: slideInRight 0.8s ease-out;
    text-transform: uppercase;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, #a8a8a8, transparent);
    border-radius: 1px;
}

/* Footer Links */
.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-section ul li {
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out;
}

.footer-section ul li:nth-child(1) { animation-delay: 0.1s; }
.footer-section ul li:nth-child(2) { animation-delay: 0.15s; }
.footer-section ul li:nth-child(3) { animation-delay: 0.2s; }
.footer-section ul li:nth-child(4) { animation-delay: 0.25s; }
.footer-section ul li:nth-child(5) { animation-delay: 0.3s; }
.footer-section ul li:nth-child(6) { animation-delay: 0.35s; }

.footer-section a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.footer-section a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.75rem;
}

.footer-section a:hover {
    color: #a8a8a8;
    padding-left: 0.3rem;
}

.footer-section a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
}

.contact-item:hover {
    transform: translateX(6px);
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(168, 168, 168, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8a8a8;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(168, 168, 168, 0.3);
}

.contact-item:hover .contact-icon {
    background: rgba(168, 168, 168, 0.25);
    border-color: #a8a8a8;
    box-shadow: 0 4px 12px rgba(168, 168, 168, 0.15);
}

.contact-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    color: #666666;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.contact-text {
    color: #2c2c2c;
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    word-break: break-word;
}

.contact-item a .contact-text:hover {
    color: #a8a8a8;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #2c2c2c;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a8a8a8, #d0d0d0);
    z-index: -1;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    color: #ffffff;
    border-color: #a8a8a8;
    transform: translateY(-4px) scale(1.08);
}

.social-links a:hover::before {
    left: 0;
}

/* Business Hours */
.hours-list {
    list-style: none;
    color: #666666;
    font-size: 0.85rem;
    line-height: 1.8;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(168, 168, 168, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li:hover {
    color: #2c2c2c;
    padding-left: 0.3rem;
}

.hours-list li span:first-child {
    font-weight: 500;
    white-space: nowrap;
}

.hours-list li span:last-child {
    color: #a8a8a8;
    font-weight: 600;
    text-align: right;
}

/* Divider */
.footer-divider {
    border-top: 1px solid #d0d0d0;
    margin: 1.5rem 0 1rem;
    position: relative;
    animation: fadeIn 1.5s ease-out;
}

.footer-divider::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #a8a8a8, transparent);
    border-radius: 1px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: #666666;
    font-size: 0.8rem;
    animation: fadeInUp 1s ease-out 0.5s both;
    white-space: nowrap;
}

.footer-copyright span {
    color: #2c2c2c;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.footer-legal a {
    color: #666666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #a8a8a8;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal a:hover {
    color: #2c2c2c;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a8a8a8, #d0d0d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    border: none;
    animation: fadeInUp 1s ease-out 0.7s both;
    flex-shrink: 0;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Responsive Design - Desktop to Tablet */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section a {
        font-size: 0.8rem;
    }
    
    .hours-list li span:last-child {
        min-width: 100px;
    }
}

@media (max-width: 1024px) {
    .footer-section h3 {
        font-size: 0.9rem;
    }
    
    .footer-section a {
        font-size: 0.78rem;
    }
    
    .contact-text {
        font-size: 0.8rem;
    }
    
    .hours-list li span:last-child {
        min-width: 80px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1 !important;
    }

    .footer-section h3 {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-copyright {
        width: 100%;
    }

    .back-to-top {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1.5rem 0 0.8rem;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-logo-text {
        font-size: 0.95rem;
    }

    .footer-section a {
        font-size: 0.75rem;
    }

    .contact-text {
        font-size: 0.75rem;
    }

    .footer-legal {
        gap: 0.8rem;
    }

    .footer-legal a {
        font-size: 0.75rem;
    }

    .hours-list li span {
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes patternFlow {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100px 100px;
    }
}

/* ===============footer end========== */



/* ===================FAQ================== */
 /* CSS Variables */
        :root {
            --light-grey: #e8e8e8;
            --medium-grey: #d0d0d0;
            --dark-grey: #a8a8a8;
            --accent-grey: #888888;
            --black: #1a1a1a;
            --white: #ffffff;
            --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        /* Background Animation */
        .faq-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(168, 168, 168, 0.08) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.4;
            animation: moveBackground 20s linear infinite;
            z-index: 0;
        }

        /* FAQ Container */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 10;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInDown 1s ease-out;
        }

        .section-subtitle {
            color: var(--dark-grey);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(168, 168, 168, 0.1);
            border-radius: 50px;
            animation: fadeInUp 1s ease-out;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .section-title .highlight {
            background: linear-gradient(135deg, var(--accent-grey), var(--dark-grey));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--accent-grey);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        /* FAQ Items Container */
        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        /* FAQ Item */
        .faq-item {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all var(--transition);
            animation: fadeInUp 1s ease-out;
            border: 2px solid transparent;
        }

        .faq-item:nth-child(1) { animation-delay: 0.2s; }
        .faq-item:nth-child(2) { animation-delay: 0.3s; }
        .faq-item:nth-child(3) { animation-delay: 0.4s; }
        .faq-item:nth-child(4) { animation-delay: 0.5s; }
        .faq-item:nth-child(5) { animation-delay: 0.6s; }
        .faq-item:nth-child(6) { animation-delay: 0.7s; }
        .faq-item:nth-child(7) { animation-delay: 0.8s; }
        .faq-item:nth-child(8) { animation-delay: 0.9s; }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border-color: var(--dark-grey);
        }

        /* FAQ Question */
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 1.8rem 2rem;
            background: linear-gradient(135deg, var(--white) 0%, var(--light-grey) 100%);
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            position: relative;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--black);
            text-align: left;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, var(--light-grey) 0%, var(--medium-grey) 100%);
            color: var(--accent-grey);
        }

        .faq-question::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--dark-grey), var(--medium-grey));
            border-radius: 2px;
            opacity: 0;
            transition: opacity var(--transition);
        }

        .faq-item.active .faq-question::before {
            opacity: 1;
        }

        .faq-question-text {
            flex: 1;
            transition: color var(--transition);
        }

        /* FAQ Icon */
        .faq-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--medium-grey), var(--dark-grey));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            margin-left: 1rem;
            transition: all var(--transition);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .faq-question:hover .faq-icon {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(168, 168, 168, 0.2);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            background: linear-gradient(135deg, var(--dark-grey), var(--accent-grey));
        }

        /* FAQ Answer */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition), padding var(--transition), opacity var(--transition);
            opacity: 0;
            padding: 0 2rem;
            background: var(--white);
        }

        .faq-item.active .faq-answer {
            opacity: 1;
            padding: 1.5rem 2rem;
            max-height: 500px;
        }

        .faq-answer-text {
            color: var(--accent-grey);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .faq-answer-text:last-child {
            margin-bottom: 0;
        }

        /* FAQ Answer Key Points */
        .faq-key-points {
            margin-top: 1rem;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .faq-key-points li {
            color: var(--dark-grey);
            font-size: 0.95rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .faq-key-points li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--dark-grey);
            font-weight: 700;
        }

        /* CTA Button */
        .faq-cta {
            text-align: center;
            margin-top: 3rem;
            animation: fadeInUp 1s ease-out 1s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--dark-grey), var(--accent-grey));
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(168, 168, 168, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(168, 168, 168, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 4rem 0;
            }

            .faq-container {
                padding: 0 20px;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .faq-question {
                padding: 1.5rem 1.5rem;
                font-size: 1rem;
            }

            .faq-answer {
                padding: 0 1.5rem;
            }

            .faq-item.active .faq-answer {
                padding: 1.2rem 1.5rem;
            }

            .faq-icon {
                width: 35px;
                height: 35px;
                margin-left: 0.8rem;
                font-size: 1rem;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .faq-section {
                padding: 2.5rem 0;
            }

            .faq-container {
                padding: 0 15px;
            }

            .section-title {
                font-size: 1.6rem;
                margin-bottom: 1rem;
            }

            .section-subtitle {
                font-size: 0.85rem;
                padding: 0.4rem 1rem;
            }

            .section-description {
                font-size: 0.9rem;
            }

            .faq-question {
                padding: 1.2rem 1rem;
                font-size: 0.95rem;
            }

            .faq-answer-text {
                font-size: 0.9rem;
            }

            .faq-key-points li {
                font-size: 0.85rem;
                padding-left: 1.2rem;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.95rem;
            }
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes moveBackground {
            from {
                background-position: 0 0;
            }
            to {
                background-position: 50px 50px;
            }
        }

/* ===================FAQ End================== */

/* =================== Section Spacing =================== */
/* Add consistent vertical margin between major sections for better visual separation. */
section,
.banner-section,
.services-section,
.details,
.about,
.offers,
.call,
.calldetective-info,
.calldetective-club,
.faq-section,
.testimonials-section,
    /* Reduce margin below testimonials section for tighter layout */
.testimonials-section {
    margin-bottom: 1.2rem !important;
}
footer {
    margin-bottom: 3.5rem;
}

/* Reduce margin for last section before footer */
footer {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    section,
    .banner-section,
    .services-section,
    .details,
    .about,
    .offers,
    .call,
    .calldetective-info,
    .calldetective-club,
    .faq-section,
    .testimonials-section {
        margin-bottom: 2rem;
    }
}

/* End Section Spacing */


/* Testinomials */
/* CSS Variables */
        :root {
            --light-grey: #e8e8e8;
            --medium-grey: #d0d0d0;
            --dark-grey: #a8a8a8;
            --accent-grey: #888888;
            --black: #1a1a1a;
            --white: #ffffff;
            --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        /* Background Animation */
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(168, 168, 168, 0.08) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.9;
            animation: moveBackground 20s linear infinite;
            z-index: 0;
        }

        /* Testimonials Container */
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 10;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInDown 1s ease-out;
        }

        .section-subtitle {
            color: var(--dark-grey);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(168, 168, 168, 0.1);
            border-radius: 50px;
            animation: fadeInUp 1s ease-out;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .section-title .highlight {
            background: linear-gradient(135deg, var(--accent-grey), var(--dark-grey));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--accent-grey);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        /* Testimonials Carousel */
        .testimonials-carousel {
            position: relative;
            margin: 3rem 0;
        }

        .testimonials-track {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 1rem;
            scroll-snap-type: x mandatory;
        }

        .testimonials-track::-webkit-scrollbar {
            height: 6px;
        }

        .testimonials-track::-webkit-scrollbar-track {
            background: rgba(168, 168, 168, 0.1);
            border-radius: 10px;
        }

        .testimonials-track::-webkit-scrollbar-thumb {
            background: var(--dark-grey);
            border-radius: 10px;
        }

        .testimonials-track::-webkit-scrollbar-thumb:hover {
            background: var(--accent-grey);
        }

        /* Testimonial Card */
        .testimonial-card {
            flex: 0 0 calc(33.333% - 1.5rem);
            background: var(--white);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all var(--transition);
            animation: fadeInUp 1s ease-out;
            border: 2px solid transparent;
            scroll-snap-align: center;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.3s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.4s; }
        .testimonial-card:nth-child(4) { animation-delay: 0.5s; }
        .testimonial-card:nth-child(5) { animation-delay: 0.6s; }
        .testimonial-card:nth-child(6) { animation-delay: 0.7s; }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(168, 168, 168, 0.1), transparent);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            border-color: var(--dark-grey);
        }

        /* Star Rating */
        .star-rating {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .star {
            color: #ffc107;
            font-size: 1.2rem;
            transition: all var(--transition);
        }

        .star.half {
            position: relative;
        }

        .testimonial-card:hover .star {
            transform: scale(1.1) rotate(15deg);
        }

        /* Testimonial Content */
        .testimonial-content {
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 5;
        }

        .testimonial-text {
            color: var(--accent-grey);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
            position: relative;
            padding-left: 1.5rem;
        }

        .testimonial-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--light-grey);
            opacity: 0.5;
            font-weight: bold;
        }

        /* Testimonial Author */
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--light-grey);
            position: relative;
            z-index: 5;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--medium-grey), var(--dark-grey));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(168, 168, 168, 0.2);
            transition: all var(--transition);
        }

        .testimonial-card:hover .author-avatar {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(168, 168, 168, 0.3);
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            color: var(--black);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
            transition: color var(--transition);
        }

        .testimonial-card:hover .author-name {
            color: var(--dark-grey);
        }

        .author-title {
            color: var(--dark-grey);
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Badge */
        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(168, 168, 168, 0.1);
            color: var(--dark-grey);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 1rem;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .verified-badge i {
            color: #28a745;
        }

        /* Navigation Arrows */
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .carousel-btn {
            width: 45px;
            height: 45px;
            border: 2px solid var(--dark-grey);
            background: var(--white);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--dark-grey);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .carousel-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--dark-grey), var(--accent-grey));
            z-index: -1;
            transition: left var(--transition);
        }

        .carousel-btn:hover {
            color: var(--white);
            border-color: var(--dark-grey);
            transform: scale(1.1);
        }

        .carousel-btn:hover::before {
            left: 0;
        }

        /* Indicator Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 2rem;
            animation: fadeInUp 1s ease-out 0.7s both;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--light-grey);
            cursor: pointer;
            transition: all var(--transition);
            border: 2px solid transparent;
        }

        .dot:hover {
            background: var(--medium-grey);
        }

        .dot.active {
            background: var(--dark-grey);
            width: 30px;
            border-radius: 6px;
        }

        /* Stats Section */
        .testimonials-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all var(--transition);
            border: 2px solid transparent;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: var(--dark-grey);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-grey);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--accent-grey);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CTA Button */
        .testimonials-cta {
            text-align: center;
            margin-top: 3rem;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--dark-grey), var(--accent-grey));
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(168, 168, 168, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(168, 168, 168, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 1rem);
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 4rem 0;
            }

            .testimonials-container {
                padding: 0 20px;
            }

            .testimonial-card {
                flex: 0 0 calc(100% - 1rem);
            }

            .section-title {
                font-size: 2rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .testimonials-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .carousel-dots {
                gap: 0.6rem;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            .dot.active {
                width: 25px;
            }
        }

        @media (max-width: 480px) {
            .testimonials-section {
                padding: 2.5rem 0;
            }

            .testimonials-container {
                padding: 0 15px;
            }

            .section-title {
                font-size: 1.6rem;
                margin-bottom: 1rem;
            }

            .section-subtitle {
                font-size: 0.85rem;
                padding: 0.4rem 1rem;
            }

            .section-description {
                font-size: 0.9rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonial-text {
                font-size: 0.9rem;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.95rem;
            }
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes moveBackground {
            from {
                background-position: 0 0;
            }
            to {
                background-position: 50px 50px;
            }
        }

/* Testinomials end */

/* =================== Dark Theme Override (appended) =================== */
/* This block overrides earlier variable declarations to apply a darker, richer theme
   without changing individual component rules. Tweak values here to adjust the look. */
:root {
    /* Base tones */
    --primary-light-grey: #0f1720;    /* page surfaces (was light) */
    --secondary-grey:   #121820;    /* panels, subtle gradients */
    --accent-grey:      #9fb0c7;    /* soft cool accent */
    --white:            #f7f9fb;    /* bright text */
    --dark-text:        #e6eef6;    /* primary readable text on dark bg */

    /* Unified greys used in many sections */
    --light-grey:  #e6eef6;
    --medium-grey: #9aa7b5;
    --dark-grey:   #6b7784;
    --black:       #071018;
    --pure-black:  #000000;

    /* Dark theme surfaces and accents */
    --primary-dark:     #0b1220;
    --secondary-dark:   #0f1a2b;
    --tertiary-dark:    #1b2b3a;
    --card-bg:          #0f1724;

    /* Accent / highlight */
    --accent-gold:       #d4af37; /* warm gold for CTAs and highlights */
    --accent-gold-light: #ffd966;

    /* Text */
    --text-light: #e6eef6;
    --text-muted: #9aa7b5;

    /* Transition unchanged */
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Small targeted improvements for contrast (buttons / links) */
.btn-primary {
    background: linear-gradient(135deg, var(--card-bg), var(--secondary-dark));
    color: var(--text-light);
    box-shadow: 0 12px 36px rgba(7,16,24,0.6);
}

.btn-secondary {
    color: var(--text-light);
    border-color: rgba(154,167,181,0.18);
}

/* Make headers/titles pop on dark backgrounds */
.section-title, .banner-title, .service-title {
    color: var(--text-light) !important;
}

/* Footer: prefer deep charcoal background and lighter text */
footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border-top: 1px solid rgba(154,167,181,0.06);
}

.footer-logo-text, .footer-section h3, .footer-description, .footer-section a, .contact-text, .hours-list li {
    color: var(--text-light) !important;
}

/* Slightly brighten social hover */
.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
}

/* Improve card surfaces */
.service-card, .testimonial-card, .stat-item, .faq-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(154,167,181,0.04);
}

/* Ensure small text remains readable */
body, p, a, li, span {
    color: var(--text-light);
}

/* End Dark Theme Override */

/* =================== Visibility fixes for FAQ & Testimonials =================== */
/* Ensure FAQ answers and testimonial cards use dark surfaces and high-contrast text */
.faq-answer {
    background: linear-gradient(180deg, var(--card-bg), var(--secondary-dark)) !important;
    border: 1px solid rgba(154,167,181,0.04) !important;
    color: var(--text-light) !important;
}

.faq-answer-text {
    color: var(--text-light) !important;
}

.faq-question {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    color: var(--text-light) !important;
}

.testimonial-card {
    background: linear-gradient(180deg, var(--card-bg), rgba(11,18,32,0.6)) !important;
    border: 1px solid rgba(154,167,181,0.04) !important;
    color: var(--text-light) !important;
}

.testimonial-text {
    color: var(--text-light) !important;
}

.testimonial-text::before {
    color: rgba(230,238,246,0.08) !important;
}

/* Small tweak: ensure author names/titles are readable */
.author-name, .author-title {
    color: var(--text-light) !important;
}

/* End visibility fixes */

/* =================== FAQ hover visibility fix =================== */
/* Force high-contrast text color and a subtle dark hover background so the question
   remains readable when hovered in the dark theme. The rule uses !important to
   override earlier repeated declarations. */
.faq-question:hover {
    color: var(--text-light) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)) !important;
}

.faq-question:hover .faq-icon {
    box-shadow: 0 6px 16px rgba(154,167,181,0.04);
}

/* End FAQ hover visibility fix */

/* =================== Mobile navigation dark-mode fixes =================== */
/* Ensure mobile nav has an opaque dark background and high-contrast link text
   so buttons/links remain readable on small screens. Kept narrowly scoped to
   avoid changing desktop behavior. */
@media (max-width: 768px) {
    nav {
        /* solid dark surface (not transparent) so text is readable */
        background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%) !important;
        border-top: 3px solid rgba(154,167,181,0.04);
        box-shadow: 0 8px 30px rgba(2,6,12,0.6);
    }

    /* make menu links bright and fully visible */
    nav a {
        color: var(--text-light) !important;
        border-bottom: 1px solid rgba(154,167,181,0.03);
    }

    /* hamburger bars should be visible on dark backgrounds */
    .hamburger span {
        background: var(--text-light) !important;
    }

    /* if any nav links are styled as secondary buttons, ensure they are opaque */
    .nav-menu a.btn-secondary,
    .nav-menu .btn-secondary {
        background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
        color: var(--text-light) !important;
        border: 1px solid rgba(154,167,181,0.06);
        font-size: xx-large;
    }
}

/* End mobile navigation dark-mode fixes */

/* inner page buttons */
 .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease-out;
        }

        .header h1 {
            font-size: 48px;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }

        .header h1 span {
            color: #ffd700;
        }

        .header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Button Grid */
        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .location-btn {
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
            border: 2px solid rgba(255, 215, 0, 0.3);
            padding: 25px 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-height: 150px;
            cursor: pointer;
        }

        .location-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .location-btn:hover::before {
            left: 100%;
        }

        .location-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .location-btn:hover::after {
            opacity: 1;
        }

        .location-btn:hover {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
            border-color: rgba(255, 215, 0, 0.6);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }

        .location-icon {
            font-size: 32px;
            color: #ffd700;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .location-btn:hover .location-icon {
            transform: scale(1.2) rotate(5deg);
            color: #fff;
            text-shadow: 0 0 10px #ffd700;
        }

        .location-name {
            font-size: 18px;
            font-weight: 600;
            color: #fff !important;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .location-btn:hover .location-name {
            color: #ffd700;
            font-size: 20px;
        }

        .location-label {
            font-size: 12px;
            color: rgba(255, 215, 0, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .location-btn:hover .location-label {
            color: #ffd700;
        }

        /* Section Dividers */
        .region-section {
            margin-bottom: 50px;
        }

        .region-title {
            font-size: 24px;
            color: #ffd700;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .region-title i {
            font-size: 28px;
        }

        /* Responsive Grid */
        @media (max-width: 1024px) {
            .location-grid {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 15px;
            }

            .header h1 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .location-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 12px;
            }

            .location-btn {
                padding: 20px 15px;
                min-height: 130px;
            }

            .location-icon {
                font-size: 28px;
            }

            .location-name {
                font-size: 16px;
            }

            .header h1 {
                font-size: 28px;
            }

            .header p {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .location-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 10px;
            }

            .location-btn {
                padding: 15px 10px;
                min-height: 110px;
            }

            .location-icon {
                font-size: 24px;
            }

            .location-name {
                font-size: 14px;
            }

            .header h1 {
                font-size: 24px;
            }

            .region-title {
                font-size: 18px;
            }
        }

        /* Animation */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Back to Home Button */
        .back-home {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #ffd700;
            text-decoration: none;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .back-home:hover {
            color: #fff;
            transform: translateX(-5px);
        }

        .back-home i {
            font-size: 20px;
        }
/* inner page buttons end*/

/* inner page card delhi */
.container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Header Section */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease-out;
        }

        .section-header h2 {
            font-size: 48px;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            font-weight: 700;
        }

        .section-header h2 span {
            color: #ffd700;
        }

        .section-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Service Areas Grid */
        .service-areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        /* Location Card */
        .location-card {
            position: relative;
            height: 320px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            group: hover;
        }

        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
            z-index: 2;
            transition: all 0.4s ease;
        }

        .location-card:hover::before {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
        }

        .location-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1;
        }

        .location-card:hover .location-image {
            transform: scale(1.1) rotate(2deg);
        }

        /* Location Badge */
        .location-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-light-grey) 100%);
            padding: 15px 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            transform: translateY(0);
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
        }

        .location-card:hover .location-badge {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 165, 0, 0.95) 100%);
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
        }

        .location-badge i {
            font-size: 22px;
            color: #0f1720;
            transition: all 0.4s ease;
        }

        .location-card:hover .location-badge i {
            color: #000;
            transform: scale(1.2);
        }

        .location-name {
            font-size: 20px;
            font-weight: 700;
            color: #0f1720 ;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
        }

        .location-card:hover .location-name {
            color: #000;
        }

        /* Hover Overlay Text */
        .location-overlay-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .location-card:hover .location-overlay-text {
            opacity: 1;
        }

        .location-overlay-text h3 {
            font-size: 24px;
            color: #ffd700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .location-overlay-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .service-areas-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }

            .location-card {
                height: 280px;
            }

            .section-header h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .service-areas-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 15px;
            }

            .location-card {
                height: 250px;
            }

            .location-badge {
                padding: 12px 15px;
                bottom: 15px;
                left: 15px;
                right: 15px;
            }

            .location-name {
                font-size: 16px;
            }

            .location-badge i {
                font-size: 18px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .section-header p {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 40px 15px;
            }

            .service-areas-grid {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 12px;
            }

            .location-card {
                height: 200px;
            }

            .location-badge {
                padding: 10px 12px;
                bottom: 12px;
                left: 12px;
                right: 12px;
            }

            .location-name {
                font-size: 14px;
            }

            .location-badge i {
                font-size: 16px;
            }

            .section-header h2 {
                font-size: 24px;
            }

            .section-header p {
                font-size: 14px;
            }

            .section-header {
                margin-bottom: 40px;
            }
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Decorative Elements */
        .decorative-circle {
            position: fixed;
            border: 2px solid rgba(255, 215, 0, 0.05);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .circle-1 {
            width: 400px;
            height: 400px;
            top: -200px;
            right: -200px;
            animation: rotate 20s linear infinite;
        }

        .circle-2 {
            width: 300px;
            height: 300px;
            bottom: -150px;
            left: -150px;
            animation: rotate 15s linear infinite reverse;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
/* inner page card delhi end*/


/* inner page delhi */
/* Section Container */
        .service-slider-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Header */
        .section-header {
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 42px;
            color: #ffd700;
            font-weight: 700;
            margin-bottom: 10px;
            padding-left: 15px;
            border-left: 5px solid #dc143c;
            animation: slideInLeft 0.8s ease-out;
        }

        .section-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            padding-left: 20px;
            margin-top: 10px;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            width: 100%;
            padding: 20px 0;
        }

        /* Slider Wrapper */
        .slider-wrapper {
            overflow: hidden;
            position: relative;
        }

        .slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 10px 0;
        }

        /* Location Button */
        .location-button {
            flex: 0 0 auto;
            min-width: 180px;
            padding: 18px 30px;
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(35, 45, 65, 0.9) 100%);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 50px;
            color: #ffd700;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
        }

        .location-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .location-button:hover::before {
            left: 100%;
        }

        .location-button:hover {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(220, 20, 60, 0.15) 100%);
            border-color: #ffd700;
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(255, 215, 0, 0.3);
            color: #fff;
        }

        .location-button:active {
            transform: translateY(-2px);
        }

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
        }

        .slider-nav:hover {
            background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
        }

        .slider-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        .slider-nav i {
            font-size: 20px;
            color: #1a1a2e;
            font-weight: 900;
        }

        .slider-nav.prev {
            left: -25px;
        }

        .slider-nav.next {
            right: -25px;
        }

        .slider-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            background: linear-gradient(135deg, #555 0%, #777 100%);
        }

        /* Progress Bar */
        .progress-bar-container {
            width: 100%;
            height: 4px;
            background: rgba(255, 215, 0, 0.2);
            border-radius: 2px;
            margin-top: 30px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #ffd700 0%, #dc143c 100%);
            border-radius: 2px;
            transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .section-title {
                font-size: 32px;
            }

            .location-button {
                min-width: 160px;
                padding: 16px 25px;
                font-size: 16px;
            }

            .slider-nav {
                width: 45px;
                height: 45px;
            }

            .slider-nav i {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
            }

            .location-button {
                min-width: 140px;
                padding: 14px 20px;
                font-size: 15px;
            }

            .slider-track {
                gap: 15px;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
            }

            .slider-nav i {
                font-size: 16px;
            }

            .slider-nav.prev {
                left: -20px;
            }

            .slider-nav.next {
                right: -20px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 40px 0;
            }

            .service-slider-section {
                padding: 0 15px;
            }

            .section-title {
                font-size: 24px;
                padding-left: 12px;
                border-left: 4px solid #dc143c;
            }

            .section-subtitle {
                font-size: 14px;
                padding-left: 16px;
            }

            .location-button {
                min-width: 120px;
                padding: 12px 18px;
                font-size: 14px;
            }

            .slider-track {
                gap: 12px;
            }

            .slider-nav {
                width: 35px;
                height: 35px;
            }

            .slider-nav i {
                font-size: 14px;
            }

            .slider-nav.prev {
                left: -15px;
            }

            .slider-nav.next {
                right: -15px;
            }
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .slider-container {
            animation: fadeIn 1s ease-out 0.3s both;
        }
/* inner page delhi end*/


/* banner image */

.banner-section {
    width: 100%;
    min-height: 90vh;
    background-image: url("/images/banner-bg.jpg"); /* change to your image */
    background-size: cover;      /* make it fill the whole banner */
    background-position: center; /* center the image */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

