@font-face {
    font-family: 'Ringside';
    src: url('../RingsideRegular-Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ringside';
    src: url('../RingsideRegular-Med.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ringside';
    src: url('../RingsideRegular-Semi.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #8B0000;
    --secondary-color: #ff3036;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
}

body {
    /* font-family: "Lato", sans-serif; */
    font-family: 'Ringside';
    line-height: 1.6;
    
}
.fs-17 {
    font-size: 17px;
}
.bg-web-g {
    background:#f5f5f5;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color); 
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);    
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(26, 26, 26, 0.1);
}
p{
    color: #393939;
    line-height: 1.8;
    font-size: 16px;
}
/* .serif-font {
    font-family: "Playfair Display", serif;
} */

section {
    padding-top: 80px;
}

/* Hero Slider Styles */
.hero-slider {
    /* height: 450px; min-height: 450px; */
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    height: 100vh;
}

.heroSwiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(3 10 0 / 42%) 4.44%, rgb(0 0 0 / 0%) 55.06%, rgb(0 0 0 / 52%) 76.92%);
    z-index: 1;
    /* background: linear-gradient(180deg, rgba(3, 10, 0, 0.75) 4.44%, rgba(0, 0, 0, 0.05) 22.21%); */
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.slide-button {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.swiper-slide-active .slide-title,
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-button {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Buttons */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.hero-nav.prev {
    left: 30px;
}

.hero-nav.next {
    right: 30px;
}

/* Hero Content Styles */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 0 5% 50px 5%;
}

.hero-text {
    max-width: 60%;
    color: white;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}
.hero-play-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.play-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    border: 4px solid #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 25px solid #000;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    height: 70%;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.video-modal-close:hover {
    color: var(--secondary-color);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Side Menu Styles */
.side-menu {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 3000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.side-menu.right {
    right: 0;
    transform: translateX(100%);
}

.side-menu.active {
    transform: translateX(0);
}

/* Stop body scroll when side menu is open */
body.menu-open {
    overflow: hidden;
}

.side-menu-header {
    padding: 3rem 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.side-menu-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.side-menu-logo i {
    color: var(--secondary-color);
    margin-right: 10px;
}
/* 
.side-menu-logo img {
    height: 36px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
} */

.side-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #000000;
    font-size: 2.5rem;
    cursor: pointer;
}

.side-menu-content {
    padding: 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.side-menu-section {
    margin-bottom: 2rem;
}

.side-menu-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.side-menu-links a {
    display: block;
    color: #000000;
    text-decoration: none;
    padding: 1rem 0;
    font-size: 2rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.side-menu-links a:hover {
    color: var(--primary-color);
}

.side-menu-contact {
    color: #000000;
}

.side-menu-contact p {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.side-menu-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

/* Sidebar social icons */
.side-menu-social {
    display: flex;
    gap: 12px;
    margin-top: 0.5rem;
}

.side-menu-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.5rem;
}

.side-menu-social a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #111111;
}

/* Sidebar CTA */
.side-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--secondary-color);
    color: #111111;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    margin-top: 0.75rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.side-menu-cta i {
    font-size: 1.3rem;
}

.side-menu-cta:hover {
    background: #B8941F;
    color: #111111;
    transform: translateY(-1px);
}

/* Menu Toggle Buttons */
/* Removed old menu toggle styles - no longer needed */

/* Removed old book now button styles - no longer needed */


/* Header Logo */
.header-logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-logo i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.header-logo img {
    height: 45px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Logo switching on scroll */
.logo-default {
    display: block;
    transition: all 0.3s ease;
}

.logo-scroll {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

body.scrolled .logo-default {
    display: none;
}

body.scrolled .logo-scroll {
    display: block;
}

/* Sticky logo image */
.header-logo img.logo-sticky {
    display: none;
    transition: all 0.3s ease;
}

body.scrolled .header-logo img.logo-sticky {
    display: block;
}

body.scrolled .header-logo img:not(.logo-sticky) {
    display: none;
}

/* Sticky Header Elements */


body.scrolled .header-logo {
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

/* Hero Swiper Pagination - Numbered Style */
.heroSwiper .swiper-pagination {
    position: absolute;
    right: 0;
    top: 40% !important;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
    padding-right: 10px;
}

.heroSwiper .swiper-pagination-bullet {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    font-weight: 300;
    padding: 0;
    width: auto;
    height: auto;
    opacity: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
}

.heroSwiper .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    color: white;
    font-weight: 600;
}

.heroSwiper .swiper-pagination-bullet-active::before {
    background: white;
    width: 30px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Site Header containerized layout */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 15px 0;
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    /* background: rgba(0, 0, 0, 0.12);
   backdrop-filter: blur(25px); */
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s 
ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.nav-link:hover {
    color: #fff;;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFC107;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation with dropdown arrow */
.nav-item-with-mega {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.nav-item-with-mega:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0;
    width: 1200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: flex;
    height: 400px;
}

.mega-menu-left {
    flex: 1;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-menu-right {
    flex: 2;
    background: #f8f9fa;
    position: relative;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    /* gap: 8px; */
}

.mega-menu-link {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
}

.mega-menu-link:hover {
    /* background: rgba(255, 193, 7, 0.1); */
    color: var(--primary-color);
    transform: translateX(6px);
    /* box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2); */
}

.mega-menu-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mega-menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(1.1);
}

.mega-menu-image.active {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Mega Menu Styles */
@media (max-width: 991px) {
    .mega-menu {
        width: 100vw;
        left: -20px;
        right: -20px;
        max-width: none;
    }
    
    .mega-menu-content {
        height: auto;
        flex-direction: column;
    }
    
    .mega-menu-left {
        padding: 20px;
    }
    
    .mega-menu-right {
        height: 250px;
    }
    
    .mega-menu-column {
        gap: 6px;
    }
    
    .mega-menu-link {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .mega-menu {
        width: calc(100vw - 40px);
        left: -10px;
        right: -10px;
    }
    
    .mega-menu-right {
        height: 200px;
    }
    
    .mega-menu-link {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    /* margin-left: 20px; */
}

.icon-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    /* color: var(--secondary-color); */
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* .icon-link svg {
    width: 20px;
    height: 20px;
} */

/* Header Logo Centering */
.site-header .header-logo {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    justify-self: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Icons */
.mobile-icons {
    display: none;
    align-items: center;
    gap: 10px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* padding-top: 60px; */
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}


/* Mobile Navigation Section with Submenu */
.mobile-nav-section {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link.main-link {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.mobile-nav-section.active .mobile-nav-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    /* padding-left: 20px; */
}

.mobile-submenu.active {
    max-height: 400px;
}

.mobile-submenu-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: block;
 
}

.mobile-submenu-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    transform: translateX(8px);
}

/* Newsletter Modal Styles */
.newsletter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.newsletter-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-modal-content {
    background: #ffffff;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.newsletter-modal-overlay.active .newsletter-modal-content {
    transform: scale(1) translateY(0);
}

.newsletter-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.newsletter-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333333;
    transform: rotate(90deg);
}

.newsletter-modal-close svg {
    width: 20px;
    height: 20px;
}

.newsletter-modal-body {
    padding: 50px 40px 40px;
    text-align: center;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.3;
}

.newsletter-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-input {
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #333333;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(235, 50, 56, 0.1);
}

.form-input::placeholder {
    color: #999999;
}

.phone-group {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.phone-country {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 16px 16px 20px;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: #f8f8f8;
    color: #333333;
    font-size: 16px;
    min-width: 120px;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.phone-input {
    border-radius: 0 8px 8px 0 !important;
    flex: 1;
}

.checkbox-group {
    margin: 8px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkbox-input:checked + .checkbox-custom {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    flex: 1;
}

.newsletter-submit-btn {
    background: #333333;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.newsletter-submit-btn:hover {
    background: #555555;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Hero Content */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 5%;
        gap: 2rem;
    }

    .hero-text {
        max-width: 100%;
        order: 2;
    }

    .hero-heading {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-play-button {
        order: 1;
        margin-bottom: 1rem;
    }

    .play-btn {
        width: 100px;
        height: 100px;
    }

    .play-icon {
        border-left: 20px solid #333;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        margin-left: 3px;
    }

    .video-modal-content {
        width: 95%;
        height: 60%;
        margin: 10% auto;
    }
}

/* About Us Section Styles */
/* .about-us-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
} */

.about-us-section {
    padding-bottom: 80px;
}

.video-player-container {
    position: relative;
    width: 100%;
    height: 500px;
    /* margin-bottom: 30px; */
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.residential-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

/* Resort Video Container Styles */
.resort-video-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.resort-video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.resort-landscape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #87CEEB 0%, #98FB98 100%);
    position: relative;
    overflow: hidden;
}

/* Landscape Paths */
.landscape-paths {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
}

.main-path {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: linear-gradient(90deg, #D2691E 0%, #CD853F 50%, #D2691E 100%);
    border-radius: 10px;
}

.path-fork-left {
    position: absolute;
    bottom: 20px;
    left: 20%;
    width: 25%;
    height: 15px;
    background: linear-gradient(90deg, #D2691E 0%, #CD853F 100%);
    border-radius: 8px;
    transform: rotate(-25deg);
}

.path-fork-right {
    position: absolute;
    bottom: 20px;
    right: 20%;
    width: 25%;
    height: 15px;
    background: linear-gradient(90deg, #D2691E 0%, #CD853F 100%);
    border-radius: 8px;
    transform: rotate(25deg);
}

/* Landscape Greenery */
.landscape-greenery {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.grass-lawn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(180deg, #90EE90 0%, #32CD32 100%);
}

.trees {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tree {
    position: absolute;
    width: 40px;
    height: 80px;
    background: linear-gradient(180deg, #228B22 0%, #006400 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.tree-1 { top: 15%; left: 15%; }
.tree-2 { top: 25%; right: 20%; }
.tree-3 { top: 35%; left: 25%; }
.tree-4 { top: 20%; right: 35%; }
.tree-5 { top: 45%; left: 40%; }

.shrubs {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.shrub {
    position: absolute;
    width: 30px;
    height: 20px;
    background: linear-gradient(180deg, #228B22 0%, #006400 100%);
    border-radius: 50%;
}

.shrub-1 { bottom: 20px; left: 10%; }
.shrub-2 { bottom: 20px; left: 50%; }
.shrub-3 { bottom: 20px; right: 15%; }

/* Resort Buildings */
.resort-buildings {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
}

.building {
    position: absolute;
    width: 60px;
    height: 40px;
    background: linear-gradient(180deg, #8B4513 0%, #A0522D 100%);
    border-radius: 5px;
}

.building-1 { bottom: 80px; left: 15%; }
.building-2 { bottom: 80px; right: 20%; }
.building-3 { bottom: 80px; left: 45%; }

/* Golf Cart */
.golf-cart {
    position: absolute;
    bottom: 35px;
    left: 25%;
    width: 50px;
    height: 25px;
}

.cart-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #CCCCCC;
}

.cart-people {
    position: absolute;
    top: -15px;
    left: 5px;
    right: 5px;
}

.person {
    position: absolute;
    width: 8px;
    height: 15px;
    background: #8B4513;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.person-1 { left: 5px; }
.person-2 { right: 5px; }

/* Resort Signs */
.resort-signs {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
}

.sign {
    position: absolute;
    padding: 5px 10px;
    background: #8B4513;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

.spa-sign { bottom: 60px; right: 25%; }
.other-sign { bottom: 60px; right: 35%; }

/* Resort Play Button */
.resort-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ff0000;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    z-index: 10;
}

.resort-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.resort-play-btn .play-icon {
    font-size: 2rem;
    color: white;
}

/* Property Projects Section Styles */
.property-projects-section {
    /* background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%); */
    /* background-image: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%), radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 1px, transparent 1px), radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%); */
    background-size: 100% 100%, 50px 50px, 50px 50px, 100px 100px, 100px 100px;
    background-position: 0 0, 0 0, 25px 25px, 0 0, 50px 50px;
    position: relative;
    overflow: hidden;
    /* margin-top: 80px; */
    padding-bottom: 80px;
    background: #f5f5f5;
}

/* Property Card Styles */
.property-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    z-index: 2;
}

.property-info {
    margin-bottom: 20px;
}

.property-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    opacity: 0.9;
}

.property-location i {
    color: #ff0000;
    font-size: 1.1rem;
}

.hover-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.property-card:hover .hover-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
}

.enquire-btn {
    background: #ffffff;
    color: #000000;
}

.enquire-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.details-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.details-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.whatsapp-icon:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.whatsapp-icon i {
    color: #ffffff;
    font-size: 1.3rem;
}

/* Responsive Design for Property Cards */
@media (max-width: 768px) {
    .property-card {
        height: 350px;
    }
    
    .property-title {
        font-size: 1.5rem;
    }
    
    .card-overlay {
        padding: 25px;
    }
    
    .action-btn {
        padding: 10px 20px;
        min-width: 120px;
        font-size: 0.8rem;
    }
    
    .whatsapp-icon {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-icon i {
        font-size: 1.2rem;
    }
}

.property-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect width="60" height="60" fill="none"/><rect x="0" y="0" width="60" height="60" fill="%23333" opacity="0.1"/><rect x="0" y="0" width="30" height="30" fill="%23333" opacity="0.05"/><rect x="30" y="30" width="30" height="30" fill="%23333" opacity="0.05"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.property-projects-section .container {
    position: relative;
    z-index: 2;
}

/* Projects Header */
.projects-header {
    margin-bottom: 50px;
}

.projects-branding .brand-name {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-headline {
    color: #202020;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.projects-description p {
    margin-bottom: 0;
}

/* Projects Controls */
.projects-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.location-filters {
    display: flex;
    gap: 15px;
}

.location-tab {
    background: transparent;
    color: #000;
    border: 2px solid #444;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s 
ease;
    letter-spacing: 0.5px;
}

.location-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.location-tab:hover:not(.active) {
    border-color: #666;
    background: rgba(255, 255, 255, 0.1);
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slide-counter {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.carousel-arrows {
    display: flex;
    gap: 10px;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    background: #444;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: #666;
    transform: scale(1.1);
}

.carousel-arrow i {
    font-size: 1.2rem;
}

/* Projects Carousel */
.projects-carousel {
    position: relative;
}

.projects-slide {
    display: none;
}

.projects-slide.active {
    display: block;
}

.projectsSwiper {
    padding: 20px 0;
}

.project-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-image img.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-image img.hover-image {
    opacity: 1;
}

.project-card:hover .project-image img:not(.hover-image) {
    opacity: 0;
}

/* Image overlay with text */
.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.project-card:hover .project-image::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
}

/* Text overlay on image */
.project-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    z-index: 3;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-image-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.project-image-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.project-image-location i {
    color: #ff0000;
    font-size: 1rem;
}

/* Hover buttons */
.project-image-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.project-card:hover .project-image-actions {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.project-image-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.project-image-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.project-image-btn.primary {
    background: #ff0000;
    color: white;
}

.project-image-btn.primary:hover {
    background: #e60000;
}

.project-content {
    padding: 30px;
    background: #ffffff;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #666666;
    font-size: 1rem;
    font-weight: 500;
}

.project-location i {
    color: #ff0000;
    font-size: 1.2rem;
}

.project-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.contact-icon:hover {
    background: #ff0000;
    transform: scale(1.05);
}

.contact-icon i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .projects-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .projects-headline {
        font-size: 2.8rem;
    }
    
    .projects-description {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .projects-headline {
        font-size: 1.5rem;
    }
    .process-arrow img {
        filter: invert(1);
        height: 60px;
    }

    
    .location-filters {
        width: 100%;
        justify-content: start;
    }
    
    .carousel-controls {
        width: 100%;
        justify-content: start;
    }
    .projects-controls {
        margin-top: 20px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-actions {
        justify-content: center;
    }
}

.about-content {
    padding-left: 50px;
}
.about-content p {
    font-size: 18px;
}
.about-subtitle {
    display: inline-block;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: .5px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* .about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
} */

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: var(--main, linear-gradient(90deg, #9F2B2C 0%, #EB3238 50.48%, #9F2B2C 100%));
    border: 2px solid var(--main, linear-gradient(90deg, #9F2B2C 0%, #EB3238 50.48%, #9F2B2C 100%));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.2);
}

.about-cta-btn i {
    font-size: 1.2rem;
}

/* Promotional Banners Section */
.promotional-banners {
    padding: 80px 0;
    background: #f8f9fa;
}

.promo-banner {
    height: 350px;
    overflow: hidden;
    position: relative;
    border-left: 15px solid #FF3036;
}

.red-banner {
    background: var(--main, linear-gradient(180deg, #AE1D22 0%, #310001 100%));
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

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

.promo-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 400;
}

.promo-main-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 40px;
    font-weight: 700;
}

.promo-cta-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 15px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-cta-btn:hover {
    background: white;
    color: #8B0000;
    transform: translateY(-2px);
}

.promo-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    /* opacity: 0.1; */
}

.gift-box {
    width: 40px;
    height: 30px;
    background: white;
    border-radius: 4px;
    margin-bottom: 10px;
    position: relative;
}

.gift-box::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: white;
    border-radius: 4px;
}

.gift-card {
    width: 30px;
    height: 20px;
    background: white;
    border-radius: 3px;
    margin-left: 20px;
}

.houses-banner {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-houses {
    width: 100%;
    height: 100%;
    position: relative;
}

.house-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 30px;
}

.house {
    width: 80px;
    height: 120px;
    background: white;
    border-radius: 8px 8px 0 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.house::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: #32CD32;
    border-radius: 8px 8px 0 0;
}

.house::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    height: 15px;
    background: #1a1a1a;
    border-radius: 2px;
}

.house-number {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
}

.house-1 {
    height: 100px;
}

.house-2 {
    height: 110px;
}

.house-3 {
    height: 90px;
}

.landscaping {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
}

.trees {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 20px;
    height: 30px;
    background: radial-gradient(circle at 50% 30%, #228B22 0%, #32CD32 100%);
    border-radius: 10px;
}

.shrubs {
    position: absolute;
    bottom: 0;
    right: 30%;
    width: 25px;
    height: 20px;
    background: radial-gradient(circle at 50% 40%, #8B008B 0%, #9370DB 100%);
    border-radius: 12px;
}

/* Responsive Styles for About Us Section */
@media (max-width: 991px) {
    section {
        padding-top: 30px;
    }
   
    .about-us-section {
        padding: 30px 0;
    }
    
    .video-player-container {
        height: 300px;
        margin-bottom: 20px;
    }
    .property-projects-section {
        /* margin-top: 20px; */
        padding-bottom: 20px;
    }
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }

    .promotional-banners {
        padding: 60px 0;
    }

    .promo-banner {
        height: 350px;
    }

    .promo-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .video-player-container {
        height: 250px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-tagline {
        font-size: 1.3rem;
    }

    .promo-banner {
        height: 300px;
        padding: 40px 30px;
    }

    .promo-title {
        font-size: 1.5rem;
    }

    .promo-main-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .house-row {
        gap: 15px;
    }

    .house {
        width: 60px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .video-player-container {
        height: 200px;
        margin-bottom: 0px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-tagline {
        font-size: 1.1rem;
    }
    
    .about-description {
        font-size: 1rem;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .promo-banner {
        height: 250px;
        padding: 30px 20px;
    }

    .promo-title {
        font-size: 1.3rem;
    }

    .promo-main-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .promo-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .house-row {
        gap: 10px;
    }

    .house {
        width: 50px;
        height: 70px;
    }

    .house-number {
        font-size: 0.7rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .play-btn {
        width: 80px;
        height: 80px;
    }

    .play-icon {
        border-left: 16px solid #333;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        margin-left: 2px;
    }
}

/* Grid positioning for new header layout handled by new navigation styles */

body.scrolled .site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation colors when scrolled */
body.scrolled .nav-link {
    color: #000000;
}

body.scrolled .nav-link:hover {
    transform: translateY(-1px);
}

body.scrolled .icon-link {
    color: #000000;
}

body.scrolled .icon-link:hover {
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.1);
}

/* Mobile menu toggle colors when scrolled */
body.scrolled .mobile-menu-toggle {
    color: #000000;
}

body.scrolled .mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

.site-header .header-logo img {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Property Hover Cards Styles - Scoped to property-projects-section */
.property-projects-section .property-hover-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-projects-section .property-hover-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.property-projects-section .property-hover-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.property-projects-section .property-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.3s ease;
    
}

.property-projects-section .property-main-image,
.property-projects-section .property-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.property-projects-section .property-hover-img {
    opacity: 0;
}

.property-projects-section .property-hover-card:hover .property-hover-img {
    opacity: 1;
}

.property-hover-card:hover .property-hover-content {
    bottom: 0;
    transition: all 0.3s ease;
}
.property-projects-section .property-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 1;
}

.property-projects-section .property-hover-card:hover .property-hover-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.property-projects-section .property-hover-text {
    /* position: absolute; */
    bottom: 110px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 3;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
}

.property-projects-section .property-hover-card:hover .property-hover-text {
    transform: translateY(0);
    opacity: 1;
}

.property-projects-section .property-hover-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.property-projects-section .property-hover-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.property-projects-section .property-hover-location i {
    color: #ff0000;
    font-size: 1rem;
}

.property-projects-section .property-hover-buttons {
    /* position: absolute; */
    bottom: 30px;
    left: 30px;
    right: 30px;
    opacity: 1;
    z-index: 4;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.property-projects-section .property-hover-card:hover .property-hover-buttons {
    opacity: 1;
}

.property-projects-section .property-hover-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.property-projects-section .property-hover-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.property-projects-section .property-hover-btn-primary {
    background: #ffffff;
    color: #000000;
}

.property-projects-section .property-hover-btn-primary:hover {
    background: #f0f0f0;
}

.property-projects-section .property-hover-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.property-projects-section .property-hover-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.property-projects-section .property-whatsapp-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.property-projects-section .property-whatsapp-icon:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.property-projects-section .property-whatsapp-icon i {
    color: #ffffff;
    font-size: 1.3rem;
}

/* Responsive Design for Property Hover Cards - Scoped to property-projects-section */
@media (max-width: 768px) {
    .property-projects-section .property-hover-card {
        height: 350px;
    }
    
    .property-projects-section .property-hover-title {
        font-size: 1.5rem;
    }
    
    .property-projects-section .property-hover-text {
        bottom: 100px;
        left: 20px;
        right: 20px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .property-projects-section .property-hover-buttons {
        bottom: 20px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        gap: 10px;
        opacity: 1;
    }
    
    .property-projects-section .property-hover-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .property-projects-section .property-whatsapp-icon {
        width: 45px;
        height: 45px;
        margin-left: 0;
        align-self: center;
    }
    
    .property-projects-section .property-whatsapp-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .property-projects-section .property-hover-card {
        height: 300px;
    }
    
    .property-projects-section .property-hover-title {
        font-size: 1.3rem;
    }
    
    .property-projects-section .property-hover-text {
        bottom: 90px;
        left: 15px;
        right: 15px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .property-projects-section .property-hover-buttons {
        bottom: 15px;
        left: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
        opacity: 1;
    }
    
    .property-projects-section .property-hover-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .property-projects-section .property-whatsapp-icon {
        width: 40px;
        height: 40px;
        margin-left: 0;
        align-self: center;
    }
    
    .property-projects-section .property-whatsapp-icon i {
        font-size: 1.1rem;
    }
    
}

/* About Luxury Experience Section Styles */
.about-luxury-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-luxury-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect width="60" height="60" fill="none"/><path d="M0,30 Q15,0 30,30 T60,30" stroke="%23e0e0e0" stroke-width="1" fill="none" opacity="0.3"/><path d="M0,0 Q30,15 60,0" stroke="%23e0e0e0" stroke-width="1" fill="none" opacity="0.2"/><path d="M0,60 Q30,45 60,60" stroke="%23e0e0e0" stroke-width="1" fill="none" opacity="0.2"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.about-luxury-section .container {
    position: relative;
    z-index: 2;
}

/* Left Section - About Us Content */
.about-luxury-content {
    padding-right: 30px;
}

.about-luxury-subtitle {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.about-luxury-title {
    color: #1a1a1a;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-luxury-description {
    color: #666666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Middle Section - Cityscape Image */
.cityscape-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}


/* Right Section - Services and Statistics */
.services-stats-content {
    padding-left: 30px;
}

.services-brand-name {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Cards */
.service-cards {
    margin-bottom: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.service-icon svg {
    position: relative;
    z-index: 2;
}

.sparkles {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    gap: 2px;
}

.sparkles span {
    display: inline-block;
    color: #8B4513;
    font-size: 0.7rem;
    animation: sparkle 2s infinite;
}

.sparkles span:nth-child(2) { animation-delay: 0.2s; }
.sparkles span:nth-child(3) { animation-delay: 0.4s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.service-content {
    flex: 1;
}

.service-title {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-description {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Statistics */
.statistics {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-banner {
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 80px;
}

.stat-ribbon {
    --r: .8em; /* control the cutout */
    
    border-inline: .5em solid #0000;
    padding: .5em .2em calc(var(--r) + .2em);
    clip-path: polygon(0 0,100% 0,100% 100%,calc(100% - .5em) 100%,50% calc(100% - var(--r)),.5em 100%,0 100%);
    background:
     radial-gradient(50% .2em at top,#000a,#0000) border-box,
     #2c3e50 padding-box; /* the color  */
    width: fit-content;
    min-width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.stat-ribbon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.stat-ribbon-icon svg {
    color: white;
}

.stat-banner-content {
    flex: 1;
    padding: 20px;
    text-align: center;
    background: white;
    position: relative;
}

.stat-banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M0,10 Q5,5 10,10 T20,10" stroke="%23f0f0f0" stroke-width="0.5" fill="none"/><path d="M0,0 Q10,5 20,0" stroke="%23f0f0f0" stroke-width="0.3" fill="none"/><path d="M0,20 Q10,15 20,20" stroke="%23f0f0f0" stroke-width="0.3" fill="none"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.stat-banner-content > * {
    position: relative;
    z-index: 2;
}

.stat-banner-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #dc3545;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-banner-label {
    display: block;
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-banner-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.stat-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design for About Luxury Section */
@media (max-width: 991px) {
    .about-luxury-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .services-stats-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-luxury-title {
        font-size: 2.4rem;
    }
    
    .cityscape-container {
        min-height: 300px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .about-luxury-title {
        font-size: 2rem;
    }
    
    .about-luxury-description {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-icon-container {
        align-self: center;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .stat-banner {
        min-height: 70px;
    }
    
    .stat-ribbon {
        min-width: 70px;
        --r: .6em;
    }
    
    .stat-ribbon-icon {
        width: 35px;
        height: 35px;
    }
    
    .stat-banner-content {
        padding: 15px;
    }
    
    .stat-banner-number {
        font-size: 1.8rem;
    }
    
    .stat-banner-label {
        font-size: 0.8rem;
    }
    
    .stat-banner-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .about-luxury-title {
        font-size: 1.8rem;
    }
    
    .about-luxury-description {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .service-icon-container {
        align-self: center;
    }
    
    .stat-banner {
        min-height: 60px;
    }
    
    .stat-ribbon {
        min-width: 60px;
        --r: .5em;
    }
    
    .stat-ribbon-icon {
        width: 30px;
        height: 30px;
    }
    
    .stat-banner-content {
        padding: 12px;
    }
    
    .stat-banner-number {
        font-size: 1.5rem;
    }
    
    .stat-banner-label {
        font-size: 0.75rem;
    }
    
    .stat-banner-image {
        width: 60px;
        height: 60px;
    }
}

/* Projects Showcase Section Styles */
.projects-showcase-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


.project-showcase-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-showcase-card:hover .project-card-image img {
    transform: scale(1.02);
}

.project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.project-showcase-card:hover .project-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 25%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.project-card-content {
    position: relative;
    z-index: 3;
}

.project-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.project-card-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 85%;
}

.project-card-arrow {
    position: absolute;
    bottom: 40px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 4;
}

.project-card-arrow i {
    color: #000000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.project-showcase-card:hover .project-card-arrow {
    background: var(--main, linear-gradient(90deg, #9F2B2C 0%, #EB3238 50.48%, #9F2B2C 100%));
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-showcase-card:hover .project-card-arrow i {
    transform: translate(2px, -2px);
    color: #fff;
}

/* Hover effects for the first card (Current Projects) */
.current-projects-card {
    position: relative;
}

.current-projects-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 86, 179, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.current-projects-card:hover::before {
    opacity: 1;
}

/* Responsive Design for Projects Showcase Section */
@media (max-width: 768px) {
    .project-showcase-card {
        height: 400px;
    }
    
    .project-card-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .project-card-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .project-card-overlay {
        padding: 30px 25px;
    }
    
    .project-card-arrow {
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
    }
    
    .project-card-arrow i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .project-showcase-card {
        height: 350px;
    }
    
    .project-card-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .project-card-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .project-card-overlay {
        padding: 25px 20px;
    }
    
    .project-card-arrow {
        bottom: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
    }
    
    .project-card-arrow i {
        font-size: 1rem;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.gallery-header {
    margin-bottom: 60px;
}

.gallery-brand-name {
    color: #666666;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-main-title {
    color: #1a1a1a;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Gallery Swiper Container */
.gallery-swiper .swiper-container {
    width: 100%;
    margin: 40px 0;
    padding: 45px 0;
}

.gallery-swiper .swiper-slide {
    opacity: 0.5;
    transition: .7s;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.gallery-swiper .swiper-slide-active {
    opacity: 1;
    z-index: 1;
    transform: scale(1.3);
    margin: 0 40px;
}
/* .gallery-swiper .swiper-slide-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
} */

.gallery-swiper .swiper-slide-prev {
    margin-right: 20px;
}

.gallery-swiper .swiper-slide-next {
    margin-left: 20px;
}

/* Responsive Design for Gallery Section */
@media (max-width: 991px) {
    .gallery-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-main-title {
        font-size: 1.8rem;
    }
}

/* Process & Contact Form Section Styles */
.process-contact-section {
    background: #EFEFEF;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
    background-size: 50px 50px, 50px 50px, 100px 100px, 100px 100px;
    background-position: 0 0, 25px 25px, 0 0, 50px 50px;
    position: relative;
    padding-bottom: 80px;
    /* overflow: hidden; */
}

.process-contact-section .container {
    position: relative;
    z-index: 2;
}

/* Left Column - Process */
.process-column {
    background: #EFEFEF;
    position: relative;
    /* min-height: 600px; */
    display: flex;
    align-items: center;
    padding: 0 200px 0 0;
}


.process-content {
    color: white;
    width: 100%;
}

.process-header {
    margin-bottom: 50px;
}

.process-subtitle {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.process-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-icon {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
}

.step-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.sparkles {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    gap: 3px;
}

.sparkles span {
    display: inline-block;
    color: #D4AF37;
    font-size: 0.8rem;
    animation: sparkle 2s infinite;
}

.sparkles span:nth-child(2) { animation-delay: 0.2s; }
.sparkles span:nth-child(3) { animation-delay: 0.4s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.step-content {
    flex: 1;
}

.step-title {
    color: #202020;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-description {
    /* color: #cccccc; */
    font-size: 0.95rem;
    /* line-height: 1.6; */
    margin-bottom: 0;
}

.process-arrow img {
    filter: invert(1);
    height: 90px;
}

.process-arrow {
    position: absolute;
    top: 20%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 3;
    animation: arrowFloat 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes arrowFloat {
    0%, 100% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-50%) translateX(-3px) rotate(1deg);
    }
    50% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
    75% {
        transform: translateY(-50%) translateX(3px) rotate(-1deg);
    }
}

.process-arrow:hover {
    animation: arrowPulse 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes arrowPulse {
    0% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

.process-arrow svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Right Column - Contact Form */
.contact-column {
    /* background: var(--main, linear-gradient(180deg, #AE1D22 0%, #310001 100%)); */
    position: relative;
    /* min-height: 600px; */
    display: flex;
    align-items: center;
    padding: 60px 50px;
    margin-top: -80px;
    background:#fff;
}

.contact-content {
    width: 100%;
}

.contact-header {
    margin-bottom: 40px;
    /* text-align: center; */
}

.contact-subtitle {
    /* color: rgba(255, 255, 255, 0.8); */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.contact-title {
    /* color: #ffffff; */
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 20px 15px 20px;
    /* background: rgb(103 0 0); */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    border-radius: 8px;
    /* color: #ffffff; */
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    /* color: rgba(255, 255, 255, 0.7); */
}

.form-control:focus {
    outline: none;
    border-color: #8B0000;
    /* background: rgba(139, 0, 0, 0.9); */
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control option {
    /* background: #8B0000; */
    /* color: #ffffff; */
}

.form-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    /* color: rgba(255, 255, 255, 0.6); */
    font-size: 1.1rem;
    pointer-events: none;
}

.submit-btn {
    background: var(--primary-color);    
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.submit-btn:hover {
    /* background: #f8f9fa; */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Process & Contact Section */
@media (max-width: 991px) {
    .process-column,
    .contact-column {
        padding: 40px 30px;
        min-height: 500px;
    }
    
    .process-title,
    .contact-title {
        font-size: 2.4rem;
    }
    
    .process-steps {
        gap: 30px;
    }
    
    .process-column::before {
        display: none;
    }
}

@media (max-width: 768px) {
   
   
   
    .process-column,
    .contact-column {
        padding: 30px 25px;
        min-height: 450px;
    }
    
    .process-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .process-steps {
        gap: 25px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 12px 20px 12px 20px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    
    .process-column,
    .contact-column {
        padding: 30px 30px;
        min-height: 400px;
        margin-top: 10px;
    }
    
    .process-title,
    .contact-title {
        font-size: 1.4rem;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .form-control {
        padding: 10px 20px 10px 20px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Footer Section Styles */
.footer-section {
    background: #ffffff;
    position: relative;
    margin-top: -90px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 60px 0 40px 0;
}

/* Logo Column */
.footer-logo-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-emblem {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mandala-pattern {
    width: 40px;
    height: 40px;
    background: 
        radial-gradient(circle at 50% 50%, transparent 30%, #ffffff 30%, #ffffff 35%, transparent 35%),
        radial-gradient(circle at 50% 50%, transparent 20%, #ffffff 20%, #ffffff 25%, transparent 25%),
        radial-gradient(circle at 50% 50%, transparent 10%, #ffffff 10%, #ffffff 15%, transparent 15%);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B0000;
    margin: 0;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666666;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #626262;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s 
ease;
    line-height: 1.4;
}

.footer-links li a:hover {
    color: #8B0000;
}

/* Contact Info */
.contact-info {
    margin-bottom: 20px;
}

.contact-phone, .contact-email {
    margin-bottom: 0;
}

.contact-phone a, .contact-email a {
    color: #000000;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: #8B0000;
}

/* Social Separator */
.social-separator {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-media a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: #8B0000;
    border-color: #8B0000;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-media i {
    font-size: 1.1rem;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-copyright p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px 0 30px 0;
    }
    
    .footer-logo-column {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-section {
        margin-top: -60px;
        border-radius: 25px 25px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 30px 0 20px 0;
    }
    
    .footer-logo-column {
        grid-column: 1;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-emblem {
        width: 50px;
        height: 50px;
    }
    
    .mandala-pattern {
        width: 35px;
        height: 35px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .social-media {
        gap: 12px;
    }
    
    .social-media a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        margin-top: -40px;
        border-radius: 20px 20px 0 0;
    }
    
    .footer-content {
        padding: 30px 0px 20px 20px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-emblem {
        width: 45px;
        height: 45px;
    }
    
    .mandala-pattern {
        width: 30px;
        height: 30px;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-links li a {
        font-size: 0.95rem;
    }
    
    .contact-phone a,
    .contact-email a {
        font-size: 0.95rem;
    }
    
    .social-media a {
        width: 32px;
        height: 32px;
    }
    
    .social-media i {
        font-size: 1rem;
    }
}

/* Content Section Above Footer Styles */
.content-section {
    position: relative;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: -90px;
    background-image: url('../img/cta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-background {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/hero-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

.content-heading {
    margin-bottom: 30px;
    line-height: 1.2;
}

.heading-line-1,
.heading-line-2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.heading-line-2 {
    margin-top: 10px;
}

.content-subtitle {
    margin-bottom: 40px;
    line-height: 1.6;
}

.content-subtitle .subtitle-line-1,
.content-subtitle .subtitle-line-2 {
    display: block;
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-subtitle .subtitle-line-2 {
    margin-top: 5px;
}

.content-cta {
    /* margin-top: 50px; */
    margin-bottom: 100px;
}

.content-section .cta-button {
    background: var(--main, linear-gradient(90deg, #9F2B2C 0%, #EB3238 50.48%, #9F2B2C 100%));
    border: none;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-section .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.content-section .cta-line-1,
.content-section .cta-line-2,
.content-section .cta-line-3 {
    display: block;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.content-section .cta-line-1 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.content-section .cta-line-2 {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.content-section .cta-line-3 {
    font-size: 1.1rem;
}

/* Large Overlay Text */
.content-large-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    pointer-events: none;
    width: 100%;
}

.content-large-text .large-text-shri {
    display: block;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 0.9;
    margin-bottom: 10px;
}

.content-large-text .large-text-prosperity {
    display: block;
    font-size: 6rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 0.9;
}

/* Responsive Design for Content Section */
@media (max-width: 991px) {
    .content-section {
        height: 70vh;
        min-height: 450px;
    }
    
    .heading-line-1,
    .heading-line-2 {
        font-size: 3rem;
    }
    
    .content-subtitle .subtitle-line-1,
    .content-subtitle .subtitle-line-2 {
        font-size: 1.2rem;
    }
    
    .content-section .cta-button {
        width: 160px;
        height: 160px;
    }
    
    .content-large-text .large-text-shri {
        font-size: 6rem;
    }
    
    .content-large-text .large-text-prosperity {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .content-section {
        height: 60vh;
        min-height: 400px;
        margin-bottom: -60px;
    }
    
    .heading-line-1,
    .heading-line-2 {
        font-size: 2.5rem;
    }
    
    .content-subtitle .subtitle-line-1,
    .content-subtitle .subtitle-line-2 {
        font-size: 1.1rem;
    }
    
    .content-section .cta-button {
        width: 140px;
        height: 140px;
    }
    
    .content-section .cta-line-1 {
        font-size: 1rem;
    }
    
    .content-section .cta-line-2 {
        font-size: 1.2rem;
    }
    
    .content-section .cta-line-3 {
        font-size: 1rem;
    }
    
    .content-large-text .large-text-shri {
        font-size: 4.5rem;
    }
    
    .content-large-text .large-text-prosperity {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        height: 50vh;
        min-height: 350px;
        margin-bottom: -40px;
    }
    
    .heading-line-1,
    .heading-line-2 {
        font-size: 1.5rem;
    }
    
    .content-subtitle .subtitle-line-1,
    .content-subtitle .subtitle-line-2 {
        font-size: 1rem;
    }
    
    .content-section .cta-button {
        width: 120px;
        height: 120px;
    }
    
    .content-section .cta-line-1 {
        font-size: 0.9rem;
    }
    
    .content-section .cta-line-2 {
        font-size: 1.1rem;
    }
    
    .content-section .cta-line-3 {
        font-size: 0.9rem;
    }
    
    .content-large-text .large-text-shri {
        font-size: 3.5rem;
    }
    
    .content-large-text .large-text-prosperity {
        font-size: 2.8rem;
    }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    /* Mobile responsive styles for header elements */
    .header-container {
        grid-template-columns: auto 1fr auto;
        gap: 15px;
        align-items: center;
    }
    
    /* Hide desktop navigation on mobile */
    .desktop-nav {
        display: none !important;
    }
    
    /* Show mobile elements */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        justify-self: start;
    }
    
    .mobile-icons {
        display: flex;
        justify-self: end;
    }
    
    .header-logo {
        justify-self: center;
    }
    
    .header-logo img {
        height: 35px;
        width: auto;
    }
    
    .mobile-icons .icon-link svg {
        width: 18px;
        height: 18px;
    }

    /* Newsletter Modal Mobile Styles */
    .newsletter-modal-body {
        padding: 40px 30px 30px;
    }
    
    .newsletter-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .newsletter-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .phone-country {
        min-width: 100px;
        padding: 16px 12px 16px 16px;
        font-size: 14px;
    }
    
    .phone-country span {
        display: none;
    }
    
    .flag-icon {
        width: 18px;
        height: 13px;
    }

    /* Mobile Mega Menu Styles */
    .mobile-submenu-link {
        font-size: 16px;
        padding: 6px 0;
    }
    
    .mobile-submenu-link:hover {
        /* background: rgba(235, 50, 56, 0.08); */
        color: var(--secondary-color);
        border-bottom-color: var(--secondary-color);
        transform: translateX(6px);
    }

    /* Mobile responsive styles for side menu */
    .side-menu-header {
        padding: 1rem 2rem;
        text-align: left;
    }

    .side-menu-content {
        padding: 1rem 2rem;
    }

    .side-menu-links a {
        font-size: 1.5rem;
    }

    /* Mobile responsive styles for hero section */
    .hero-content {
        text-align: left;
        padding: 20px 5%;
        justify-content: flex-end;
    }

    .hero-text {
        text-align: left;
    }

    .hero-play-button {
        justify-self: start;
        align-self: flex-start;
    }

    /* Mobile responsive flexbox wrapping */
    .hero-content .d-flex {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2rem;
    }

    .hero-text {
        order: 1;
        width: 100%;
    }

    .hero-play-button {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    /* Mobile responsive gallery section */
    .gallery-section .swiper-container {
        padding: 0 20px;
    }

    /* .gallery-section .swiper-slide {
        width: 250px;
        margin-right: 20px;
    } */

    .gallery-section .swiper-pagination {
        display: none;
    }

    .gallery-section .swiper-button-next,
    .gallery-section .swiper-button-prev {
        display: none;
    }

    .gallery-section .swiper-slide img {
        height: 250px;
        width: auto;
        object-fit: cover;
    }

    /* Mobile responsive process arrow */
    .process-arrow {
        top: 2%;
        right: 0;
    }

    /* Mobile responsive content section */
    .content-cta {
        margin-bottom: 30px;
    }

    .content-large-text {
        display: none;
    }

    /* Mobile responsive side menu layout */
    .side-menu-section {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: space-between;
    }

    .side-menu-links {
        flex: 1;
    }

    .side-menu-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
    }
    .aboutus-overlay {
        display: none;
    }
}

/* About Us Overlay Positioning */
.aboutus-overlay {
    position: absolute;
    top: 0px;
    left: -215px;
    height: 450px;
    z-index: 0;
    border-radius: 8px;
}

/* Video Player Container Positioning */
.video-player-container {
    position: relative;
}


@media (min-width: 1800px) {
    body .container {
        max-width: 1600px;
    }
}

.amenties-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    /* padding: 0 5% 50px 5%; */
}

/* Amenities Section Styles */
.amenities-section {
    /* background: #f5f5f5; */
    padding: 50px 0;
    position: relative;
    width: 100%;
}

.amenities-content {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 20px;
    justify-content: space-between;
}

/* Brand Name Styling */
.amenities-brand {
    /* margin-bottom: 50px; */
    /* text-align: left; */
    /* width: 100%; */
    /* max-width: 1200px; */
}

.amenities-brand-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.1;
}

.amenities-brand-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Amenities Grid */
.amenities-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    /* margin-bottom: 60px; */
    flex-wrap: wrap;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* min-width: 200px; */
}

.amenity-icon {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-title {
    font-size: 13px;
    /* font-weight: 600; */
    color: #000;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Divider */
.amenity-divider {
    width: 1px;
    height: 60px;
    background: #9c9c9c;
    margin: 0 5px;
}

/* Explore Button */
.amenities-cta {
    margin-top: 20px;
}

.amenities-explore-btn {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 15px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Lato", sans-serif;
}

.amenities-explore-btn:hover {
    background: #000;
    color: #fff;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .amenities-grid {
        gap: 30px;
    }
    
    .amenity-divider {
        margin: 0 15px;
    }
}

@media (max-width: 991px) {
    .amenities-section {
        padding: 60px 0;
    }
    
    .amenities-brand {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .amenities-brand-name {
        font-size: 2.8rem;
    }
    
    .amenities-brand-subtitle {
        font-size: 1rem;
    }
    
    .amenities-grid {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 20px;
    }
    
    .amenity-divider {
        width: 60px;
        height: 1px;
        margin: 10px 0;
    }
    
    .amenity-item {
        min-width: auto;
    }
}

@media (max-width: 767px) {
    .amenities-brand-name {
        font-size: 2.2rem;
    }
    
    .amenities-brand-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .amenity-title {
        font-size: 0.8rem;
    }
    
    .amenities-explore-btn {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .amenities-section {
        padding: 40px 0;
    }
    
    .amenities-brand-name {
        font-size: 1.8rem;
    }
    
    .amenities-brand-subtitle {
        font-size: 0.8rem;
    }
    
    .amenity-title {
        font-size: 0.75rem;
    }
    .gallery-section {
       
        padding-bottom: 30px;
    }
    .projects-header {
        margin-bottom: 30px;
    }
    .gallery-swiper .swiper-slide-active {

        transform: scale(1);
        margin: 0px;
    }
    .gallery-swiper .swiper-container {
        margin: 0px 0;
    }

}

/* Math-Noi Swiper Styles */
.noi-math-sec .swiper-slide {
    /* display: flex; */
    align-items: center;
    color: white;
    position: relative;
    /* height: 100vh; */
}

.noi-math-sec {
    position: relative;
}

.math-noi-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.noi-math-sec .swiper-pagination {
    bottom: 30px;
    z-index: 10;
}

.noi-math-sec .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.noi-math-sec .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

/* Math-Noi Navigation Arrows */
.math-noi-prev,
.math-noi-next {
    width: 50px;
    height: 50px;
    background: #62626299;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    outline: none;
}

/* .math-noi-prev:hover,
.math-noi-next:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
} */

.math-noi-prev::after,
.math-noi-next::after {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.math-noi-prev {
    left: 20px;
}

.math-noi-next {
    right: 20px;
}

/* Mobile Responsive for Math-Noi Swiper */
@media (max-width: 768px) {
    .noi-math-sec .swiper-slide {
        height: 100vh;
    }
    
    .math-noi-img img {
        height: 200px;
    }
    
    .noi-math-sec .swiper-pagination {
        bottom: 20px;
    }
    
    .math-noi-prev,
    .math-noi-next {
        width: 40px;
        height: 40px;
    }
    
    .math-noi-prev::after,
    .math-noi-next::after {
        font-size: 14px;
    }
    
    .math-noi-prev {
        left: 15px;
    }
    
    .math-noi-next {
        right: 15px;
    }
    
    .math-noi-prev:hover,
    .math-noi-next:hover {
        transform: translateY(-50%) scale(1.1);
    }

    .amenities-content {
       display: block;
        /* align-items: start; */
    }

}

@media (max-width: 480px) {
    .noi-math-sec .swiper-slide {
        height: auto;
    }
    
    
    .math-noi-img img {
        height: 200px;
    }
    
    .noi-math-sec .swiper-pagination {
        bottom: 15px;
    }
    
    .noi-math-sec .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .math-noi-prev,
    .math-noi-next {
        width: 35px;
        height: 35px;
    }
    
    .math-noi-prev::after,
    .math-noi-next::after {
        font-size: 12px;
    }
    
    .math-noi-prev {
        left: 10px;
    }
    
    .math-noi-next {
        right: 10px;
    }
    
    .math-noi-prev:hover,
    .math-noi-next:hover {
        transform: translateY(-50%) scale(1.1);
    }

}


/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-animate-delay-1 { transition-delay: 0.2s; }
.scroll-animate-delay-2 { transition-delay: 0.4s; }
.scroll-animate-delay-3 { transition-delay: 0.6s; }

/* Disable scroll animations on mobile devices */
@media (max-width: 768px) {
    .scroll-animate { opacity: 1; transform: none; transition: none; }
    .scroll-animate.animate { opacity: 1; transform: none; }
    .scroll-animate-delay-1,
    .scroll-animate-delay-2,
    .scroll-animate-delay-3 { transition-delay: 0s; }
}

/* Google Reviews Section */
.google-reviews {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-reviews-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.google-text {
    font-size: 26px;
    font-weight: 600;
    margin-right: 5px;
}

.reviews-text {
    font-size: 20px;
    font-weight: 600;
}

.company-name {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 16px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #dadce0;
}

.star.filled {
    color: #fbbc05;
}

.star.partial {
    background: linear-gradient(90deg, #fbbc05 70%, #dadce0 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile responsiveness for Google Reviews */
@media (max-width: 768px) {
    .google-reviews {
        margin-top: 15px;
        padding: 12px;
    }
    
    .google-text,
    .reviews-text {
        font-size: 14px;
    }
    
    .company-name {
        font-size: 13px;
    }
    
    .rating-number {
        font-size: 14px;
    }
    
    .star {
        font-size: 16px;
    }
}

/* Footer Header Layout */
.footer-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
    /* margin-bottom: 40px; */
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
}

.footer-description {
    max-width: 600px;
    margin: 0 auto 30px;
}

.footer-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.footer-navigation {
    margin-top: 20px;
}

.footer-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav-links li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s 
ease;
    text-transform: uppercase;
}

.footer-nav-links li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Mobile responsiveness for footer header */
@media (max-width: 768px) {
    .footer-header {
        padding: 30px;
        margin-bottom: 0px;
    }
    
    .footer-logo-img {
        max-height: 50px;
    }
    
    .footer-description {
        margin-bottom: 20px;
    }
    
    .footer-description p {
        font-size: 14px;
    }
    
    .footer-nav-links {
        gap: 15px;
        /* flex-direction: column; */
    }
    
    .footer-nav-links li a {
        font-size: 12px;
    }
}

/* Footer Copyright Layout */
.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-left p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.copyright-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright-right .footer-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.copyright-right .footer-link:hover {
    color: #007bff;
    text-decoration: underline;
}

.copyright-right .separator {
    color: #999;
    font-size: 14px;
}

/* Mobile responsiveness for footer copyright */
@media (max-width: 768px) {
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .copyright-left p,
    .copyright-right .footer-link {
        font-size: 13px;
    }
    .about-content {
        padding: 24px;
    }
    .about-content p {
        font-size: 17px;
        line-height: 30px;
    }
    .residential-placeholder {
        border-radius: 0;
    }
    .video-thumbnail {
        border-radius: 0;
    }
    .projects-header {
        text-align: center;
        padding: 20px;
    }
    .location-filters {
        width: 100%;
        justify-content: center;
    }
    .carousel-controls {
        justify-content: center;
    }
    .projects-headline {
        font-size: 1.4rem;
        line-height: 1.6;
        font-weight: 500;
    }
    .about-us-section {
        padding-bottom: 0;
    }
    .amenities-brand {
        margin-bottom: 0px;
    }
    .process-column, .contact-column {
        margin-top: 0px;
    }
    .contact-subtitle {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .footer-copyright {
        padding: 20px 0;
    }

}

/* Press Releases Section Styles */
.press-releases-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.press-releases-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.press-release-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.press-release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.press-release-image {
    position: relative;
    overflow: hidden;
}

.press-release-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.press-release-card:hover .press-release-image img {
    transform: scale(1.05);
}

.press-release-content {
    padding: 30px;
}

.press-release-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.press-release-text {
    color: #393939;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
}

/* Responsive Design for Press Releases */
@media (max-width: 991px) {
    .press-releases-section {
        padding: 60px 0;
    }
    
    .press-release-content {
        padding: 25px;
    }
    
    .press-release-heading {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .press-releases-section {
        padding: 50px 0;
    }
    
    .press-releases-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .press-release-content {
        padding: 20px;
    }
    
    .press-release-heading {
        font-size: 1.2rem;
    }
    
    .press-release-text {
        font-size: 15px;
    }
    
    .press-release-image img {
        height: 200px;
    }
}

/* FROM CONCEPT TO COMPLETION: DEFINING OUR PILLARS Section Styles */
.pillars-section {
    background-color: #EFEFEF;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
}

.pillars-main-title {
    font-size: 1.5rem;
    /* font-weight: 600; */
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    font-family: 'Ringside', sans-serif;
}

.pillar-column {
    position: relative;
    height: 100%;
}

.pillar-image {
    margin-bottom: 30px;
    position: relative;
    z-index: 999;
}

.pillar-image {
    overflow: hidden;
    border-radius: 8px;
}

.pillar-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pillar-image:hover img {
    transform: scale(1.05);
}

.pillar-content {
    position: relative;
    padding: 40px 0px 0 100px;
}

.pillar-content::before {
    content: '';
    position: absolute;
    z-index: 9;
    left: 62px;
    top: -40px;
    bottom: 0;
    width: 1px;
    background-color: #c5c5c5;
}

.pillar-heading {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.pillar-text {
    /* color: #393939; */
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 0;
}

/* Vertical separator lines between columns */
.pillar-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background-color: #e0e0e0;
    z-index: 1;
}

/* Responsive Design for Pillars Section */
@media (max-width: 991px) {
    .pillars-section {
        padding: 60px 0;
    }
    
    .pillar-image img {
        height: 350px;
    }
    
    .pillar-content {
        padding-left: 25px;
        margin-left: 18px;
    }
    
    .pillar-content::before {
        left: -18px;
    }
    
    /* .pillar-heading {
        font-size: 1.3rem;
    } */
    
    /* Remove vertical separators on tablet and mobile */
    .pillar-column:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .pillars-section {
        padding: 50px 0;
    }
    
    .pillars-main-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .pillar-image {
        margin-bottom: 25px;
    }
    
    .pillar-image img {
        height: 280px;
    }
    
    .pillar-content {
        padding-left: 20px;
        margin-left: 15px;
    }
    
    .pillar-content::before {
        left: -15px;
    }
    
    /* .pillar-heading {
        font-size: 1.2rem;
    } */
    
    /* .pillar-text {
        font-size: 15px;
    } */
}

/* Unified Swiper Styles - Scoped to prevent conflicts */
.pillars-section .pillarsSwiper {
    padding: 0 0 50px 0;
    overflow: visible;
    position: relative;
    z-index: 1;
    isolation: isolate;
    contain: layout style;
}

.pillars-section .pillarsSwiper .swiper-slide {
    height: auto;
    overflow: visible;
    width: 100%;
}

.pillars-section .pillarsSwiper .pillar-column {
    margin: 0;
    overflow: visible;
    width: 100%;
}

.pillars-section .pillarsSwiper .swiper-wrapper {
    overflow: visible;
    position: relative;
    z-index: 1;
}

/* Prevent Swiper from interfering with header */
.pillars-section .pillarsSwiper * {
    pointer-events: auto;
}

.pillars-section .pillarsSwiper .swiper-slide {
    pointer-events: auto;
    touch-action: pan-y pinch-zoom;
}

/* Desktop Swiper Styles */
@media (min-width: 992px) {
    .pillars-section .pillarsSwiper {
        padding: 0 0 30px 0;
    }
    
    .pillars-section .pillarsSwiper .pillar-content {
        padding: 40px 0px 0 100px;
        margin-left: 0;
    }
    
    .pillars-section .pillarsSwiper .pillar-content::before {
        left: 62px;
        top: -40px;
    }
    
    .pillars-section .pillarsSwiper .pillar-image img {
        height: 450px;
    }
    
    .pillars-section .pillarsSwiper .swiper-pagination {
        display: none !important;
    }
}

/* Mobile Swiper Styles */
@media (max-width: 991px) {
    .pillars-section {
        padding: 50px 0;
        overflow: visible;
    }
    
    .pillars-section .pillarsSwiper {
        padding: 0 5px 0px 5px;
        overflow: visible;
        margin: 0;
    }

    .pillar-heading {
        font-size: 30px;
    }
    
    .pillars-section .pillarsSwiper .pillar-content {
        padding: 10px 20px 0px 20px;
        margin-left: 0;
        text-align: center;
    }
    
    .pillars-section .pillarsSwiper .pillar-content::before {
     display: none;
    }
    
    .pillars-section .pillarsSwiper .pillar-image img {
        height: 280px;
    }
    
    /* Show pagination only on mobile */
    .pillars-section .pillarsSwiper .swiper-pagination {
        display: flex;
    }
}

/* Swiper Pagination - Scoped to pillars section only */
.pillars-section .pillarsSwiper .swiper-pagination {
    bottom: 0;
    position: relative;
    display: none; /* Hidden by default */
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.pillars-section .pillarsSwiper .swiper-pagination-bullet {
    background-color: #c5c5c5;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pillars-section .pillarsSwiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}


