
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            overflow-x: hidden;
        }

        .hero-container {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .video-background video {
            position: absolute;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.3s;
            animation-fill-mode: both;
        }

        .cta-button {
            padding: 15px 30px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.6s;
            animation-fill-mode: both;
        }

        .cta-button:hover {
            background-color: #2980b9;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            opacity: 0.8;
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-15px);
            }
            60% {
                transform: translateY(-7px);
            }
        }

        /* Media queries */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 0.9rem;
            }
            .cta-button {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
        }
  




        .navbar {
            background-color: #2c3e50;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .nav-link {
            font-weight: 500;
            color: #fff !important;
            margin: 0 10px;
            padding-bottom: 4px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #d4a373;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: #d4a373 !important;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: #d4a373 !important;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .btn-consultation {
            background-color: #d4a373;
            color: white;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 500;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-consultation:hover {
            background-color: #c69c6d;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .search-icon {
            color: #333;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .search-icon:hover {
            color: #d4a373;
        }





         /* Footer Styles */
         footer {
            background-color: #212529;
            color: #e9ecef;
            padding: 70px 0 20px;
            position: relative;
        }
        
        .footer-heading {
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            color: #ffffff;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            bottom: -10px;
            left: 0;
            background-color: #d4a373;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s, transform 0.3s;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: #d4a373;
            transform: translateX(3px);
        }
        
        .footer-contact p {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            color: #adb5bd;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: #d4a373;
        }
        
        .social-icons {
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background-color: rgba(212, 163, 115, 0.2);
            color: #d4a373;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: #d4a373;
            color: #212529;
            transform: translateY(-3px);
        }
        
        .newsletter-input {
            border-radius: 30px 0 0 30px;
            border-color: #495057;
            padding-left: 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            color: #e9ecef;
        }
        
        .newsletter-input::placeholder {
            color: #adb5bd;
        }
        
        .newsletter-input:focus {
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: none;
            color: #ffffff;
        }
        
        .newsletter-btn {
            background-color: #d4a373;
            color: white;
            border-radius: 0 30px 30px 0;
            border: none;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background-color: #c69c6d;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 50px;
            color: #adb5bd;
        }
        
        .footer-logo {
            font-weight: 600;
            letter-spacing: 1px;
            color: #ffffff;
            text-decoration: none;
            font-size: 1.5rem;
        }
        
        .footer-logo:hover {
            color: #d4a373;
        }
        
        .text-muted {
            color: #adb5bd !important;
        }
        
        .back-to-top {
            position: absolute;
            right: 30px;
            top: -25px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #d4a373;
            color: #212529;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }






        .feature-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        
        .stats-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--accent);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 2rem;
            margin: 4rem 0;
        }
        
        .cta-section h2 {
            font-weight: 700;
        }



        .testimonials-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .testimonial-content {
            padding: 20px;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .client-details h5 {
            margin: 0;
            font-weight: 600;
        }
        
        .client-details p {
            margin: 0;
            color: #6c757d;
        }
        
        .quote-icon {
            color: #e9ecef;
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .section-title {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .section-title h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #0d6efd;
        }
        




        .video-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #212529;
            width: 100%;
        }
        
        .video-source {
            width: 100px;
            max-width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 8px; /* Optional */
        }

        .video-source-1 {
            max-width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 8px; /* Optional */
        }


/*===============Floating Image Section===============*/

.floating-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 600px;
        }

        .floating-objects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-object {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite linear;
        }

        .floating-object.shield {
            width: 60px;
            height: 60px;
            background: #007bff;
            clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
        }

        .floating-object.lock {
            width: 40px;
            height: 50px;
            background: #28a745;
            border-radius: 10px 10px 5px 5px;
            position: relative;
        }

        .floating-object.lock::before {
            content: '';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 25px;
            height: 25px;
            border: 5px solid #28a745;
            border-radius: 50%;
            background: transparent;
        }

        .floating-object.document {
            width: 45px;
            height: 55px;
            background: #17a2b8;
            border-radius: 3px;
            position: relative;
        }

        .floating-object.document::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            width: 35px;
            height: 3px;
            background: rgba(255,255,255,0.3);
            border-radius: 1px;
            box-shadow: 0 8px 0 rgba(255,255,255,0.3), 0 16px 0 rgba(255,255,255,0.3);
        }

        .floating-object.circle {
            width: 30px;
            height: 30px;
            background: #ffc107;
            border-radius: 50%;
        }

        .floating-object.diamond {
            width: 35px;
            height: 35px;
            background: #dc3545;
            transform: rotate(45deg);
        }

        .floating-object.hexagon {
            width: 40px;
            height: 40px;
            background: #6f42c1;
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
        }

        @keyframes float {
            from {
                transform: translateY(100vh) rotate(0deg);
            }
            to {
                transform: translateY(-100px) rotate(360deg);
            }
        }

        .floating-object:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
        .floating-object:nth-child(2) { left: 20%; animation-delay: -2s; animation-duration: 20s; }
        .floating-object:nth-child(3) { left: 30%; animation-delay: -4s; animation-duration: 30s; }
        .floating-object:nth-child(4) { left: 40%; animation-delay: -6s; animation-duration: 18s; }
        .floating-object:nth-child(5) { left: 50%; animation-delay: -8s; animation-duration: 22s; }
        .floating-object:nth-child(6) { left: 60%; animation-delay: -10s; animation-duration: 26s; }
        .floating-object:nth-child(7) { left: 70%; animation-delay: -12s; animation-duration: 24s; }
        .floating-object:nth-child(8) { left: 80%; animation-delay: -14s; animation-duration: 28s; }
        .floating-object:nth-child(9) { left: 90%; animation-delay: -16s; animation-duration: 21s; }
        .floating-object:nth-child(10) { left: 15%; animation-delay: -18s; animation-duration: 23s; }
        .floating-object:nth-child(11) { left: 35%; animation-delay: -20s; animation-duration: 19s; }
        .floating-object:nth-child(12) { left: 65%; animation-delay: -22s; animation-duration: 27s; }

        .section-content {
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-weight: bold;
            color: #343a40;
            margin-bottom: 1rem;
        }

        .video-source-1 {
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .floating-object {
                opacity: 0.05;
            }
        }
/*===============END Floating Image Section===============*/






/*===============How it works Progress Section===============*/
.section-padding {
            padding: 80px 0;
        }
        
        .progress-container {
            position: relative;
            margin: 60px 0;
        }
        
        .progress-bar-custom {
            height: 8px;
            background: linear-gradient(90deg, #007bff 0%, #007bff 25%, #e9ecef 25%, #e9ecef 50%, #e9ecef 50%, #e9ecef 75%, #e9ecef 75%, #e9ecef 100%);
            border-radius: 10px;
            margin: 40px 0;
            position: relative;
            transition: all 0.8s ease;
        }
        
        .progress-bar-custom.step-2 {
            background: linear-gradient(90deg, #28a745 0%, #28a745 50%, #e9ecef 50%, #e9ecef 75%, #e9ecef 75%, #e9ecef 100%);
        }
        
        .progress-bar-custom.step-3 {
            background: linear-gradient(90deg, #28a745 0%, #28a745 75%, #e9ecef 75%, #e9ecef 100%);
        }
        
        .progress-bar-custom.step-4 {
            background: linear-gradient(90deg, #28a745 0%, #28a745 100%);
        }
        
        .step-indicator {
            position: absolute;
            top: -20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e9ecef;
            border: 4px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #6c757d;
            transition: all 0.3s ease;
            z-index: 2;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .step-indicator.active {
            background: #007bff;
            color: white;
            transform: scale(1.1);
        }
        
        .step-indicator.completed {
            background: #28a745;
            color: white;
        }
        
        .step-indicator:nth-child(1) { left: 0%; transform: translateX(-50%); }
        .step-indicator:nth-child(2) { left: 33.33%; transform: translateX(-50%); }
        .step-indicator:nth-child(3) { left: 66.66%; transform: translateX(-50%); }
        .step-indicator:nth-child(4) { left: 100%; transform: translateX(-50%); }
        
        .step-content {
            margin-top: 60px;
        }
        
        .step-item {
            text-align: center;
            padding: 20px;
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        
        .step-item.active {
            opacity: 1;
            transform: translateY(-10px);
        }
        
        .step-item.completed {
            opacity: 0.8;
        }
        
        .step-item h4 {
            color: #333;
            margin: 15px 0;
            font-weight: 600;
        }
        
        .step-item.active h4 {
            color: #007bff;
        }
        
        .step-item.completed h4 {
            color: #28a745;
        }
        
        .btn-apply-now {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }
        
        .btn-apply-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
            color: white;
        }
        
        .control-buttons {
            text-align: center;
            margin: 30px 0;
        }
        
        .control-btn {
            background: #f8f9fa;
            border: 2px solid #dee2e6;
            color: #495057;
            padding: 8px 16px;
            margin: 0 5px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .control-btn:hover {
            background: #007bff;
            color: white;
            border-color: #007bff;
        }
        
        .control-btn.active {
            background: #007bff;
            color: white;
            border-color: #007bff;
        }
        
        @media (max-width: 768px) {
            .step-indicator {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            
            .progress-bar-custom {
                height: 6px;
                margin: 30px 0;
            }
            
            .step-content {
                margin-top: 40px;
            }
            
            .step-item {
                margin-bottom: 30px;
            }
        }
/*===============End How it works Progress Section===============*/





/*===============BreadCrumb Section===============*/

.breadcrumb-section {
      height: 50vh;
      background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                  url('img/222.jpg') no-repeat center center;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .breadcrumb {
      background: transparent;
    }

    .breadcrumb-item + .breadcrumb-item::before {
      color: #fff;
    }

    .breadcrumb a {
      color: #fff;
      text-decoration: underline;
    }
/*===============End BreadCrumb Section===============*/