
        * {
            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: rgba(255, 255, 255, 0.95);
            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: #333 !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);
        }