
         :root {
            --default-color: #041d2d;
            --theme-color: #0095ff;
            --heading-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        
        body {
            font-family: var(--heading-font);
            color: var(--default-color);
            padding-top: 70px;
            overflow-x: hidden;
        }
        
        .main-header {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .main-header.scrolled {
            padding: 5px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        /* Hero Section */
        
        .main-slider-home {
            position: relative;
            overflow: hidden;
            background-color: #000;
        }
        
        .main-slider-home .carousel {
            width: 100%;
            height: 80vh;
            position: relative;
        }
        
        .main-slider-home .carousel-inner {
            height: 100%;
        }
        
        .main-slider-home .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }
        
        .main-slider-home .carousel-item.active {
            opacity: 1;
            z-index: 2;
        }
        
        .image-layer {
            background-size: cover;
            background-position: center;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-color: rgba(0, 0, 0, 0.6);
            background-blend-mode: overlay;
            transition: transform 0.5s ease;
        }
        
        .carousel-item.active .image-layer {
            transform: scale(1.05);
        }
        
        .content-boxed {
            color: white;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            padding: 50px 20px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 15px;
            animation: fadeInUp 1s ease-out;
        }
        
        .content-boxed h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -1px;
        }
        
        .content-boxed h2 {
            font-size: 2.2rem;
            font-weight: 500;
            margin-bottom: 25px;
            color: #f0f0f0;
        }
        
        .content-boxed p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            line-height: 1.7;
            font-weight: 300;
        }
        
        .theme-btn {
            position: relative;
            padding: 15px 40px;
            background: var(--theme-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            z-index: 1;
        }
        
        .theme-btn:hover {
            background: #005fa3;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        /* Carousel Controls */
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            background: none;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            z-index: 3;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            border-radius: 50%;
            width: 40px;
            height: 40px;
            background-size: 50% 50%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .carousel-control-prev-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
        }
        
        .carousel-control-next-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        }
        /* Animation for hero content */
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Navbar Styles */
        
        .main-menu .navigation {
            display: flex;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        .main-menu .navigation li a {
            color: var(--default-color);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 10px 15px;
            transition: color 0.3s;
            display: block;
        }
        
        .main-menu .navigation li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 15px;
            background-color: var(--theme-color);
            transition: width 0.3s;
        }
        
        .main-menu .navigation li a:hover {
            color: var(--theme-color);
        }
        
        .main-menu .navigation li a:hover::after {
            width: calc(100% - 30px);
        }
        /* Services Section */
        
        .services-section {
            padding: 80px 0;
        }
        
        .service-block-view {
            height: 100%;
        }
        
        .service-block-view .inner-box {
            background: var(--theme-color);
            padding: 30px;
            border-radius: 10px;
            color: white;
            height: 100%;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .service-block-view .inner-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: 1;
        }
        
        .service-block-view .inner-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .service-number {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .service-block-view .icon {
            font-size: 40px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .service-block-view h4 a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }
        
        .service-block-view .text {
            margin: 20px 0;
            opacity: 0.9;
            position: relative;
            z-index: 2;
            flex-grow: 1;
        }
        
        .service-block-view .arrow {
            color: white;
            font-size: 18px;
            position: relative;
            z-index: 2;
            margin-top: auto;
        }
        /* About Section */
        
        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
            position: relative;
            overflow: hidden;
        }
        
        .referral-img {
            border-radius: 10px;
            width: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        
        .image:hover .referral-img {
            transform: scale(1.03);
        }
        
        .experience-box {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: var(--theme-color);
            color: white;
            padding: 25px 35px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }
        
        .experience-box .counter {
            font-size: 28px;
            font-weight: 700;
        }
        
        .sec-title .title {
            color: var(--theme-color);
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 600;
        }
        
        .sec-title h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--default-color);
            line-height: 1.3;
            margin-bottom: 20px;
        }
        
        .about-content .text {
            font-size: 1.1rem;
            line-height: 1.8;
            font-weight: 400;
        }
        
        .contact-info-box {
            background: white;
            padding: 20px;
            border-radius: 8px;
            height: 100%;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border-left: 4px solid var(--theme-color);
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .contact-info-box .icon {
            color: var(--theme-color);
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .contact-info-box h4 a {
            color: var(--default-color);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 18px;
        }
        
        .contact-info-box h4 a:hover {
            color: var(--theme-color);
        }
        /* Contact Section Styles */
        
        .contact-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .border.rounded-4 {
            border-radius: 1rem !important;
        }
        
        .shadow-sm {
            box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
        }
        
        .text-primary {
            color: #0095ff !important;
        }
        
        .text-success {
            color: #28a745 !important;
        }
        
        .text-danger {
            color: #dc3545 !important;
        }
        /* Contact Form Styles */
        
        .theme-form {
            margin-bottom: 20px;
        }
        
        .theme-form input,
        .theme-form select,
        .theme-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
            font-family: var(--heading-font);
        }
        
        .theme-form textarea {
            min-height: 150px;
        }
        
        .theme-border {
            border: 1px solid #dee2e6;
            transition: all 0.3s;
        }
        
        .theme-border:focus {
            border-color: var(--theme-color);
            box-shadow: 0 0 0 0.25rem rgba(0, 149, 255, 0.25);
        }
        
        .shadow {
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
        }
        
        .shadow-lg {
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
        }
        
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .btn-style-hover {
            position: relative;
            overflow: hidden;
            padding: 12px 30px;
            background: var(--theme-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .btn-style-hover:hover {
            background: #0077cc;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        /* Footer */
        
        footer {
            background-color: var(--default-color);
            color: white;
            padding: 30px 0 20px;
        }
        
        .copyright {
            text-align: center;
            padding: 10px 0;
        }
        
        .copyright p {
            margin: 0;
            font-size: 14px;
            font-weight: 300;
        }
        /* Let's Connect Section */
        
        .connect-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .connect-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--theme-color);
            display: flex;
            flex-direction: column;
        }
        
        .connect-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .connect-icon {
            font-size: 2.5rem;
            color: var(--theme-color);
            margin-bottom: 20px;
        }
        
        .connect-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--default-color);
            font-size: 1.25rem;
        }
        
        .connect-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
            flex-grow: 1;
            font-weight: 400;
        }
        
        .connect-text a {
            color: var(--default-color);
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .connect-text a:hover {
            color: var(--theme-color);
            text-decoration: underline;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--default-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--theme-color);
        }
        
        .section-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }
        /* Mobile Menu Toggler */
        
        .mobile-nav-toggler {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--default-color);
            transition: all 0.3s;
        }
        
        .mobile-nav-toggler:hover {
            color: var(--theme-color);
        }
        /* Scroll to Top Button */
        
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--theme-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            background: #0077cc;
            transform: translateY(-3px);
        }
        /* Responsive Styles */
        
        @media (max-width: 1199.98px) {
            .content-boxed h1 {
                font-size: 3.5rem;
            }
            .content-boxed h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .main-menu .navigation {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            .main-menu .navigation.show {
                transform: translateY(0);
            }
            .main-menu .navigation li {
                margin: 0;
            }
            .main-menu .navigation li a {
                padding: 12px 0;
                border-bottom: 1px solid #eee;
            }
            .main-menu .navigation li a::after {
                display: none;
            }
            .mobile-nav-toggler {
                display: block;
            }
            .content-boxed h1 {
                font-size: 2.8rem;
            }
            .content-boxed p {
                font-size: 1.2rem;
            }
            .connect-box {
                margin-top: 30px;
            }
            .sec-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767.98px) {
            body {
                padding-top: 60px;
            }
            .content-boxed h1 {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }
            .content-boxed h2 {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }
            .content-boxed p {
                font-size: 1.1rem;
                margin-bottom: 25px;
            }
            .main-slider-home .carousel-item {
                min-height: 60vh;
            }
            .main-slider-home .carousel {
                height: 60vh;
            }
            .service-block-view .inner-box {
                padding: 20px;
            }
            .service-block-view .icon {
                font-size: 32px;
            }
            .border.rounded-4 {
                margin-bottom: 20px;
            }
            .connect-box {
                padding: 25px 20px;
            }
            .connect-box h2 {
                font-size: 22px;
                margin-bottom: 20px;
            }
            .social-icons a {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .experience-box {
                padding: 10px 15px;
                right: 10px;
            }
            .experience-box .counter {
                font-size: 22px;
            }
            .sec-title h2 {
                font-size: 1.8rem;
            }
            .contact-info-box h4 a {
                font-size: 16px;
            }
        }
        
        @media (max-width: 575.98px) {
            .content-boxed h1 {
                font-size: 2rem;
            }
            .content-boxed {
                padding: 30px 15px;
            }
            .theme-btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            .logo-box img {
                max-width: 180px;
            }
            .service-block-view .inner-box {
                margin-bottom: 15px;
            }
            .about-section {
                padding: 60px 0;
            }
            .contact-section {
                padding: 60px 0;
            }
            .connect-box h2 {
                font-size: 20px;
            }
            .connect-icon img {
                width: 50px;
            }
        }
        
        @media (max-width: 400px) {
            .content-boxed h1 {
                font-size: 1.8rem;
            }
            .content-boxed h2 {
                font-size: 1.4rem;
            }
            .logo-box img {
                max-width: 150px;
            }
        }
  