:root {
            --primary-blue: #B8E0FF;
            --theme-yellow: #F5D547;
            --light-blue-bg: #D6EFFF;
            --cream-bg: #F5F0E6;
            --text-dark: #1a1a2e;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			
        }
        
        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
            font-family: 'Plus Jakarta Sans', sans-serif !important;
        }
        
        /* Header */
		.header {
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			z-index: 1000;
			background: var(--primary-blue);
			padding: 20px 0;
			transition: all 0.3s ease;
		}

		.header.scrolled {
			box-shadow: 0 2px 20px rgba(0,0,0,0.1);
			padding: 15px 0;
		}

		/* Wide Layout: Logo Left, Menu Center, Buttons Right */
		/* Navbar */
		.navbar {
			display: flex;
			justify-content: space-between;
			align-items: center;
			height: 70px;
		}

		/* Override Bootstrap */
		.navbar-brand img {
			height: 80px !important;
			width: auto !important;
			max-height: unset !important;
			object-fit: contain;
			transform: translateY(-8px);
		}

		/* Navigation Links - Brevon Style */
		.navbar-nav .nav-link {
			color: #000 !important;
			font-weight: 550;
			font-size: 12.5px !important;
			padding: 10px 16px !important;
			position: relative;
			transition: color 0.3s ease;
			font-family: 'Inter', sans-serif !important;
		}

		.navbar-nav .nav-link::after {
			content: '';
			position: absolute;
			bottom: 5px;
			left: 50%;
			width: 0;
			height: 2px;
			background: var(--theme-yellow);
			transition: all 0.3s ease;
			transform: translateX(-50%);
		}

		.navbar-nav .nav-link:hover::after {
			width: 60%;
		}

		/* Header Buttons Section - Brevon Style */
		.header-contact {
			display: flex;
			align-items: center;
			gap: 12px;
		}

		/* Free Call Pill Design - White Pill */
		.free-call-btn {
			display: flex;
			align-items: center;
			background: #fff;
			padding: 8px 20px 8px 8px;
			border-radius: 50px;
			text-decoration: none;
			color: #000;
			font-weight: 600;
			font-size: 14px;
			gap: 10px;
			transition: all 0.3s ease;
		}

		.free-call-btn:hover {
			transform: translateY(-2px);
			box-shadow: 0 5px 15px rgba(0,0,0,0.1);
		}

		.free-call-btn i {
			width: 36px;
			height: 36px;
			background: #25D366;
			color: green;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 13px;
		}

		/* Get In Touch Button - Yellow with Arrow Circle */
		.btn-theme-yellow {
			background: var(--theme-yellow);
			color: #000;
			padding: 14px 28px;
			border-radius: 50px;
			font-weight: 600;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			gap: 12px;
			font-size: 15px;
			transition: all 0.3s ease;
			position: relative;
			overflow: hidden;
		}

		.btn-theme-yellow:hover {
			background: #000;
			color: #fff;
			transform: translateY(-2px);
		}

		/* Toggler Color Fix */
		.navbar-toggler-icon {
			background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
		}
		

		/* Hero Section */
		.hero-section {
			display: flex;
			min-height: 100vh;
			width: 100%;
			background: var(--primary-blue);
			padding-top: 80px;
			position: relative;
			overflow: hidden;
		}

		.hero-left {
			flex: 0 0 50%;
			padding: 100px 5% 80px 8%;
			display: flex;
			flex-direction: column;
			justify-content: center;
			position: relative;
			z-index: 2;
		}

		.hero-title {
			font-size: 72px;
			font-weight: 600;
			letter-spacing: -2px;
			line-height: 1.05;
			color: #000;
			margin-bottom: 25px;
			font-family: 'Inter', 'Segoe UI', sans-serif;
		}

		.hero-text {
			font-size: 17px;
			line-height: 1.7;
			color: #000;
			max-width: 480px;
			margin-bottom: 35px;
		}

		.learn-more-group {
			display: flex;
			align-items: center;
			gap: 12px;
			margin-bottom: 50px;
		}

		.btn-learn {
			background: var(--theme-yellow);
			color: #000;
			padding: 16px 32px;
			border-radius: 50px;
			font-weight: 600;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			gap: 10px;
			font-size: 15px;
			border: none;
			transition: all 0.3s ease;
		}

		.btn-learn:hover {
			background: #000;
			color: #fff;
		}

		.btn-learn-arrow {
			width: 52px;
			height: 52px;
			background: #fff;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #000;
			text-decoration: none;
			font-size: 16px;
			transition: all 0.3s ease;
			box-shadow: 0 4px 15px rgba(0,0,0,0.1);
		}

		.btn-learn-arrow:hover {
			background: var(--theme-yellow);
		}

		.hero-vector {
			position: absolute;
			bottom: 200px;
			left: 50%;
			width: 100px;
			opacity: 0.9;
		}

		.social-links {
			display: flex;
			align-items: center;
			gap: 15px;
		}

		.social-links span {
			font-weight: 600;
			font-size: 14px;
			color: #000;
		}

		.social-links a {
			color: #000;
			text-decoration: none;
			font-size: 16px;
			transition: all 0.3s ease;
			width: 40px;
			height: 40px;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.social-links a:hover {
			background: #000;
			color: #fff;
		}

		/* Hero Right - Image Side */
		.hero-right {
			flex: 0 0 50%;
			position: relative;
			background-image: url('../img/hero-image-1-1.webp');
			background-size: cover;
			background-position: center;
			min-height: 600px;
		}

		/* Counter Box - Positioned at Bottom Left of Image, overlapping boundary */
		.hero-counter-box {
			position: absolute;
			bottom: 0;
			left: 0;
			display: flex;
			align-items: stretch;
			transform: translateX(-32%); /* Change this percentage to adjust overlap */
			z-index: 10;
		}

		/* Yellow Box - Left Side */
		.counter-left {
			background: var(--theme-yellow);
			padding: 45px 50px;
			min-width: 200px;
			display: flex;
			flex-direction: column;
			justify-content: center;
		}

		.counter-left h2 {
			font-size: 56px;
			font-weight: 800;
			margin: 0;
			line-height: 1;
			color: #000;
			font-family: 'Inter', sans-serif;
		}

		.counter-left p {
			margin: 12px 0 0;
			font-size: 15px;
			font-weight: 600;
			line-height: 1.5;
			color: #000;
		}

		/* Glass Box - Right Side */
		.counter-right {
			background: rgba(0, 0, 0, 0.25);
			backdrop-filter: blur(15px);
			-webkit-backdrop-filter: blur(15px);
			padding: 35px 40px;
			display: flex;
			flex-direction: column;
			justify-content: center;
			min-width: 280px;
		}
		.avatar-stack {
			display: flex;
			margin-bottom: 15px;
		}

		.avatar {
			width: 50px;
			height: 50px;
			border-radius: 50%;
			border: 3px solid #fff;
			margin-left: -12px;
			object-fit: cover;
			transition: all 0.3s ease;
			position: relative;
			z-index: 1;
		}

		.avatar:first-child {
			margin-left: 0;
		}

		.avatar:hover {
			transform: scale(1.15) translateY(-5px);
			z-index: 10;
			box-shadow: 0 10px 20px rgba(0,0,0,0.3);
		}

		.avatar-add {
			width: 50px;
			height: 50px;
			background: var(--theme-yellow);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-weight: 700;
			border: 3px solid #fff;
			margin-left: -12px;
			font-size: 18px;
			color: #000;
			cursor: pointer;
			transition: all 0.3s ease;
			position: relative;
			z-index: 1;
		}

		.avatar-add:hover {
			background: #000;
			color: #fff;
			transform: scale(1.15) rotate(90deg);
			z-index: 10;
			box-shadow: 0 10px 20px rgba(0,0,0,0.3);
		}
		
		.glass-text {
			font-size: 15px;
			color: #fff;
			line-height: 1.6;
			margin: 0;
			font-weight: 500;
		}

		/* Responsive */
		@media (max-width: 1200px) {
			.hero-title {
				font-size: 56px;
			}
			
			.hero-counter-box {
				transform: translateX(-25%);
			}
		}

		@media (max-width: 991px) {
			.hero-section {
				flex-direction: column;
			}
			
			.hero-left, .hero-right {
				flex: 0 0 100%;
				width: 100%;
			}
			
			.hero-right {
				min-height: 500px;
			}
			
			.hero-counter-box {
				position: relative;
				transform: translateX(0);
				width: 100%;
			}
			
			.counter-left, .counter-right {
				flex: 1;
			}
			
			.hero-title {
				font-size: 48px;
			}
		}
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: #fff;
        }
        
        .section-subtitle {
            display: inline-block;
            background: var(--primary-blue);
            color: #000;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 50px;
            font-family: 'Exo', sans-serif;
        }
        
        .feature-card {
            background: var(--primary-blue);
            padding: 35px;
            border-radius: 20px;
            border: 1px solid #f0f0f0;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--cream-bg);
            transform: translateY(100%);
            transition: transform 0.4s ease;
            z-index: 0;
        }
        
        .feature-card:hover::before {
            transform: translateY(0);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--theme-yellow);
        }
        
        .feature-card > * {
            position: relative;
            z-index: 1;
        }
        
        .feature-card.active {
			background: var(--primary-blue);

        }
        
        .feature-card.active:hover {
            
			background:#ffc107;
        }
        
        .feature-icon {
            width: 65px;
            height: 65px;
           	background:#ffc107;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: #000;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background: var(--theme-yellow);
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: #6B7280;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .arrow-btn {
            width: 45px;
            height: 45px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .arrow-btn:hover {
            background: var(--theme-yellow);
            transform: translateX(5px) rotate(45deg);
        }
        
        /* Marquee Section */
        .marquee-section {
            background: var(--theme-yellow);
            padding: 25px 0;
            overflow: hidden;
            position: relative;
        }
        
        .marquee-content {
            display: flex;
            gap: 80px;
            white-space: nowrap;
            animation: marquee 25s linear infinite;
        }
        
        .marquee-section:hover .marquee-content {
            animation-play-state: paused;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .marquee-item {
            font-size: 48px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: transparent;
            -webkit-text-stroke: 1.5px #000;
            display: flex;
            align-items: center;
            gap: 25px;
            transition: all 0.3s ease;
            cursor: default;
        }
        
        .marquee-item:hover {
            color: #000;
            -webkit-text-stroke: 0;
        }
        
        .marquee-item::after {
            content: "*";
            font-size: 40px;
            color: #000;
            -webkit-text-stroke: 0;
            animation: rotate 3s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: var(--cream-bg);
        }
        
        .about-image {
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 30px;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .counter-box-yellow {
            background: var(--theme-yellow);
            padding: 30px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .counter-box-yellow:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(245, 213, 71, 0.3);
        }
        
        .counter-box-yellow small {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .counter-box-yellow h3 {
            font-size: 48px;
            font-weight: 800;
            margin: 10px 0;
        }
        
        .about-icon-item {
            display: flex;
            gap: 15px;
            padding: 20px;
            background: #fff;
            border-radius: 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .about-icon-item:hover {
            border-color: var(--theme-yellow);
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        
        .about-icon-item i {
            font-size: 32px;
            color: #000;
            transition: transform 0.3s ease;
        }
        
        .about-icon-item:hover i {
            transform: scale(1.2) rotate(10deg);
            color: var(--theme-yellow);
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: #fff;
        }
        
        .service-item {
            display: flex;
            align-items: center;
            padding: 30px 0;
            border-top: 1px solid #e5e5e5;
            gap: 30px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--cream-bg);
            transition: width 0.4s ease;
            z-index: 0;
        }
        
        .service-item:hover::before {
            width: 100%;
        }
        
        .service-item:last-child {
            border-bottom: 1px solid #e5e5e5;
        }
        
        .service-item > * {
            position: relative;
            z-index: 1;
        }
        
        .service-thumb {
            width: 180px;
            height: 120px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .service-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-item:hover .service-thumb img {
            transform: scale(1.1);
        }
        
        .service-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }
        
        .service-item:hover .service-content h3 {
            color: var(--theme-yellow);
        }
        
        .service-content p {
            color: #6B7280;
            font-size: 15px;
            margin: 0;
        }
        
        .service-arrow {
            margin-left: auto;
            width: 50px;
            height: 50px;
            border: 1px solid #e5e5e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-arrow::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--theme-yellow);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }
        
        .service-arrow:hover::before {
            width: 100%;
            height: 100%;
        }
        
        .service-arrow:hover {
            border-color: var(--theme-yellow);
            transform: rotate(45deg);
        }
        
        .service-arrow i {
            position: relative;
            z-index: 1;
        }
        
        /* Counter Section */
        .counter-section {
            padding: 100px 0;
            background: var(--cream-bg);
        }
        
        .counter-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
        }
        
        .counter-card:hover {
            transform: translateY(-10px);
            border-color: var(--theme-yellow);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .counter-icon {
            width: 60px;
            height: 60px;
            background: var(--theme-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            transition: all 0.3s ease;
        }
        
        .counter-card:hover .counter-icon {
            transform: scale(1.2) rotate(360deg);
        }
        
        .counter-card h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .counter-card p {
            color: #6B7280;
            font-size: 15px;
            margin: 0;
        }
        
        /* Projects Section */
        .projects-section {
            padding: 100px 0;
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 200px;
            font-weight: 800;
            color: rgba(0,0,0,0.03);
            white-space: nowrap;
            pointer-events: none;
            z-index: 0;
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.03; }
            50% { opacity: 0.06; }
        }
        
        .project-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            position: relative;
            z-index: 1;
        }
        
        .project-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .project-card.tall {
            grid-row: span 2;
        }
        
        .project-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover img {
            transform: scale(1.1);
        }
        
        .project-card.tall img {
            height: 585px;
        }
        
        .project-info {
            padding: 25px;
            position: relative;
        }
        
        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .project-header h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            transition: color 0.3s ease;
        }
        
        .project-card:hover .project-header h3 {
            color: var(--theme-yellow);
        }
        
        .project-year {
            color: #9CA3AF;
            font-weight: 500;
        }
        
        .project-tags {
            display: flex;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .project-tags li {
            background: var(--cream-bg);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .project-card:hover .project-tags li {
            background: var(--theme-yellow);
        }
        
        .explore-circle {
            width: 130px;
            height: 130px;
            background: var(--theme-yellow);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin: 50px auto 0;
            text-decoration: none;
            color: #000;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .explore-circle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: #000;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
        }
        
        .explore-circle:hover::before {
            width: 150%;
            height: 150%;
        }
        
        .explore-circle:hover {
            color: #fff;
            transform: scale(1.1);
        }
        
        .explore-circle span,
        .explore-circle i {
            position: relative;
            z-index: 1;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: var(--cream-bg);
        }
        
        .testimonial-card {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--theme-yellow);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .quote-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-blue);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover .quote-icon {
            background: var(--theme-yellow);
            transform: rotate(10deg) scale(1.1);
        }
        
        .stars {
            color: var(--theme-yellow);
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .stars i {
            animation: starPulse 2s ease-in-out infinite;
        }
        
        .stars i:nth-child(2) { animation-delay: 0.1s; }
        .stars i:nth-child(3) { animation-delay: 0.2s; }
        .stars i:nth-child(4) { animation-delay: 0.3s; }
        .stars i:nth-child(5) { animation-delay: 0.4s; }
        
        @keyframes starPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        /* Blog Section */
        .blog-section {
            padding: 100px 0;
            background: #fff;
        }
        
        .blog-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        }
        
        .blog-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 25px;
            background: #fff;
            position: relative;
        }
        
        .blog-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .blog-meta a {
            color: #000;
            text-decoration: none;
            font-weight: 600;
            position: relative;
        }
        
        .blog-meta a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--theme-yellow);
            transition: width 0.3s ease;
        }
        
        .blog-meta a:hover::after {
            width: 100%;
        }
        
        .blog-content h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
        
        .blog-card:hover .blog-content h3 {
            color: var(--theme-yellow);
        }
        
        .read-more {
            color: #000;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .read-more::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--theme-yellow);
            transition: width 0.3s ease;
        }
        
        .read-more:hover {
            gap: 15px;
        }
        
        .read-more:hover::after {
            width: 100%;
        }
        
        /* Brands Section */
        .brands-section {
            padding: 60px 0;
            background: var(--cream-bg);
        }
        
        .brand-item {
            background: #fff;
            padding: 35px 25px;
            border-radius: 15px;
            text-align: center;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: #999;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .brand-item:hover {
            border-color: var(--theme-yellow);
            color: #000;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        /* Footer */
        .footer {
            background: var(--light-blue-bg);
            color: #1a1a2e;
            padding: 80px 0 30px;
            border-top: 3px solid var(--theme-yellow);
        }
        
        .footer-logo {
            max-height: 60px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .footer-logo:hover {
            transform: scale(1.05);
        }
        
        .footer h5 {
            color: #1a1a2e;
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 16px;
            position: relative;
            display: inline-block;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--theme-yellow);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #4a5568;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
        
        .footer-links a::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 8px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            font-size: 10px;
            color: var(--theme-yellow);
        }
        
        .footer-links a:hover {
            color: #000;
            padding-left: 15px;
        }
        
        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }
        
        .social-icons-footer {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .social-icons-footer a {
            width: 40px;
            height: 40px;
            background: #3B82F6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-icons-footer a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--theme-yellow);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }
        
        .social-icons-footer a:hover::before {
            width: 100%;
            height: 100%;
        }
        
        .social-icons-footer a:hover {
            color: #000;
            transform: translateY(-3px);
        }
        
        .social-icons-footer a i {
            position: relative;
            z-index: 1;
        }
        
        .footer-bottom {
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--theme-yellow);
            color: #000;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #000;
            color: #fff;
            transform: translateY(-5px);
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-section {
                flex-direction: column;
            }
            
            .hero-title {
                font-size: 42px;
            }
            
            .hero-right {
                min-height: 400px;
            }
            
            .project-grid {
                grid-template-columns: 1fr;
            }
            
            .project-card.tall {
                grid-row: span 1;
            }
            
            .project-card.tall img {
                height: 280px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 32px;
            }
            
            .header-contact {
                display: none;
            }
            
            .service-item {
                flex-direction: column;
                text-align: center;
            }
            
            .service-arrow {
                margin: 15px auto 0;
            }
        }
		#header,
		#about,
		#services,
		#blog {
		  scroll-margin-top: 80px;
		}
		
		/* ZEN MEGA FOOTER STYLES */
  :root {
    --zen-primary: #4A90E2;
    --zen-primary-light: #87CEEB;
    --zen-secondary: #00C9FF;
    --zen-accent: #7B68EE;
    --zen-bg: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #E1F5FE 100%);
    --zen-surface: rgba(255, 255, 255, 0.7);
    --zen-text: #1a365d;
    --zen-text-muted: #4a5568;
    --zen-border: rgba(255, 255, 255, 0.5);
    --zen-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    --zen-radius: 16px;
  }

  .zen-mega-footer {
    width: 100%;
    position: relative;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--zen-bg);
    overflow: hidden;
  }

  /* Decorative Wave */
  .zen-footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
  }

  .zen-footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Container */
  .zen-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  /* Main Footer Area */
  .zen-footer-main {
    padding: 80px 0 40px;
    position: relative;
  }

  /* CTA Section */
  .zen-footer-cta {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    backdrop-filter: blur(10px);
    border: 1px solid var(--zen-border);
    border-radius: var(--zen-radius);
    padding: 40px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: var(--zen-shadow);
    position: relative;
    overflow: hidden;
  }

  .zen-footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74,144,226,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }

  .zen-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--zen-text);
    margin: 0 0 10px 0;
    line-height: 1.2;
  }

  .zen-cta-desc {
    color: var(--zen-text-muted);
    font-size: 1.1rem;
    margin: 0;
    max-width: 500px;
  }

  .zen-cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .zen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .zen-btn-primary {
    background: linear-gradient(135deg, var(--zen-primary), var(--zen-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(74,144,226,0.4);
  }

  .zen-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74,144,226,0.6);
  }

  .zen-btn-secondary {
    background: rgba(255,255,255,0.8);
    color: var(--zen-text);
    border-color: rgba(74,144,226,0.3);
  }

  .zen-btn-secondary:hover {
    background: white;
    border-color: var(--zen-primary);
    transform: translateY(-2px);
  }

  /* Main Grid */
  .zen-footer-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    margin-bottom: 40px;
  }

  /* Brand Column */
  .zen-brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .zen-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--zen-text);
  }

  .zen-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--zen-primary), var(--zen-secondary));
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    box-shadow: 0 4px 15px rgba(74,144,226,0.3);
  }

  .zen-logo-icon svg {
    width: 28px;
    height: 28px;
  }

  .zen-logo-main {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--zen-text), var(--zen-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .zen-logo-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--zen-text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .zen-brand-desc {
    color: var(--zen-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
  }

  /* Contact Cards */
  .zen-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .zen-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.6);
    border: 1px solid var(--zen-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .zen-contact-card:hover {
    background: white;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .zen-contact-card.zen-whatsapp:hover {
    border-color: #25D366;
    background: rgba(37,211,102,0.05);
  }

  .zen-cc-icon {
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
  }

  .zen-cc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .zen-cc-label {
    font-size: 0.75rem;
    color: var(--zen-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
  }

  .zen-cc-value {
    font-size: 0.95rem;
    color: var(--zen-text);
    font-weight: 700;
  }

  /* Social Row */
  .zen-social-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }

  .zen-social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.6);
    border: 1px solid var(--zen-border);
    border-radius: 12px;
    color: var(--zen-text-muted);
    transition: all 0.3s ease;
  }

  .zen-social-link svg {
    width: 20px;
    height: 20px;
  }

  .zen-social-link:hover {
    background: var(--zen-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(74,144,226,0.4);
    border-color: transparent;
  }

  /* Links Columns */
  .zen-links-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .zen-link-group {
    padding: 20px;
    background: rgba(255,255,255,0.4);
    border-radius: var(--zen-radius);
    border: 1px solid var(--zen-border);
    transition: all 0.3s ease;
  }

  .zen-link-group:hover {
    background: rgba(255,255,255,0.7);
    transform: translateY(-2px);
    box-shadow: var(--zen-shadow);
  }

  .zen-group-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--zen-text);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(74,144,226,0.2);
    position: relative;
  }

  .zen-group-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--zen-primary), var(--zen-secondary));
    border-radius: 2px;
  }

  .zen-subgroups {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .zen-subgroup h4 {
    font-size: 0.8rem;
    color: var(--zen-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
    font-weight: 700;
  }

  .zen-subgroup ul,
  .zen-simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .zen-subgroup a,
  .zen-simple-list a {
    color: var(--zen-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 2px 0;
  }

  .zen-subgroup a:hover,
  .zen-simple-list a:hover {
    color: var(--zen-primary);
    transform: translateX(4px);
  }

  /* Address Bar */
  .zen-address-bar {
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--zen-border);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
  }

  .zen-address-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--zen-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .zen-address-item svg {
    flex-shrink: 0;
    color: var(--zen-primary);
    margin-top: 2px;
  }

  /* Bottom Bar */
  .zen-footer-bottom {
    background: rgba(255,255,255,0.8);
    border-top: 1px solid var(--zen-border);
    padding: 24px 0;
    backdrop-filter: blur(10px);
  }

  .zen-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--zen-text-muted);
  }

  .zen-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .zen-bottom-links a {
    color: var(--zen-text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .zen-bottom-links a:hover {
    color: var(--zen-primary);
  }

  .zen-dot {
    opacity: 0.5;
  }

  .zen-credits a {
    color: var(--zen-primary);
    text-decoration: none;
    font-weight: 600;
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .zen-footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .zen-brand-col {
      max-width: 600px;
    }
    
    .zen-links-col {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .zen-footer-cta {
      flex-direction: column;
      text-align: center;
      padding: 30px 24px;
    }
    
    .zen-cta-title {
      font-size: 1.5rem;
    }
    
    .zen-links-col {
      grid-template-columns: 1fr;
    }
    
    .zen-bottom-content {
      flex-direction: column;
      text-align: center;
    }
    
    .zen-address-item {
      flex-direction: column;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .zen-cta-buttons {
      flex-direction: column;
      width: 100%;
    }
    
    .zen-btn {
      width: 100%;
      justify-content: center;
    }
  }