@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-color: #D0AC80;
    --secondary-color: #0055A0;
    --dim-color-dark: #03122C;
    --background-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 3.5px;
}


::-webkit-scrollbar-track {
    background: #0055A0;
}


::-webkit-scrollbar-thumb {
    background: #D0AC80;
    border-radius: 10px;
}


.top-headline {
    background-color: #03122C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-headline .top-headline-p {
    font-size: 14px;
    color: #ffffff;
    margin: 5px 0 5px 0 !important;
}

.top-headline .span-text {
    margin-left: 10px;
}

.top-headline-p i {
    font-size: 14px;
    color: #D0AC80;
    opacity: 0;
    /* Hidden initially for animation */
    display: inline-block;
    animation: starSlideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.top-headline-p i:nth-child(1) {
    animation-delay: 0.2s;
}

.top-headline-p i:nth-child(2) {
    animation-delay: 0.3s;
}

.top-headline-p i:nth-child(3) {
    animation-delay: 0.4s;
}

.top-headline-p i:nth-child(4) {
    animation-delay: 0.5s;
}

.top-headline-p i:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes starSlideIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Navbar Styling */
.navbar {
    padding: 1.2rem 5rem;
    background-color: transparent;
    /* Changed to handle scroll state */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Inter", sans-serif;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

/* Scrolled Navbar state */
.navbar.scrolled {
    padding: 0.7rem 5rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .navbar-brand img {
    height: 42px;
    /* Slightly smaller logo on scroll */
}


.navbar-brand img {
    height: 65px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding: 0.5rem 1.5rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link i {
    font-size: 12px;
    margin-left: 5px;
    color: #0055A0;
}

/* Dropdown Sub-menu on Hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
    z-index: 10000;
}

.nav-item.dropdown:hover .dropdown-item {
    animation: slideInDropdown 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes slideInDropdown {
    from {
        opacity: 0;
        transform: translateY(10px) translateX(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* More depth */
    border-radius: 16px;
    /* Modern rounding */
    padding: 12px;
    min-width: 220px;
    margin-top: 5px;
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    background-color: rgba(255, 255, 255, 0.95);
}

.dropdown-item {
    opacity: 0;
    /* Hidden initially for animation */
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #444;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: rgba(208, 172, 128, 0.1);
    /* Subtle background on hover */
    color: var(--primary-color);
    transform: translateX(8px);
}

/* Link Underline Animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* Button Styling */
.btn-get-in-touch {
    background-color: var(--primary-color);
    color: #313131;
    border: none;
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #d0ac804d;
    font-size: 18px;
}

.btn-get-in-touch:hover {
    background-color: #BD986B;
    /* Slightly darker gold */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 172, 128, 0.4);
}

/* Dropdown Logic Fixes for Bootstrap */
.dropdown-toggle::after {
    display: none;
}

/* Hero Section Styling */
.hero-section {
    padding: 0px 40px 20px 40px;
    background-color: #ffffff;
    position: relative;
    /* Base for absolute banner on desktop */
}


.hero-container {
    height: 80vh;
    min-height: 600px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%), url('../assets/hero-section-aarohan.png');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); */
    padding-bottom: 120px;
    /* Space for the absolute banner */
}

@media (min-width: 1400px) {
    .hero-container {
        min-height: 800px;
        padding-bottom: 180px;
        /* More space on large screens */
    }

    .hero-title {
        font-size: 90px;
    }
}


.hero-text-area {
    padding: 0 80px;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 77px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    font-family: 'Inter', sans-serif;
}

.hero-title-services {
    font-size: 55px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    font-family: 'Inter', sans-serif;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
    font-family: 'Inter', sans-serif;
}

.hero-subtitle-services {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
    font-family: 'Inter', sans-serif;
}

.hero-btns .btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary-hero {
    background-color: var(--primary-color);
    color: #313131;
    border: 2px solid var(--primary-color);
}

.btn-primary-hero:hover {
    background-color: #BD986B;
    border-color: #BD986B;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(208, 172, 128, 0.2);
}

.btn-outline-hero {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.btn-outline-hero:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-bottom-banner {
    position: absolute;
    bottom: 20px;
    /* Match hero-section bottom padding */
    left: 40px;
    right: 40px;
    background-color: #0055A0;
    /* Matches secondary color */
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-size: 40px;
    font-weight: 600;
    z-index: 3;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}


/* Mobile Adjustments for Hero */
@media (max-width: 991px) {
    .hero-section {
        padding: 10px 15px;
    }

    .hero-container,
    .hero-container-about,
    .hero-container-services {
        height: auto;
        min-height: 500px;
        padding-top: 60px;
        padding-bottom: 120px;
        border-radius: 20px;
        text-align: center;
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%), var(--hero-bg) !important;
    }

    .hero-container {
        --hero-bg: url('../assets/hero-section-aarohan.png');
    }

    .hero-container-about {
        --hero-bg: url('../assets/about-mobile.jpg');
    }

    .hero-container-services {
        --hero-bg: url('../assets/hero-section-aarohan.png');
    }

    .hero-text-area {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 38px;
        margin-top: 5px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 10px;
    }

    .hero-btns .ms-3 {
        margin-left: 0 !important;
    }

    .hero-bottom-banner {
        font-size: 18px;
    }
    .accor-services-main-title {
        margin-bottom: 5px !important;
    }
    .accor-btn.active .accor-arrow{
        display: none !important;
    }
    .accor-services-layout{
        overflow: hidden !important;
    }
}

/* --- Custom Mobile/Tablet Menu CSS --- */
.nav-toggle-btn {
    display: none;
    font-size: 28px;
    color: var(--secondary-color);
    cursor: pointer;
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    visibility: hidden;
    overflow: hidden;
    transition: visibility 0s linear 0.5s;
    /* Wait for slide-out to finish */
}



.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 18, 44, 0.4);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-inner {
    position: absolute;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100%;
    background: #03122C;
    /* Deep theme blue */
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow-y: scroll;
}

.mobile-side-menu.active {
    visibility: visible;
    transition-delay: 0s;
}


.mobile-side-menu.active .menu-overlay {
    opacity: 1;
}

.mobile-side-menu.active .menu-inner {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.menu-header img {
    filter: brightness(0) invert(1);
    /* Make logo white for dark theme */
}

.close-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #ffffff;
}

.menu-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 19px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link.active {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-nav-link.active i {
    color: var(--primary-color);
}

.mobile-nav-link i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile Dropdown Styling */
.mobile-dropdown-content {
    list-style: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 500px;
}

.mobile-dropdown.active .dropdown-toggle-btn i {
    transform: rotate(180deg);
}

.mobile-dropdown-content li a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.mobile-dropdown-content li a.active {
    color: var(--primary-color);
    font-weight: 500;
}

.menu-footer {
    margin-top: auto;
    padding-top: 30px;
}

.menu-footer-pics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.footer-pic-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1.2;
}

.footer-pic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Media Queries --- */

/* Mini Desktop & Landscape Tablet (992px to 1399px) */
@media (max-width: 1399px) and (min-width: 992px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .hero-container {
        height: auto;
        min-height: 600px;
        padding: 40px 0 140px 0;
        /* Extra space for absolute banner */
    }

    .hero-container-about {
        height: auto;
        min-height: 600px;
        padding: 40px 0 140px 0;
        /* Extra space for absolute banner */
    }

    .hero-container-services {
        height: auto;
        min-height: 600px;
        padding: 40px 0 140px 0;
        /* Extra space for absolute banner */
    }

    .hero-title {
        font-size: 47px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-bottom-banner {
        font-size: 25px;
    }
}

/* Tablet Portrait (768px to 991px) */

@media (max-width: 991px) and (min-width: 768px) {
    .navbar .navbar-collapse {
        display: none !important;
    }

    .nav-toggle-btn {
        display: block;
    }

    .menu-inner {
        width: 350px;
    }

    .hero-section {
        padding: 0 40px 10px 40px;
    }

    .hero-container {
        height: auto;
        min-height: 500px;
        padding: 80px 0 100px 0;
        /* Add bottom padding to give gap */
        border-radius: 30px;
        /* Restore all rounded corners */
        text-align: left;
        /* Revert to left align */
    }

    .hero-container-about {
        height: auto;
        min-height: 500px;
        padding: 80px 0 100px 0;
        /* Add bottom padding to give gap */
        border-radius: 30px;
        /* Restore all rounded corners */
        text-align: left;
        /* Revert to left align */
    }

    .hero-container-services {
        height: auto;
        min-height: 500px;
        padding: 80px 0 100px 0;
        /* Add bottom padding to give gap */
        border-radius: 30px;
        /* Restore all rounded corners */
        text-align: left;
        /* Revert to left align */
    }

    .hero-text-area {
        padding: 0 40px;
        margin: 0;
    }

    .hero-title {
        font-size: 54px;
    }

    .hero-bottom-banner {
        position: static;
        font-size: 24px;
        border-radius: 20px;
        margin-top: 15px;
        /* Standalone look */
    }
}



/* Mobile (Up to 767px) */
@media (max-width: 767px) {
    .navbar {
        padding: 1rem 1.5rem !important;
    }

    .navbar .navbar-collapse {
        display: none !important;
    }

    .nav-toggle-btn {
        display: block;
    }

    .menu-inner {
        width: 100%;
    }

    .menu-header {
        margin-bottom: 25px;
    }

    .mobile-nav-link {
        font-size: 17px;
        padding: 12px 0;
    }

    .menu-footer-pics {
        gap: 10px;
    }

    .hero-section {
        padding: 0 15px 10px 15px;
    }
.navbar-brand img{
    height: 45px;
}
   
    .hero-container-about,
    .hero-container-services {
        height: auto;
        min-height: 520px;
        padding: 60px 0 100px 0;
        border-radius: 20px;
        text-align: center;
        background-position: 70% center;
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%), var(--hero-bg) !important;
    }
     .hero-container{
        height: auto;
        min-height: 520px;
        padding: 60px 0 100px 0;
        border-radius: 20px 20px 0 0;
        text-align: center;
        background-position: 70% center;
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%), var(--hero-bg) !important;
     }
    .hero-container {
        --hero-bg: url('../assets/hero-section-aarohan.png');
    }

    .hero-container-about {
        --hero-bg: url('../assets/about-mobile.jpg');
    }

    .hero-container-services {
        --hero-bg: url('../assets/hero-section-aarohan.png');
    }

    .hero-text-area {
        padding: 0 20px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.25;
    }

    .desktop-br {
        display: none;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
        margin: 0 !important;
        padding: 12px;
        font-size: 16px;
    }

    .hero-bottom-banner {
        position: static;
        font-size: 16px;
        border-radius: 0 0 20px 20px;
        padding: 15px 10px;
        margin: 0;
        background-color: #004480;
    }
}

/* Numbering Section */
.container {
    max-width: 1540px;
}

.num-section {
    padding: 20px 0 0 0;
    background-color: #ffffff;
}

.num-row {
    justify-content: center;
    gap: 0;
}

.num-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.num-item:hover {
    transform: translateY(-5px);
}

.num-count {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.num-label {
    font-size: 14px;
    color: #666666;
    margin: 0;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 40px 0 100px 0;
    background-color: #ffffff;
}

.about-container {
    background-color: #F5F3ED;
    border-radius: 40px;
    padding: 0px 20px 0 0;
    overflow: hidden;
}

.we-are-container {
    background-color: transparent;
    border-radius: 40px;
    padding: 0px 20px 0 0;
    overflow: hidden;
}

.about-main-img {
    border-radius: 30px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-text-wrapper {
    padding-left: 20px;
}

.about-title {
    font-size: 53px;
    font-weight: 600;
    color: #313131;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.about-desc {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-cta {
    margin-top: 30px;
    font-size: 18px;
}

/* Responsive Adjustments for new sections */
@media (max-width: 1399px) and (min-width: 992px) {
    .num-count {
        font-size: 36px;
    }

    .about-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .num-count {
        font-size: 32px;
    }

    .about-container {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .about-text-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .num-section {
        padding: 50px 0;
    }

    .num-item {
        padding: 15px 5px;
    }

    .num-count {
        font-size: 28px;
    }

    .num-label {
        font-size: 12px;
    }

    .about-title {
        font-size: 30px;
    }

    .about-desc {
        font-size: 16px;
    }

    .we-are-container {
        padding: 10px !important;
    }

    .about-main-img {
        border-bottom-right-radius: 40px;
        border-top-right-radius: 40px;
    }
}

/* Slider Section */
.slider-section {
    padding: 0 0 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.slider-main-title {
    font-size: 40px;
    font-weight: 700;
    color: #03122C;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.slider-wrapper-outer {
    position: relative;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    padding: 20px 0;
}

.slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.slider-card {
    flex: 0 0 calc((100% - 90px) / 3.5);
    /* Show 3.5 cards */
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    padding: 0px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.slider-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(208, 172, 128, 0.3);
}

.slider-img-wrap {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.slider-card:hover .slider-img {
    transform: scale(1.1);
}

.slider-info {
    padding: 0 20px 20px 20px;
}

.slider-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #03122C;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slider-card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Slider Nav Buttons */
.slider-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #313131;
}

.slider-nav-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

/* Progress Bar */
.slider-progress-container {
    width: 600px;
    margin: 50px auto 0;
    background: rgba(0, 0, 0, 0.05);
    height: 2px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 10px;
    transition: transform 0.2s ease-out;
    transform-origin: left;
}

/* Responsive Slider */
@media (max-width: 1399px) {
    .slider-card {
        flex: 0 0 calc((100% - 60px) / 2.8);
    }
}

@media (max-width: 1199px) {
    .slider-card {
        flex: 0 0 calc((100% - 30px) / 2.2);
    }

    .slider-progress-container {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .slider-card {
        flex: 0 0 85%;
    }

    .slider-wrapper-outer {
        padding: 0 15px;
    }

    .slider-nav-btn {
        display: none;
    }

    .slider-main-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

/* ============================================
   CONSULTATION SECTION — 3-Panel Full Width
   ============================================ */
.consultation-section {
    display: flex;
    width: 100%;
    min-height: 380px;
    overflow: hidden;
}

/* LEFT PANEL — Dark Navy */
.consultation-left-panel {
    flex: 0 0 31%;
    background-color: #03122C;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.consultation-left-title {
    font-size: 53.6px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.consultation-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.consultation-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.consultation-check {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* CENTER PANEL — Image */
.consultation-img-panel {
    flex: 0 0 37%;
    position: relative;
    overflow: hidden;
}

.consultation-center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* RIGHT PANEL — Bright Blue */
.consultation-right-panel {
    flex: 1;
    background-color: #0055A0;
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultation-right-title {
    font-size: 53.6px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px;
    max-width: 400px;
}

.consultation-right-desc {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 340px;
}

.consultation-cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #313131;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-cta-btn:hover {
    background-color: #BD986B;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Consultation Responsive */
@media (max-width: 1199px) {
    .consultation-left-panel {
        padding: 44px 36px;
        flex: 0 0 30%;
    }

    .consultation-left-title {
        font-size: 32px;
    }

    .consultation-right-panel {
        padding: 44px 40px;
    }

    .consultation-right-title {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .consultation-section {
        flex-direction: column;
        min-height: unset;
    }

    .consultation-left-panel,
    .consultation-img-panel,
    .consultation-right-panel {
        flex: unset;
        width: 100%;
    }

    .consultation-img-panel {
        height: 320px;
    }

    .consultation-left-panel,
    .consultation-right-panel {
        padding: 44px 32px;
    }
}

@media (max-width: 767px) {
    .consultation-left-title {
        font-size: 28px;
        margin-bottom: 20px;
        align-self: flex-start;
    }

    .consultation-right-title {
        font-size: 26px;
    }

    .consultation-right-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .consultation-img-panel {
        height: 260px;
    }

    .consultation-left-panel,
    .consultation-right-panel {
        padding: 36px 24px;
        align-items: flex-start;
    }
}


/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-works-section {
    padding: 80px 0 70px 0;
    background-color: #F5F3ED;
    overflow: hidden;
    position: relative;
}

/* Header */
.how-works-header {
    text-align: center;
    padding: 0 40px;
    margin-bottom: 48px;
}

.how-works-title {
    font-size: 54.7px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.15;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.how-works-title-bold {
    font-weight: 700;
    color: #1a1a1a;
}

/* Carousel outer — scrollable, no scrollbar */
.how-works-carousel-outer {
    overflow-x: scroll;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    padding: 8px 0 16px 0;
}

.how-works-carousel-outer::-webkit-scrollbar {
    display: none;
}

.how-works-carousel-outer:active {
    cursor: grabbing;
}

/* Track — left padding creates consistent left margin */
.how-works-track {
    display: flex;
    gap: 20px;
    /* Left padding = section left margin; right gives space for peeking card */
    padding-left: 60px;
    padding-right: 30px;
    will-change: transform;
}

/* Cards — width calc shows exactly 3 full cards + ~half of 4th visible */
/* Formula: (viewport - left_pad - 3 gaps) / 3.5 */
.how-works-card {
    flex: 0 0 calc((100vw - 120px - 3 * 20px) / 3.5);
    max-width: 453px;
    min-width: 220px;
    height: 318px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 28px 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.how-works-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Card title — top */
.how-works-card-title {
    font-size: 30px;
    font-weight: 600;
    color: #313131;
    line-height: 1.45;
    margin: 0;
    font-family: 'Inter', sans-serif;
    max-width: 75%;
}

/* Bottom row: + button left, big number right */
.how-works-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
}

/* Dark circle + button */
.how-works-plus-btn {
    width: 34px;
    height: 34px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    padding-bottom: 2px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.how-works-plus-btn:hover {
    background: #333;
    transform: scale(1.1);
}

/* Large faded step number */
.how-works-num {
    font-size: 100px;
    font-weight: 700;
    color: rgba(208, 172, 128, 0.45);
    font-family: 'Inter', sans-serif;
    line-height: 0.85;
    letter-spacing: -3px;
    position: absolute;
    right: 0;
    bottom: -8px;
    pointer-events: none;
    user-select: none;
}

/* Progress bar */
.how-works-progress-wrap {
    padding: 32px 60px 0 60px;
}

.how-works-progress-bg {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.how-works-progress-fill {
    height: 100%;
    width: 50%;
    background: #1a1a1a;
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Responsive */
@media (max-width: 991px) {

    /* On tablet: show 2 + half */
    .how-works-card {
        flex: 0 0 calc((100vw - 80px - 2 * 20px) / 2.5);
    }

    .how-works-track {
        padding-left: 40px;
        padding-right: 20px;
    }

    .how-works-progress-wrap {
        padding: 28px 40px 0 40px;
    }
}

@media (max-width: 767px) {
    .how-works-section {
        padding: 60px 0 50px 0;
    }

    .how-works-title {
        font-size: 32px;
    }

    /* On mobile: show 1 + half */
    .how-works-card {
        flex: 0 0 calc((100vw - 48px) / 1.4);
        min-width: 200px;
        height: 185px;
    }

    .how-works-track {
        padding-left: 24px;
        padding-right: 12px;
    }

    .how-works-progress-wrap {
        padding: 24px 24px 0 24px;
    }

    .how-works-card-title {
        font-size: 18px;
    }

    .form-right-panel {
        display: none !important;
    }
}


/* ============================================
   PROPERTY TESTIMONIAL SECTION
   ============================================ */
.property-section {
    padding: 0px 30px 50px 30px;
    background-color: #EEEAE4;
}

.about-property-section {
    padding: 0px 30px 50px 30px;
    background-color: none;
}

.property-inner {
    position: relative;
    width: 100%;
    min-height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
        url('../assets/property.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 80px;
}

.about-property-inner {
    position: relative;
    width: 100%;
    /* min-height: 280px; */
    border-radius: 20px;
    overflow: hidden;
    background-color: #0055A0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 80px;
}

.property-author {
    font-size: 25px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.about-property-author {
    font-size: 53px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.property-quote {
    font-size: 43px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
    max-width: 750px;
}

.about-property-quote {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
    max-width: 800px;
    line-height: 32px;
}

/* Property Responsive */
@media (max-width: 991px) {
    .property-section {
        padding: 40px 20px;
    }

    .property-inner {
        padding: 50px 40px;
        min-height: 240px;
    }

    .property-quote {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .property-section {
        padding: 30px 15px;
    }

    .property-inner {
        padding: 40px 24px;
        min-height: 200px;
        border-radius: 14px;
    }

    .property-quote {
        font-size: 17px;
    }

    .property-author {
        font-size: 13px;
    }

    .about-property-inner {
        padding: 30px 10px;
        text-align: left;
    }

    .about-property-author {
        font-size: 30px;
    }

    .about-next {
        margin-top: 10px;
    }

    .trust-section-classname {
        padding-top: 0 !important;
    }

    .hero-title-services {
        font-size: 40px;
    }

    .hero-subtitle-services {
        font-size: 18px;
    }
}


/* ============================================
   FORM CONTACT SECTION
   ============================================ */
.form-section {
    display: flex;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    padding-bottom: 52px;
}

/* LEFT: dark form panel */
.form-left-panel {
    flex: 0 0 53%;
    background-color: #03122C;
    padding: 64px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px;
}

.form-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding: 14px 0;
    outline: none;
    width: 100%;
    transition: border-color 0.3s ease;
    margin-bottom: 18px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

.form-input:focus {
    border-bottom-color: var(--primary-color);
}

.form-textarea {
    resize: none;
    min-height: 80px;
}

.form-submit-row {
    margin-top: 28px;
}

.form-submit-btn {
    background: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    padding: 13px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.form-submit-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* RIGHT: image panel */
.form-right-panel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.form-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Form Responsive */
@media (max-width: 1199px) {
    .form-left-panel {
        padding: 56px 52px;
        flex: 0 0 55%;
    }

    .form-title {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .form-section {
        flex-direction: column;
        min-height: unset;
    }

    .form-left-panel {
        flex: unset;
        width: 100%;
        padding: 52px 40px;
    }

    .form-right-panel {
        flex: unset;
        width: 100%;
        height: 340px;
    }
}

@media (max-width: 767px) {
    .form-section {
        padding-bottom: 0;
    }

    .form-left-panel {
        padding: 44px 24px;
    }

    .form-title {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-right-panel {
        height: 260px;
    }
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    padding: 0 30px 30px 30px;
    background-color: transparent;
    /* Page background around the footer card */
    position: relative;
    overflow: hidden;
}

.footer-inner {
    background-color: #F5F3ED;
    border-radius: 40px;
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 260px;
    height: auto;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    display: inline-block;
    font-size: 16.7px;
    color: #93928E;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-link {
    text-decoration: none;
    color: #93928E;
}

.footer-links-list li a:hover {
    color: #03122C;
}

.footer-contact-info p {
    font-size: 16px;
    color: #93928E;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.footer-contact-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-color);
    margin-top: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.footer-contact-btn:hover {
    background: #03122C;
    color: #ffffff;
    border-color: #03122C;
}

.socials-label {
    font-size: 13px;
    color: rgba(49, 49, 49, 0.35);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.socials-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 34px;
    height: 34px;
    background-color: #03122C;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px);
    background-color: var(--primary-color);
    color: #313131;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    margin-top: 20px;
    /* border-top: 1px solid rgba(49, 49, 49, 0.05);  */
    font-size: 13px;
    color: rgba(49, 49, 49, 0.3);
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 3;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.footer-legal a:hover {
    border-bottom-color: rgba(49, 49, 49, 0.3);
}

.footer-bg-text {
    font-size: 200px;
    font-weight: 700;
    color: #3e3f4427;
    text-align: center;
    line-height: 0.6;
    margin-bottom: 15px;
    letter-spacing: -5px;
    user-select: none;
    position: relative;
    z-index: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

/* Footer Responsive */
@media (max-width: 1199px) {
    .footer-bg-text {
        font-size: 240px;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

   
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 30px;
    }

    .footer-logo {
        margin: 10px auto 0 auto;
        width: 150px;
    }

    .socials-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 0;
        padding-top: 0;
    }

    .footer-bg-text {
        font-size: 50px;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
        left: 0;
        top: 0;
        transform: none;
        position: relative;
        letter-spacing: 2px;
    }

    .footer-inner {
        padding: 0 40px;
        border-radius: 0px !important;
    }

    .footer-section {
        padding: 0px;
    }
}

/* About */

.hero-container-about {
    height: 40vh;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%), url('../assets/about-hero-aarohan.png');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding-bottom: 100px;
    /* Space for the absolute banner */
}

.hero-container-contact {
    height: 40vh;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%), url('../assets/contact-us.png') !important;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding-bottom: 100px;
    /* Space for the absolute banner */
}

.hero-container-services {
    height: 40vh;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%), url('../assets/affidavit.png');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding-bottom: 100px;
    /* Space for the absolute banner */
}

/* Transparency & Trust Section */
.trust-section-classname {
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-section-classname-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: url('../assets/trust-bg.png') no-repeat center center;
    background-size: cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-section-classname-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    /* Blackish layer */
    z-index: 1;
}

.trust-section-classname-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px;
    color: #ffffff;
}

.trust-section-classname-card-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.trust-section-classname-card-desc {
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
}

.trust-section-classname-goal {
    padding-top: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-section-classname-goal-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.trust-section-classname-goal-desc {
    font-size: 16.5px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.trust-section-classname-goal-cta {
    font-size: 19px;
    font-weight: 700;
    color: #0055A0;
    /* Trust blue */
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Responsive for Trust Section */
@media (max-width: 991px) {
    .trust-section-classname-card {
        min-height: 450px;
        border-radius: 30px;
    }

    .trust-section-classname-card-title,
    .trust-section-classname-goal-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .trust-section-classname {
        padding: 60px 0;
    }

    .trust-section-classname-card {
        border-radius: 20px;
        min-height: auto;
        padding: 50px 20px;
        margin-bottom: 40px;
    }

    .trust-section-classname-card-title,
    .trust-section-classname-goal-title {
        font-size: 30px;
    }

    .trust-section-classname-card-content {
        padding: 10px;
    }

    .trust-section-classname-card-desc,
    .trust-section-classname-goal-desc {
        font-size: 15px;
    }

    .trust-section-classname-goal-cta {
        font-size: 17px;
    }
}

/* ============================================
   ACCORDION SERVICES SECTION
   ============================================ */
.accor-section-services {
    padding: 0 0 100px 0;
    background-color: #ffffff;
}

.accor-services-main-title {
    font-size: 53px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #313131;
    font-family: 'Inter', sans-serif;
}

.accor-services-layout {
    display: flex;
    align-items: stretch;
    /* max-width: 1200px; */
    margin: 0 auto;
    position: relative;
}

.accor-btns-col {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.accor-btn {
    padding: 20px 30px;
    background: #ffffff;
    border: 1px solid #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    color: #313131;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
    font-family: 'Inter', sans-serif;
    margin-bottom: -1px;
    /* Overlap borders */
    right: -10px;
}

/* Active Button State */
.accor-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #1a1a1a;
    z-index: 5;
    right: -10px;
    font-weight: 800;
}

/* The Triangle Arrow */
.accor-arrow {
    display: none;
    position: absolute;
    right: -14px;
    /* Sticks out into content col */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--primary-color);
    z-index: 10;
}

.accor-btn.active .accor-arrow {
    display: block;
}

/* Content Area */
.accor-content-col {
    flex: 1;
    background-color: #2B3E63;
    /* Dark navy-blue from image */
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.accor-content-pane {
    display: none;
    padding: 25px 50px 0px 50px;
    height: 100%;
}

.accor-content-pane.active {
    display: flex;
    flex-direction: column;
    animation: accorFadeIn 0.5s ease forwards;
}

@keyframes accorFadeIn {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.accor-desc {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.extra-para {
    color: rgba(255, 255, 255, 0.85);
}

.accor-section-wrap {
    margin-bottom: 35px;
}

.accor-sub-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.accor-list {
    list-style: none;
    padding: 0;
}

.accor-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.accor-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.accor-ol {
    list-style: none;
    padding: 0;
    counter-reset: accor-counter;
}

.accor-ol li {
    counter-increment: accor-counter;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.accor-ol li::before {
    content: counter(accor-counter) ". ";
    color: var(--primary-color);
    font-weight: 700;
}

.accor-ol li span {
    color: #ffffff;
    font-weight: 700;
    margin-right: 5px;
}

/* Footer Section of Pane */
.accor-pane-footer {
    margin-top: auto;
    /* Push to bottom */
    width: 100%;
}

.accor-cta-btn {
    display: block;
    width: 100%;
    padding: 22px;
    background-color: var(--primary-color);
    color: #313131;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    transition: all 0.3s ease;
}

.accor-cta-btn:hover {
    background-color: #c09d6e;
    color: #ffffff;
}

/* Responsive Accor */
@media (max-width: 991px) {
    .accor-services-layout {
        display: flex;
        flex-direction: column;
    }

    .accor-btns-col, 
    .accor-content-col {
        display: contents; /* Allows interleaving of children in the parent flex container */
    }

    /* Interleave Buttons and Panes using order */
    .accor-btns-col .accor-btn:nth-child(1) { order: 1; }
    .accor-content-col .accor-content-pane:nth-child(1) { order: 2; }
    
    .accor-btns-col .accor-btn:nth-child(2) { order: 3; }
    .accor-content-col .accor-content-pane:nth-child(2) { order: 4; }
    
    .accor-btns-col .accor-btn:nth-child(3) { order: 5; }
    .accor-content-col .accor-content-pane:nth-child(3) { order: 6; }
    
    .accor-btns-col .accor-btn:nth-child(4) { order: 7; }
    .accor-content-col .accor-content-pane:nth-child(4) { order: 8; }
    
    .accor-btns-col .accor-btn:nth-child(5) { order: 9; }
    .accor-content-col .accor-content-pane:nth-child(5) { order: 10; }
    
    .accor-btns-col .accor-btn:nth-child(6) { order: 11; }
    .accor-content-col .accor-content-pane:nth-child(6) { order: 12; }

    .accor-btns-col .accor-btn:nth-child(7) { order: 13; }
    .accor-content-col .accor-content-pane:nth-child(7) { order: 14; }

    .accor-btns-col .accor-btn:nth-child(8) { order: 15; }
    .accor-content-col .accor-content-pane:nth-child(8) { order: 16; }

    .accor-pane-footer {
        order: 100; /* Ensure footer is always at the bottom */
    }

    .accor-btn {
        padding: 20px;
        right: 0 !important; /* Reset desktop offset */
        margin-bottom: 0;
    }

    .accor-btn.active {
        right: 0 !important; /* Reset desktop offset */
    }

    .accor-arrow {
        display: none !important; /* Hide the desktop side arrow */
    }

    .accor-content-pane {
        padding: 40px 25px;
        background-color: #2B3E63; /* Re-apply background lost from .accor-content-col */
        margin-bottom: 5px; /* Small gap before next button */
    }

    .accor-btns-col {
        margin-top: 20px;
    }
}

/* ============================================
   CONTACT US FORM SECTION
   ============================================ */
.contact-form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-form-title {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    font-family: 'Inter', sans-serif;
}

.contact-form-subtitle {
    font-size: 16px;
    color: #444444;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

.contact-us-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #DEDEDE;
    background: transparent;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-us-input::placeholder {
    color: #999;
}

.contact-us-input:focus {
    border-bottom-color: var(--primary-color);
}

.contact-us-textarea {
    resize: none;
    min-height: 40px;
    overflow: hidden;
}

.contact-us-submit-btn {
    padding: 14px 60px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(208, 172, 128, 0.3);
}

.contact-us-submit-btn:hover {
    background-color: #c09d6e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 172, 128, 0.4);
}

/* Contact Info Card */
.contact-info-card {
    background-color: #F1E9DC;
    /* Light Tan cream background */
    border-radius: 35px;
    padding: 60px 40px;
    height: 100%;
}

.contact-info-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000000;
    font-family: 'Inter', sans-serif;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.contact-info-icon {
    font-size: 18px;
    color: var(--secondary-color);
    margin-top: 2px;
}

.contact-info-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.contact-info-text strong {
    font-weight: 700;
    color: #000;
}

.contact-info-business {
    margin-top: 40px;
}

.contact-business-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.contact-business-icon {
    font-size: 18px;
    color: var(--secondary-color);
}

.contact-business-row {
    display: flex;
    margin-left: 33px;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-business-row .day {
    min-width: 100px;
    font-weight: 600;
    color: #333;
}

.contact-business-row .time {
    color: #444;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-form-section {
        padding: 50px 0;
    }

    .contact-info-col {
        margin-top: 40px;
    }

    .contact-form-title {
        font-size: 40px;
    }

    .contact-info-card {
        padding: 40px 30px;
        border-radius: 25px;
    }
}

@media (max-width: 767px) {
    .contact-form-title {
        font-size: 32px;
    }

    .contact-info-title {
        font-size: 28px;
    }

    .contact-business-row .day {
        min-width: 80px;
    }
}

.map-section {
    width: 100%;
    padding-bottom: 80px;
}

.map-section iframe {
    filter: grayscale(0.2) contrast(1.1);
    /* Subtle aesthetic touch */
}

.card-link {
    text-decoration: none;

}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-zoom {
    transform: scale(0.9);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.5s;
}

.reveal-delay-4 {
    transition-delay: 0.7s;
}

.reveal-delay-5 {
    transition-delay: 0.8s;
}

.reveal-delay-6 {
    transition-delay: 0.9s;
}

.reveal-delay-7 {
    transition-delay: 1.0s;
}

.reveal-delay-8 {
    transition-delay: 1.1s;
}

.reveal-delay-9 {
    transition-delay: 1.2s;
}

.reveal-delay-10 {
    transition-delay: 1.3s;
}
/* ============================================================ */
/*  404 & THANK YOU PAGES (PREMIUM REDESIGN)                     */
/* ============================================================ */

.notfound-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: radial-gradient(circle at center, #fdfdfd 0%, #f4f4f4 100%);
    position: relative;
    overflow: hidden;
}

.notfound-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.notfound-glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: clamp(40px, 8vw, 80px);
    margin-bottom: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
    display: inline-block;
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.notfound-404-wrapper {
    position: relative;
}

.notfound-404-text {
    font-size: clamp(10rem, 30vw, 12rem);
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, var(--dim-color-dark) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.06em;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.notfound-404-label {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.4em;
    margin-top: 30px;
    text-transform: uppercase;
}

.notfound-wrapper.active .notfound-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--dim-color-dark);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.notfound-wrapper.active .notfound-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #666;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.notfound-wrapper.active .notfound-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Thank You Section Refined */
.thankyou-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: #ffffff;
}

.thankyou-wrapper {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.success-checkmark-svg {
    width: clamp(180px, 30vw, 250px);
    margin: 0 auto 50px;
}

.success-checkmark-svg svg {
    display: block;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.thankyou-wrapper.active .path.circle {
  animation: dash 2.5s ease-in-out forwards;
}

.thankyou-wrapper.active .path.check {
  stroke-dashoffset: -100;
  animation: dash-check 1s 1s ease-in-out forwards;
}

@keyframes dash {
  0% { stroke-dashoffset: 1000; }
  100% { stroke-dashoffset: 0; }
}

@keyframes dash-check {
  0% { stroke-dashoffset: -100; }
  100% { stroke-dashoffset: 900; }
}

.thankyou-wrapper.active .thankyou-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dim-color-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.thankyou-wrapper.active .thankyou-text {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #555;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thankyou-wrapper.active .thankyou-btns {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Base Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Outline Button for Light Background */
.btn-outline-dark {
    border: 2px solid #333;
    color: #333 !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
    font-size: 18px;
}

.btn-outline-dark:hover {
    background: #333;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .notfound-glass-card {
        padding: 50px 30px;
        border-radius: 40px;
    }
    
    .notfound-404-text {
        letter-spacing: -0.04em;
    }
    
    .notfound-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .notfound-btns .ms-md-3 {
        margin-left: 0 !important;
    }
    
    .btn-outline-dark, .btn-get-in-touch {
        width: 100%;
        max-width: 350px;
    }
}


 .aarohan-policy-classname {
    --primary-color: #D0AC80;
    --secondary-color: #0055A0;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #ffffff;
    padding: 2rem 1rem;
    margin: 0;
  }

  .aarohan-policy-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .aarohan-policy-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 0;
    letter-spacing: -0.5px;
  }

  .aarohan-policy-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .aarohan-policy-section:last-child {
    border-bottom: none;
  }

  .aarohan-policy-subtitle {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  .aarohan-policy-text {
    color: #374151;
    line-height: 1.65;
    font-size: 1rem;
    margin: 0;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .aarohan-policy-classname {
      padding: 1.5rem 1rem;
    }
    
    .aarohan-policy-title {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }
    
    .aarohan-policy-subtitle {
      font-size: 1.2rem;
    }
    
    .aarohan-policy-text {
      font-size: 0.95rem;
      line-height: 1.6;
    }
    
    .aarohan-policy-section {
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
    }
  }

  @media (max-width: 480px) {
    .aarohan-policy-title {
      font-size: 1.5rem;
    }
    
    .aarohan-policy-subtitle {
      font-size: 1.1rem;
    }
    
    .aarohan-policy-text {
      font-size: 0.9rem;
    }
  }

   .aarohan-terms-classname {
    --primary-color: #D0AC80;
    --secondary-color: #0055A0;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #ffffff;
    padding: 2rem 1rem;
    margin: 0;
  }

  .aarohan-terms-container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .aarohan-terms-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0;
    letter-spacing: -0.5px;
  }

  .aarohan-terms-intro {
    color: #374151;
    line-height: 1.65;
    font-size: 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
  }

  .aarohan-terms-card {
    background: #fafaf9;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
  }

  .aarohan-terms-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 85, 160, 0.08);
  }

  .aarohan-terms-subtitle {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  .aarohan-terms-text {
    color: #374151;
    line-height: 1.65;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
  }

  .aarohan-terms-text:last-child {
    margin-bottom: 0;
  }

  .aarohan-terms-text strong {
    color: var(--secondary-color);
    font-weight: 600;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .aarohan-terms-classname {
      padding: 1.5rem 0.75rem;
    }
    
    .aarohan-terms-title {
      font-size: 1.75rem;
    }
    
    .aarohan-terms-intro {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }
    
    .aarohan-terms-card {
      padding: 1rem 1.25rem;
      border-radius: 14px;
    }
    
    .aarohan-terms-subtitle {
      font-size: 1.15rem;
    }
    
    .aarohan-terms-text {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    .aarohan-terms-title {
      font-size: 1.5rem;
    }
    
    .aarohan-terms-card {
      padding: 0.875rem 1rem;
    }
    
    .aarohan-terms-subtitle {
      font-size: 1.05rem;
    }
    
    .aarohan-terms-text {
      font-size: 0.85rem;
    }
  }