
        :root {
            /* --primary: #FF6B35; */
            --primary: #0262b1;
            --secondary: #2D3047;
            --accent: #FFD166;
            --light: #F8F9FA;
            --dark: #212529;
            /* --gradient: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%); */
            --gradient: linear-gradient(135deg, #0262b1 0%, #30a0fc 100%);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --radius: 12px;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            color: var(--dark);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }
        
        .btn-primary {
            background: var(--gradient);
            border: none;
            border-radius: var(--radius);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: var(--radius);
            padding: 10px 28px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
			background: rgba(255, 255, 255, 0.95);
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--dark);
            position: relative;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: 100%;
        }
        
        .hero {
            padding: 150px 0 100px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%), url('https://images.unsplash.com/photo-1556911220-bff31c812dba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V0C1000,19.4,873.3,97.8,500,97z" fill="%23ffffff"/></svg>');
            background-size: 100% 100px;
            background-position: bottom;
            background-repeat: no-repeat;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #6c757d;
        }
        
        .enquiry-box {
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .enquiry-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }
        
        .section-title {
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .section-title h2 span {
            color: var(--primary);
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: black;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .payment {
            padding: 50px 0;
            background: var(--light);
        }
        
        .payment-image img {
            max-width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .about {
            padding: 100px 0;
        }
        
        .icon-box {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .icon-box i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .icon-box h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .popular-features {
            padding: 100px 0;
            background: var(--light);
        }
        
        .feature-box {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box img {
            width: 80px;
            height: 80px;
            margin-bottom: 25px;
        }
        
        .feature-box h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .all-services {
            padding: 100px 0;
            background: var(--gradient);
            position: relative;
            overflow: hidden;
			margin-bottom: 100px;
        }
        
        .all-services:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V0C1000,19.4,873.3,97.8,500,97z" fill="%23ffffff"/></svg>');
            background-size: 100% 100px;
            background-position: bottom;
            background-repeat: no-repeat;
        }
        
        .services-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: var(--radius);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            align-items: center;
        }
        
        .services-content:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .services-content img {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            border-radius: 8px;
        }
        
        .services-content p {
            margin: 0;
            color: white;
            font-weight: 500;
        }
        
        .blog {
            padding: 100px 0;
        }
        
        .post-box {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .post-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .post-img {
            overflow: hidden;
            height: 220px;
        }
        
        .post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .post-box:hover .post-img img {
            transform: scale(1.1);
        }
        
        .post-date {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin: 20px;
        }
        
        .post-title {
            padding: 0 20px;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .post-box p {
            padding: 0 20px;
            margin-bottom: 20px;
            color: #6c757d;
        }
        
        .readmore {
            display: inline-block;
            padding: 0 20px 20px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }
        
        .cta {
            padding: 100px 0;
            background: var(--secondary);
            color: white;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-left: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .floating-call-banner {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .phone-link, .whatsapp-link {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
        }
        
        .whatsapp-link {
            background: #25D366;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            width: 50px;
            height: 50px;
            padding: 0;
        }
        
        .phone-link:hover, .whatsapp-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* 3D Vector Styles */
        .vector-container {
            position: relative;
            height: 300px;
            perspective: 1000px;
        }
        
        .vector-3d {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.5s ease;
        }
        
        .vector-3d:hover {
            transform: rotateY(10deg) rotateX(5deg);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 140px 0 80px;
                background: none;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .cta h2 {
                font-size: 1.8rem;
            }
            
            .floating-call-banner {
                bottom: 20px;
                right: 20px;
            }
            
            .back-to-top {
                bottom: 20px;
                left: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .cta h2 {
                font-size: 1.5rem;
            }
        }

            
/* Preloader Styles */
#preloader {
  position: fixed;
  z-index: 9999;
  background: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
    width: 250px;
    max-width: 90%;
    margin-bottom: 0px;

}

/* Page Title Section */
.page-title {
    position: relative;
    overflow: hidden;
}

.page-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V0C1000,19.4,873.3,97.8,500,97z" fill="%23ffffff"/></svg>');
    background-size: 100% 100px;
    background-position: bottom;
    background-repeat: no-repeat;
}

.page-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title h2 span {
    color: var(--accent);
}

.page-title h4 {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Contact Section */
.contact {
    background-color: var(--light);
}

.contact-info {
    padding: 30px 20px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.contact-info h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-info p {
    margin-bottom: 0;
    color: #6c757d;
}

/* Form Styling */
.form-check-label a {
    color: var(--primary);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-title h2 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}