@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
            @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Shadows+Into+Light&display=swap');

            * {
                font-family: 'Poppins', sans-serif;
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            html {
                scroll-behavior: smooth;
            }

            .rccheader{
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                padding: 10px 20px;
                background-color: #ffffff;
                position: relative;
                z-index: 1000;
            }

            .rrc{
                font-family: 'Lora', serif;
                font-size: 30px;
                font-weight: bolder;
                margin: 0;
                white-space: nowrap;
            }

            .logo-title{
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .logo {
                height: 60px;
                width: auto; 
            }

            .nav-text {
                list-style: none;
                display: flex;
                align-items: center;
                margin-right: 20px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            }

            .nav-text li {
                margin: 0 20px;
                font-size: 18px;
                font-family:'Poppins',sans-serif;
                position: relative;
            }

            .nav-text a {
                color: #000;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 5px;
                transition: all .40s ease;
            }

            .nav-text a:hover {
                color:#a08e73;
            }

            .dropdown {
                position: relative;
                display: flex;
                align-items: center;
            }

            .dropdown-menu {
                position: absolute;
                top: 100%;
                left: 0;
                background-color: #ffffff;
                box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
                list-style: none;
                padding: 10px 0;
                width: 150px;
                display: none;
                border-radius: 5px;
                z-index: 999;
            }

            .dropdown-menu li {
                padding: 10px;
                width: 100%;
            }

            .dropdown-menu a {
                text-decoration: none;
                color: #333;
                font-size: 16px;
                display: block;
                transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
            }

            .dropdown-menu a:hover {
                color: #8a7a63;
            }

            .dropdown:hover .dropdown-menu {
                display: block;
            }

            .dropdown-icon {
                font-size: 14px;
                transition: transform 0.3s ease-in-out;
                display: inline-block;
                margin-left: 5px;
            }

            .dropdown:hover .dropdown-icon {
                transform: rotate(180deg);
            }

            .mobile-menu-btn {
                display: none;
                background: none;
                border: none;
                font-size: 24px;
                cursor: pointer;
                color: #000;
                padding: 5px;
            }

            .mobile-menu-btn:hover {
                color: #a08e73;
            }

            .mobile-sidebar {
                position: fixed;
                top: 0;
                left: -300px;
                width: 300px;
                height: 100vh;
                background-color: #ffffff;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease-in-out;
                z-index: 1001;
                padding: 20px;
            }

            .mobile-sidebar.active {
                left: 0;
            }

            .mobile-sidebar-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 30px;
                padding-bottom: 20px;
                border-bottom: 1px solid #eee;
            }

            .mobile-sidebar-title {
                font-family: 'Lora', serif;
                font-size: 20px;
                font-weight: bolder;
                color: #000;
            }

            .close-btn {
                background: none;
                border: none;
                font-size: 24px;
                cursor: pointer;
                color: #000;
                padding: 5px;
            }

            .close-btn:hover {
                color: #a08e73;
            }

            .mobile-nav {
                list-style: none;
            }

            .mobile-nav li {
                margin-bottom: 20px;
            }

            .mobile-nav a {
                color: #000;
                text-decoration: none;
                font-size: 18px;
                font-weight: 500;
                display: block;
                padding: 10px 0;
                transition: color 0.3s ease;
            }

            .mobile-nav a:hover {
                color: #a08e73;
            }

            .mobile-dropdown {
                margin-top: 10px;
                padding-left: 20px;
            }

            .mobile-dropdown a {
                font-size: 16px;
                font-weight: 400;
                color: #666;
                padding: 8px 0;
            }

            .mobile-dropdown a:hover {
                color: #8a7a63;
            }

            .mobile-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            }

            .mobile-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .video-container {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                overflow: hidden;
                z-index: -1;
            }
            
            video {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .video-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.3);
                z-index: 1;
            }

            .hero-content {
                position: relative;
                z-index: 3;
                text-align: center;
                margin-top: 15%;
                padding: 0 20px;
            }
            
            .title {
                font-size: 70px;
                color: #fff;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
                margin-bottom: 30px;
            }

            .cta-button {
                display: inline-block;
                padding: 15px 40px;
                background-color: rgba(160, 142, 115, 0.9);
                color: #fff;
                text-decoration: none;
                font-size: 18px;
                font-weight: 600;
                border-radius: 50px;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
                border: 2px solid rgba(255, 255, 255, 0.3);
            }

            .cta-button:hover {
                background-color: rgba(138, 122, 99, 1);
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            }

            .cta-button i {
                margin-left: 8px;
                transition: transform 0.3s ease;
            }

            .cta-button:hover i {
                transform: translateX(5px);
            }

            @media screen and (max-width: 768px) {
                .rccheader {
                    padding: 10px 15px;
                }

                .rrc {
                    font-size: 20px;
                }

                .logo {
                    height: 45px;
                }

                .nav-text {
                    display: none;
                }

                .mobile-menu-btn {
                    display: block;
                }

                .logo-title {
                    gap: 8px;
                }

                .hero-content {
                    margin-top: 35%;
                }

                .title {
                    font-size: 50px;
                }

                .cta-button {
                    font-size: 16px;
                    padding: 12px 30px;
                }
            }

            @media screen and (max-width: 480px) {
                .rrc {
                    font-size: 16px;
                }

                .logo {
                    height: 40px;
                }

                .rccheader {
                    padding: 8px 12px;
                }

                .hero-content {
                    margin-top: 75%;
                }

                .title {
                    font-size: 35px;
                    margin-bottom: 20px;
                }

                .cta-button {
                    font-size: 15px;
                    padding: 12px 25px;
                }
            }

            /* Footer Styles */
            .footer {
                background-color: #ffffff;
                color: #333333;
                padding: 40px 20px 20px;
                position: relative;
                z-index: 2;
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            }

            .footer-container {
                max-width: 1200px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
                margin-bottom: 40px;
            }

            .footer-column {
                display: flex;
                flex-direction: column;
            }

            .footer-title {
                font-family: 'Lora', serif;
                font-size: 24px;
                font-weight: bold;
                margin-bottom: 15px;
                color: #000000;
            }

            .footer-tagline {
                font-size: 14px;
                color: #666666;
                margin-bottom: 20px;
                line-height: 1.6;
            }

            .social-icons {
                display: flex;
                gap: 15px;
            }

            .social-icon {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background-color: #f0f0f0;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #333333;
                text-decoration: none;
                transition: all 0.3s ease;
                font-size: 18px;
            }

            .social-icon:hover {
                background-color: #a08e73;
                color: #ffffff;
                transform: translateY(-3px);
            }

            .footer-heading {
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 20px;
                color: #000000;
            }

            .footer-links {
                list-style: none;
                padding: 0;
            }

            .footer-links li {
                margin-bottom: 12px;
            }

            .footer-links a {
                color: #666666;
                text-decoration: none;
                font-size: 15px;
                transition: color 0.3s ease;
            }

            .footer-links a:hover {
                color: #a08e73;
            }

            .footer-text {
                color: #666666;
                font-size: 15px;
                margin-bottom: 10px;
                line-height: 1.6;
            }

            .footer-bottom {
                border-top: 1px solid #e0e0e0;
                padding-top: 30px;
                text-align: center;
            }

            .footer-bottom p {
                color: #000;
                font-size: 14px;
            }

            @media screen and (max-width: 768px) {
                .footer-container {
                    grid-template-columns: 1fr;
                    gap: 30px;
                }

                .footer {
                    padding: 40px 20px 20px;
                }
            }