:root {
    --main: #1C3A2E;
    --text-subtle: #1A1A1A;
    --text-emphasis: #555555;
    --main-bg: #F5F2EC;
    --main-subtle: #E8E4DC;
    --warning-main: #C8A96E;
    --bg-light: #f7f7f7;
    /* rough upper correct  */
    --white: #ffffff;
    --black: #0a0a0a;
    --accent: #C8A96E;
    --bg: #f3f0ec;
    --card-bg: #f7f5f2;
    --border: #e2ddd8;
    --text-muted: #8a8278;
    --text-body: #4a4540;
    --text-main: #7d7c7b;
    --main-font: 75px;
    --sub-heading: 56px;
    --heading-md: 32px;
    --heading-sm: 24px;
    --font-pg: 16px;
    --heading-md-m: 25px;
    --border-rd: 26px;
    /* Font Families */
    --font-heading: "Georgia", serif;
    --font-body: "Arial", sans-serif;
}

html {
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    overflow-x: hidden;
}

.card-body {
    padding: 20px;
}


/* sub-heading */

.heading-main{
    font-family: var(--font-heading) !important;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.02;
    color: var(--black);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.sub-heading {
    font-family: var(--font-heading) !important;
    font-size: var(--sub-heading);
    font-weight: 500;
    line-height: 1.02;
    color: var(--black);
    letter-spacing: -2px;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .sub-heading {
        font-size: 25px;
    }
}

.paragraph {
    font-size: var(--font-pg);
    color: var(--text-emphasis);
    font-family: var(--font-body);
}

h3 {
    font-size: var(--heading-md);
    font-family: var(--font-heading);
    color: var(--text-subtle);
}

@media (max-width: 480px){
   h3{ 
       font-size: var(--heading-sm);
}
}

h4 {
    font-family: var(--font-heading);
    font-size: var(--heading-sm);
    color: var(--text-subtle);
}

h5 {
    font-size: var(--font-pg);
    font-weight: 600;
    font-family: var(--font-heading);
}


/* custom button */

.custom-insight-btn {
    color: #1a1c1e;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 0;
    transition: all 0.3s ease;
}

.custom-insight-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background-color: #1a1c1e;
    transition: all 0.3s ease;
}

.custom-insight-btn .arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.custom-insight-btn:hover {
    color: #c9a03d;
    /* gold */
}

.custom-insight-btn:hover::after {
    background-color: #c9a03d;
}

.custom-insight-btn:hover .arrow {
    transform: translateX(5px);
}


/* end custom button  */


/* readmore button start */

.read-more {
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.read-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

.read-more .arrow {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--warning-main);
}

.read-more:hover::after {
    background-color: var(--warning-main);
    width: 60%;
}

.read-more:hover .arrow {
    transform: translateX(5px);
}


/* readmore button end  */


/* ── NAVBAR ── */

.nav-wrapper {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: calc(100% - 20px);
    transition: all 0.4s ease-in-out;
}

.nav-wrapper {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: calc(100% - 20px);
    transition: all 0.4s ease-in-out;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--white) !important;
    padding: 10px 25px !important;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 20%;
    width: 60%;
    height: 2px;
    background-color: var(--white);
    /* White underline on hero */
    transform: scaleX(0);
    /* Hidden by default */
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-wrapper.sticky {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-wrapper.sticky .nav-link {
    color: var(--main) !important;
}

.nav-wrapper.sticky .nav-link::after {
    background-color: var(--main) !important;
}

.nav-wrapper.sticky .nav-link:hover {
    color: #000 !important;
}

.nav-wrapper.sticky .nav-link:hover::after {
    background-color: #000 !important;
}

.navbar-toggler i {
    color: var(--white);
    font-size: 32px;
}

.nav-wrapper.sticky .navbar-toggler i {
    color: var(--main) !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* ── MOBILE OPTIMIZATION ── */

@media (max-width: 480px) {
    .nav-wrapper:not(.sticky) {
        background-color: rgba(34, 34, 34, 0.813);
    }
    .navbar-nav .nav-link::after {
        bottom: 2px;
        left: 0;
        width: 100%;
    }
}


/* navbar end */


/* ── HERO ── */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slides-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.slide.active {
    opacity: 1;
}


/* Slide 1: Deep Forest / Mossy Green Tones */

.slide-1 {
    background-image: linear-gradient( 135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.45) 100%), url("./images/mussoorie-foothills.webp"), linear-gradient( 180deg, #3a4a3a 0%, #7a8a6a 30%, #b8c4aa 50%, #d4c8a8 70%, #8a7a5a 100%);
    background-size: cover;
    background-position: center;
}


/* Slide 2: Modern Architectural / Cool Slate Tones */

.slide-2 {
    background-image: linear-gradient( 135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%), url("./images/hero-2.webp"), linear-gradient( 160deg, #2a3a4a 0%, #4a6a7a 30%, #c8d4cc 55%, #e8e0cc 75%, #9a8a6a 100%);
    background-size: cover;
    background-position: center;
}


/* Slide 3: Earthy / Organic Minimalist Tones */

.slide-3 {
    background-image: linear-gradient( 120deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.6) 100%), url("./images/hero-d-3.webp"), linear-gradient( 200deg, #1a2a1a 0%, #3a5a3a 25%, #aab8a0 50%, #d8d0b8 72%, #6a5a3a 100%);
    background-size: cover;
    background-position: center;
}

@media (max-width: 480px){
    .slide-3 {
    background-image: linear-gradient( 120deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.6) 100%), url("./images/hero-3.webp"), linear-gradient( 200deg, #1a2a1a 0%, #3a5a3a 25%, #aab8a0 50%, #d8d0b8 72%, #6a5a3a 100%);
    background-size: cover;
    background-position: center;
}

}

/* Slide 4: Warm Sandstone / Brutalist Tones */

.slide-4 {
    background-image: linear-gradient( 150deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.5) 100%), url("./images/hero-4.webp"), linear-gradient( 170deg, #2a2a1a 0%, #5a5a3a 30%, #c4c0a8 52%, #dcd8c0 74%, #7a6a4a 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}


/* 3 vertical grid lines */

.hero-grid {
    position: absolute;
    /*inset: 0;*/
    z-index: 3;
    pointer-events: none;
    display: flex;
    justify-content: space-evenly;
}

.hero-grid-line {
    width: 1px;
    height: 100%;
    background: linear-gradient( 180deg, transparent 0%, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 72px;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: var(--sub-heading);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 0.93;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s 0.3s forwards ease;
}

@media (max-width: 480px) {
    .hero{
        height: 75vh;
    }
    .hero-headline {
        font-size: 32px;
    }
}

.hero-sub {
    font-size: var(--font-pg);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.861);
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 44px;
    max-width: 520px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.6s forwards ease;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--accent);
    color: var(--main);
    text-decoration: none;
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards ease;
}

.hero-btn:hover {
    background: var(--accent);
    transform: translateX(4px);
    color: var(--main);
}

.year-badge {
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 2px;
    font-family: var(--font-body);
    z-index: 10;
}

.slide-num {
    position: absolute;
    bottom: 48px;
    right: 48px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 2px;
    font-family: var(--font-body);
    z-index: 10;
}
.dots {
    position: absolute;
    bottom: 52px;
    left: 50px;
    z-index: 10;
    display: flex;
    gap: 12px; /* slightly more spacing for touch */
}

/* 🔥 Bigger clickable area */
.dot {
    width: 12px;                 /* touch size */
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;     /* keep invisible */
    border: none;
    padding: 0;
    cursor: pointer;
}

/* 🔹 Visible small dot (same design as yours) */
.dot::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.3s, transform 0.3s;
}

/* 🔥 Active state */
.dot.active::before {
    background: var(--white);
    transform: scale(1.3);
}

.progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    width: 0%;
    z-index: 20;
    animation: progress 5s linear infinite;
}


/* ── LANDSCAPE PHONES (height ≤ 500px) ── */

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100svh;
        padding: 90px 0 60px;
        align-items: flex-start;
    }
    .hero-content {
        padding-top: 24px;
    }
    .hero-headline {
        font-size: 36px;
        margin-bottom: 12px;
    }
    .hero-sub {
        margin-bottom: 20px;
        font-size: 13px;
    }
    .year-badge,
    .slide-num,
    .dots {
        display: none;
    }
}


/* about us section */


/* 1. Remove all padding/borders from section container */

.stats-section {
    padding: 90px 0 0 !important;
    background-color: #ffffff;
    /* Clean white background */
    border: none !important;
    overflow: hidden;
}

.stat-item {
    border-right: 1px solid #e0e0e0 !important;
    padding: 20px 25px;
    background: transparent;
}

@media (min-width: 768px) {
    .col-md-3:last-child .stat-item {
        border-right: none !important;
    }
}


/* 4. Entrance Animation */

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}


/* Typography Styling */

.stat-number {
    color: var(--warning-main)!important;
    /* Using your luxury gold/tan color */
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-suffix {
    color: var(--warning-main);
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-top: 15px;
    color: var(--text-subtle);
    font-family: --font-heading;
}


/* 5. Mobile Adjustment: Remove right borders, add bottom borders instead */

@media (max-width: 767px) {
    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 40px 0;
    }
    .col-12:last-child .stat-item {
        border-bottom: none !important;
    }
}


/* end about us section  */


/* project section start */

.projects-section {
    padding: 90px 0 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
    /* Prevents horizontal scroll during animations */
}

@media (max-width: 480px) {
    .projects-section {
        padding: 40px 0;
    }
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    position: relative;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: #222;
}

.control-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.projects-slider {
    margin: 0 -15px;
}

.slider-item {
    padding: 15px;
    outline: none;
}

.project-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #f5f2ec;
    padding: 30px;
    transition: 0.4s;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    color: inherit;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 600;
    /* color: #222; */
}

.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: 0.4s;
}

.project-card:hover .arrow-btn {
    background: var(--accent);
    color: #fff;
    transform: rotate(0deg);
}

.card-line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

.card-image {
    overflow: hidden;
    /*border-radius: 15px;*/
    height: 360px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

.slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: 0.4s;
}

.slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 10px;
    background: #ccc;
    border: none;
    text-indent: -9999px;
    transition: 0.4s;
}

.slick-dots li.slick-active {
    width: 40px;
}

.slick-dots li.slick-active button {
    background: var(--accent);
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
    display: flex !important;
}

@media (max-width: 576px) {
    .header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .slider-controls {
        width: 100%;
        justify-content: flex-start;
    }
}


/* end project section */


/* blog section start */

.achievement{
    padding: 90px 0 40px;
      background-color: #fff;
}
@media (max-width: 480px){
    .achievement {
    padding: 30px 0;
    /* Increased padding for luxury feel */
    background-color: #fff;
}
}

/* --- Home Journal Section --- */

.home-journal {
    padding: 90px 0 40px;
    /* Increased padding for luxury feel */
    background-color: #fff;
}
@media (max-width: 480px){
    .home-journal {
    padding: 30px 0;
    /* Increased padding for luxury feel */
    background-color: #fff;
}

}


/* Corrected Header Flexbox */

.journal-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Aligns button with the bottom of the text */
    margin-bottom: 60px;
}


/* Card Styling */

.journal-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    background-color: var(--main-bg);
    padding: 12px;
}

.journal-card:hover {
    transform: translateY(-12px);
}

.img-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 25px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.journal-card:hover .img-container img {
    transform: scale(1.1);
}


/* Floating Category Badge */

.journal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--main-bg);
    backdrop-filter: blur(5px);
    color: var(--charcoal);
    padding: 6px 15px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.journal-date {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--warning-main);
    display: block;
    margin-bottom: 12px;
}

.journal-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}


/* Mobile adjustments for Header */

@media (max-width: 768px) {
    .journal-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}


/* blog section end */


/* ── STATS SECTION ── */

.stats-section {
    background: var(--white);
    padding: 0 0 80px;
}

@media (max-width: 480px) {
    .stats-section {
        padding: 0 0 40px;
    }
}

.stats-section .row {
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.stat-card {
    padding: 40px;
    border-right: 4px solid #e0e0e0 !important;
    height: 100%;
}

.col-lg-3:last-child .stat-card {
    border-right: none;
}

.stat-label {
    font-family: var(--font-body);
    font-size: var(--font-pg);
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(52px, 5vw, 80px);
    font-weight: 400;
    color: var(--black);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.stat-desc {
    font-family: var(--font-body);
    font-size: var(--font-pg);
    font-weight: 300;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 0;
}


/* Animations */

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.slide.active {
    transition: opacity 1.4s ease;
}

.amenities-section {
    background: #f3f0ec;
    overflow: hidden;
    padding: 90px 0 80px;
}

@media (max-width: 480px) {
    .amenities-section {
        padding: 40px 0;
    }
}

.section-label {
    font-family: "Times New Roman", Times, serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--black);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 60px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.section-title span {
    color: var(--black);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient( to right, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-image: linear-gradient( to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollLeft 32s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.amenity-card {
    flex: none;
    width: 300px;
    overflow: hidden;
    background: #fffafa;
    border: 1px solid rgba(200, 184, 154, 0.12);
    transition: border-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.amenity-card:hover {
    border-color: rgba(200, 184, 154, 0.5);
    transform: translateY(-6px);
}

.card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.amenity-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(10, 10, 10, 0.7) 0%, transparent 50%);
}

.card-icon {
    width: 42px;
    height: 42px;
    background: rgba(250, 244, 233, 0.08);
    border: 1px solid rgba(200, 184, 154, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background 0.3s ease;
}

.amenity-card:hover .card-icon {
    background: rgba(200, 184, 154, 0.16);
}

.card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--black);
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.card-accent {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--black);
    margin-top: 12px;
    transition: width 0.3s ease;
}

.amenity-card:hover .card-accent {
    width: 60px;
}


/* footer section start */

.studio-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 5% 30px 5%;
    font-family: var(--font-body);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid #333;
    padding-bottom: 60px;
}


/* --- Left Column --- */

.logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.cta-text {
    font-family: var(--font-heading);
    font-size: var(--heading-md);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
}

.subtext {
    font-size: 0.9rem;
    color: var(--text-main);
    max-width: 350px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.consult-btn {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    padding: 12px 12px 12px 30px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.consult-btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateX(4px);
}

.arrow-circle {
    background: var(--black);
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}


/* --- Center Column --- */

.menu-label {
    color: #666;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.footer-nav a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: var(--heading-sm);
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 5px;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.6;
}


/* --- Right Column --- */

.contact-info {
    text-align: left;
}

.address-block {
    color: var(--white);
    font-size: var(--font-pg);
    line-height: 0.5;
}

.email-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    padding-bottom: 5px;
}

.social-links {
    border-top: 1px solid #444;
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    border: 1px solid #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    transition: border-color 0.3s;
}

.social-links a:hover {
    border-color: var(--white);
}

.footer-image-container {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}

.footer-image-container img {
    width: 100%;
    display: block;
    object-fit: cover;
}


/* --- Bottom Bar --- */

.footer-bottom {
    padding-top: 25px;
    font-size: 0.75rem;
    color: #666;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom strong {
    color: #999;
}

@media (max-width: 480px){
    .cta-text {
    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
}
.studio-footer{
    padding: 20px 5% 20px 5%;
}
.footer-container{
    padding-bottom: 20px;
}
.email-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid #444;
    padding-bottom: 13px;
}
}

/* Responsive */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* our goals section */


/* Section */

.our-section {
    padding: 0 0 80px;
    background: #ffffff;
}

@media (max-width: 480px) {
    .our-section {
        padding: 10px 0 30px;
    }
}


/* .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
} */


/* Header */

.section-header {
    margin-bottom: 50px;
}


/* Grid */

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* Card */

.goal-card {
    background: #fff;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.goal-card:hover {
    transform: translateY(-10px);
}


/* Top gradient line */

.goal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d26826, #e5bb7b);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

.goal-card:hover::before {
    transform: scaleX(1);
}


/* Number */

.card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 70px;
    font-family: "Times New Roman", serif;
    color: rgba(179, 134, 67, 0.12);
    font-weight: 700;
}


/* Rule */

.card-rule {
    width: 40px;
    height: 2px;
    background: #b36e43;
    margin-bottom: 20px;
    transition: 0.4s;
}

.goal-card:hover .card-rule {
    width: 70px;
}


/* Title */

.card-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}


/* Responsive */

@media (max-width: 1100px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .goals-grid {
        grid-template-columns: 1fr;
    }
}


/* end our goals section */


/* start our project section  */

.projects-section {
    padding: 100px 0;
    background: #fff;
}


/* HEADER */

.title {
    font-size: 42px;
    color: #222;
    font-weight: 600;
}


/* GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* CARD */

.project-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--main-bg);
    padding: 35px;
    transition: 0.4s;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}


/* CARD HEADER */

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
}


/* ARROW */

.arrow-btn {
    width: 48px;
    height: 48px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
    transform: rotate(270deg);
}

.project-card:hover .arrow-btn {
    background: var(--accent);
    color: #fff4e5;
    transform: rotate(360deg);
}


/* LINE */

.card-line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 18px 0;
    color: black;
}


/* IMAGE */

.card-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    display: block;
}


/* 
.project-card:hover img {
    transform: scale(1.08);
} */


/* RESPONSIVE */

@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dots{
        display: none !important;
    }
    .projects-section {
        padding: 30px 0;
    }
    .title {
        font-size: 32px;
    }
    .project-card {
        padding: 25px;
    }
    .card-image{
        height: 200px;
    }
    .card-image img {
        height: 200px;
    }
}

@media (max-width: 500px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .card-header h3 {
        font-size: 20px;
    }
    .arrow-btn {
        width: 40px;
        height: 40px;
    }
    .card-image img {
        height: 190px;
    }
}


/* end our project section  */


/* ------------------------------------ 
contact section 
--------------------------------------- */

.contact-section {
    background-color: #fff;
}

.contact-wrapper {
    padding: 90px 0;
    position: relative;
}

@media (max-width: 480px) {
    .contact-wrapper {
        padding: 10px 0 30px;
    }
}

.small-heading {
    font-size: 1.8rem;
    /* Smaller, cleaner heading */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.text-accent {
    color: #d48d2b;
}


/* Compact Info Cards */

.premium-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    /* Slightly sharper corners */
    padding: 15px 20px;
    /* Tighter padding */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.premium-card:hover {
    transform: translateY(-3px);
    background: #f3f0ec;
    /* color: #ffffff; */
    border-color: #a8602f;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 45px;
    /* Scaled down icon size */
    height: 45px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 15px;
    transition: 0.3s;
}

.premium-card:hover .icon-box {
    background: rgba(239, 148, 92, 0.1);
    color: #d48d2b;
}

.card-label {
    font-size: 0.7rem;
    /* Very small labels */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
    display: block;
    margin-bottom: 2px;
}

.card-value {
    font-size: 0.95rem;
    /* Clean, small text */
    font-weight: 400;
}


/* Compact Map */

.map-section {
    overflow: hidden;
    height: 370px;
    /* Reduced fixed height */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2);
    /* Subtle desaturation */
}


/* vision section  */

/* SECTION */

.vision-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9fafc, #eef2f7);
}


/* CONTAINER */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* HEADER */

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header .subtitle {
    color: #ff4a3d;
    font-style: italic;
    font-size: 18px;
}

.section-header h2 {
    font-size: 42px;
    margin-top: 10px;
    color: #222;
}


/* GRID */

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}


/* CARD */

.vision-card {
    background: #fff;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    opacity: 0;
    transform: translateY(80px);
    position: relative;
    overflow: hidden;
}


/* ICON */

.icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff4a3d, #ff7b6f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 25px;
}

.icon.mission {
    background: linear-gradient(135deg, #2f80ed, #56ccf2);
}


/* TEXT */

.vision-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.vision-card p {
    color: #666;
    line-height: 1.7;
}


/* HOVER EFFECT */

.vision-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}


/* SCROLL ANIMATION */

.vision-card.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .vision-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 32px;
    }
}


/* achievement section start */

:root {
    --light-gray: var(--main-subtle);
    --border-color: #e0e0e0;
    --accent-gold: var(--warning-main);
    --dark-text: var(--text-main);
}

.achievement-wrapper {
    padding: 90px 0 80px;
    background: var(--main-bg);
}

@media (max-width: 480px) {
    .achievement-wrapper {
        padding: 40px 0;
    }
}


/* List Design */

.list-container {
    border-top: 1px solid var(--border-color);
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px 10px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.list-item:hover {
    background-color: var(--light-gray);
    padding-left: 40px;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-emphasis);
}

.list-item:hover h3 {
    color: var(--accent-gold);
    font-weight: 600;
}


/* Image Display Logic */

.image-preview-box {
    position: sticky;
    top: 100px;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease, transform 1s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.preview-img.active {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
    .image-preview-box {
        height: 300px;
        margin-bottom: 40px;
        position: relative;
        top: 0;
    }
    .list-item {
        padding: 25px 10px;
    }
}


/* achievement section end  */


/* contact page css --------------------------------------------------------------------------- */

 :root {
    --brand-gold: var(--warning-main);
    --brand-gold-dark: #b5895e;
    --dark-bg: var(--main);
    --glass-white: rgba(255, 255, 255, 0.92);
}


/* --- Hero Section --- */

.contact-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('./images/hdmountainhighdevelopers-bg.webp');
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed;*/
    color: white;
    text-align: center;
    justify-content: center;
    align-content: center;
    height: 82vh;
}

.banner-heading {
    font-size: 56px;
    font-family: var(--font-heading);
    font-weight: 700;
}

@media (max-width: 480px){
    .banner-heading{
        font-size: 28px;
        padding-top: 20px;
    }
}

.banner-paragraph {
    font-size: 18px;
    font-family: var(--font-body);
}


/* --- Info Cards --- */

.contact-get {
    padding: 90px 0 80px;
    background-color: var(--main-bg);
}

@media (max-width: 480px){
    .contact-get{
        padding: 40px 0;
    }
    .info-card{
        padding: 10px !important; 
    }
    .contact-link{
        font-size: 14px !important;
    }
}

.info-card {
    background: var(--main-subtle);
    padding: 25px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    min-width: 55px;
    height: 55px;
    background: #fff9f4;
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.3rem;
    border: 1px solid #f2e6db;
}


/* --- Premium Form Styling --- */

.glass-form-container {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    padding: 30px;
    position: relative;
}

@media (max-width: 480px){
   .glass-form-container{
        padding: 20px ;
   }
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--main);
    margin-bottom: 4px;
}

.form-control,
.form-select {
    border: 1.5px solid #edf2f7;
    padding: 12px 20px;
    background: #fdfdfd;
    transition: all 0.3s ease;
    border-radius: 0px;
}

.form-control:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.1);
    background: white;
}

.btn-premium {
    background: var(--warning-main);
    color: white;
    padding: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 0px !important;
    width: 100%;
}

.btn-premium:hover {
    background: var(--brand-gold);
    color: var(--white);
    transform: translateY(-3px);
}


/* --- Map Wrapper --- */

.map-wrapper {
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 10px solid white;
    margin-top: 50px;
    height: 80vh;
}


/* about us page css ---------------------------------------------------------------------- */

.section-padding {
    padding: 90px 0;
    background-color: #f7f7f7;
}

@media{
    .section-padding{
        padding: 40px 0;
    }
}


/* --- Story Section (Geometric Design) --- */

.story-box {
    border-left: 1px solid var(--border);
    padding-left: 60px;
    position: relative;
}

.story-box::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    width: 2px;
    height: 100px;
    background: var(--warning-main);
}


/* --- Vision/Mission (Typography Focus) --- */

.feature-grid {
    background-color: var(--main-bg);
    border-bottom: 1px solid var(--border);
}

.feature-item {
    padding: 30px 40px;
    height: 100%;
    transition: background 0.5s ease;
}

.feature-item:first-child {
    border-right: 1px solid var(--border);
}

.feature-item:hover {
    background: var(--main-subtle);
}

.huge-number {
    font-family: var(--font-heading) !important;
    font-size: 6rem;
    line-height: 1;
    opacity: 0.1;
    margin-bottom: -30px;
    display: block;
}

.tagline {
    font-size: 18px;
    font-weight: var(--font-body);
    font-weight: 500;
}


/* --- Animations --- */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .feature-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding: 19px ;;
    }
    .story-box {
        padding-left: 20px;
    }
}

}





