:root {
    --primary-blue: #1a2b48; /* Exact Dark Blue from image */
    --black: #000000;
    --white: #ffffff;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: var(--black);
    overflow-x: hidden;
}

/* Header Base */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* padding: 20px 0; */
    background: rgba(128, 128, 128, 0.2); /* Initial Gray Blur */
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

header.scrolled {
    background: #00186f; /* Turn Black on Scroll */
    /* padding: 12px 0; */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
}

/* Desktop Navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    /* text-transform: uppercase; */
    font-weight: 600;
    transition: 0.3s;
}

.nav-menu ul li a.active {
    color: var(--white); /* Keeping white/black/blue palette */
    border-bottom: 2px solid var(--white);
}

.close-btn {
    display: none; /* Hidden on Desktop */
}

/* Header Right Buttons */
.header-right {
    display: flex;
    align-items: center;
}

.enquiry-btn {
   background: #c7a456;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* HERO SECTION */

.hero{
    position:relative;
    width:100%;
    height:90vh; /* Desktop height */
    overflow:hidden;
    background:#000;
}

/* MOBILE HEIGHT */
@media(max-width:768px){
.hero{
    height:70vh;
}
}

/* VIDEO BACKGROUND */

.video-background{
    position:absolute;
    top:50%;
    left:50%;
    width:100%;
    height:100%;
    transform:translate(-50%,-50%);
    overflow:hidden;
    pointer-events:none;
}

/* YOUTUBE PLAYER */

#player{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    
    width:100vw;
    height:56.25vw; /* 16:9 */

    min-width:177.77vh;
    min-height:100vh;
}

/* MOBILE FIX */
@media(max-width:768px){

#player{
    width:100vw;
    height:56.25vw;
    min-height:70vh;
}

}

/* HERO OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    padding-bottom:50px;
}

/* SCROLL INDICATOR */

.scroll-indicator{
    color:#fff;
    text-align:center;
    font-size:14px;
    letter-spacing:1px;
}

.mouse-icon{
    width:22px;
    height:35px;
    border:2px solid #fff;
    border-radius:12px;
    margin:0 auto 10px;
    position:relative;
}

.mouse-icon::before{
    content:'';
    width:4px;
    height:6px;
    background:#fff;
    position:absolute;
    top:6px;
    left:50%;
    transform:translateX(-50%);
    border-radius:2px;
    animation:scroll 1.5s infinite;
}

@keyframes scroll{
0%{opacity:0; transform:translate(-50%,0)}
50%{opacity:1}
100%{opacity:0; transform:translate(-50%,10px)}
}


/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .enquiry-btn {
        display: none; /* Hide Enquiry button on Mobile as requested */
    }

    .mobile-toggle {
        display: block; /* Show hamburger */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%; /* Hide off-screen left */
        width: 80%;
        height: 100vh;
        background: var(--primary-blue);
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
        padding-left: 40px;
    }

    .nav-menu.active {
        left: 0; /* Slide in */
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu ul li {
        margin: 15px 0;
    }

    .close-btn {
        display: block; /* Show only on Mobile sidebar */
        position: absolute;
        top: 25px;
        right: 25px;
        color: var(--white);
        font-size: 28px;
        cursor: pointer;
    }
}

/* Popup Form Styles */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-form {
    background: var(--white);
    padding: 40px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.popup-form h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
}

.popup-form input, .popup-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.submit-btn {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--black);
}


.about-us {
        padding: 80px 5%;
        background-color: #f9f9f9;
        background-image: url('https://www.transparenttextures.com/patterns/p6.png');
        overflow: hidden;
    }

    .about-container {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: flex-start;
    }

    .about-left {
        flex: 1;
        min-width: 300px;
    }

    .about-left h2 {
        /* font-family: 'Times New Roman', Times, serif; */
        font-size: 43px;
        line-height: 1.2;
        color: #1a2b48;
        font-style: italic;
        
    }

    .about-right {
        flex: 1;
        min-width: 300px;
    }

    .about-right h3 {
        font-family: Arial, sans-serif;
        color: #000000;
        font-size:25px;
        font-weight: 900;
        margin-bottom: 20px;
        font-weight: normal;
    }

    .about-right p {
        /* font-family: Arial, sans-serif; */
        color: #000000;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: justify;
    }

    .letter {
        display: inline-block;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .letter.visible {
        opacity: 1;
        transform: translateX(0);
    }

    @media (max-width: 768px) {
        .about-left h2 {
            font-size: 28px;
        }
        .about-container {
            flex-direction: column;
        }
    }


    .project {
       
        background-color: #f9f9f9;
        background-image: url('https://www.transparenttextures.com/patterns/p6.png');
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 100px;
        width: 100%;
    }

    .project-container {
        width: 100%;
        max-width: 1300px; /* Fixed width for desktop as requested */
        margin: 0 auto;
        /* padding: 0 20px; */
        display: flex;
        justify-content: center;
    }

    .responsive-project-img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 15px;
        object-fit: contain;
        /* Ensures the image maintains its quality and doesn't get distorted */
    }

    /* Tablet and Mobile adjustments */
    @media (max-width: 1200px) {
        .project-container {
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .project {
            padding: 40px 0;
        }
        
        .project-container {
            padding: 0 15px;
        }
    }


/* Counting Section */
.counting {
    padding: 100px 5%;
    background-color: #fdfdfd;
    text-align: center;
    overflow: hidden;
}

.counting-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.counting-title {
    font-size: 42px;
    color: #1a2b48;
    margin-bottom: 60px;
    font-style: italic;
    font-weight: bold;
}

/* Letter Animation */
.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.letter.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* Adjusted to 3 columns for 3 stat items */
    gap: 30px;
    width: 100%;              /* ✅ FIXED */
}

/* Stat Item */
.stat-item {
    padding: 20px;
}

/* Numbers */
.number-wrapper {
    font-size: 30px;
    color: #8b2323;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 10px;
}

/* Description */
.stat-item p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Adjusted to 2 columns for tablets */
    }

    .counting-title {
        font-size: 32px;
    }

    .number-wrapper {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr; /* 1 column for mobile devices */
    }

    .counting {
        padding: 60px 5%;
    }

    .counting-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .number-wrapper {
        font-size: 28px;
    }

    .stat-item {
        padding: 15px 10px;
    }
}

html {
    scroll-behavior: smooth;
}

/* MAIN SECTION */
.new-projects {
    position: relative;
    width: 100%;
}

/* EACH PROJECT */
.new-projects .project-slide {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 1;
    transition: transform 0.6s ease-out;
}

/* Overlay */
.new-projects .project-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* LEFT ALIGN */
.new-projects .project-slide.left .project-overlay {
    justify-content: flex-start;
}

/* RIGHT ALIGN */
.new-projects .project-slide.right .project-overlay {
    justify-content: flex-end;
}

/* CONTENT BOX */
.new-projects .project-box {
    max-width: 600px;
    margin: 0 8%;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    color: #000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Headings */
.new-projects h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 500;
}

.new-projects p {
    font-size: 16px;
    line-height: 1.7;
}

/* Divider */
.new-projects .divider {
    height: 1px;
    background: #000;
    margin: 20px 0;
}

/* CONFIG LIST */
.new-projects .project-config {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.8;
}

/* Button */
.new-projects .enquire-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}

.new-projects .enquire-btn:hover {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .new-projects .project-box {
        margin: 0 5%;
        padding: 30px;
    }

    .new-projects h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    .new-projects .project-slide {
        background-position: center;
    }

    .new-projects .project-overlay {
        justify-content: center !important;
    }

    .new-projects .project-box {
        width: 90%;
        margin: 0 auto;
        padding: 25px;
    }
}




.tabs {
    padding: 100px 5%;
    background: #f5f3f0;
    text-align: center;
    overflow: hidden;
}

/* HEADING */
.tabs h2 {
    font-size: 42px;
    font-weight: 500;
    color: #282d6f;
    margin-bottom: 20px;
    /* letter-spacing: 10px; */
}

/* Letter Animation */
.animated-heading span span {
    display: inline-block;
    opacity: 0;
    transform: translateY(-40px);
    animation: letterDrop 0.6s forwards;
}

@keyframes letterDrop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tabs p {
    max-width: 700px;
    margin: auto;
    color: #000000;
}

/* BUTTONS */
.tab-buttons {
    margin-top: 30px;
}

.tab-btn {
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 600;
    margin: 5px;
    border-radius: 30px;
    border: 1px solid #999;
    background: transparent;
    cursor: pointer;
}

.tab-btn.active {
    border-color: #282d6f;
    color: #282d6f;
}

/* CAROUSEL */
.tabs-carousel {
    position: relative;
    margin-top: 60px;
}

.carousel-track {
    display: flex;
    gap: 40px;
    transition: 0.5s ease;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.project-card {
    min-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.project-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

/* NAV BUTTONS */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #282d6f;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

.prev { left: -20px; }
.next { right: -20px; }

/* RESPONSIVE */
@media(max-width: 768px) {
    .project-card {
        min-width: 280px;
    }
    .tabs h2 {
        font-size: 28px;
    }
}



.testimonial {
    padding: 80px 20px;
    background-color: #fdfdfd;
    overflow: hidden;
    position: relative;
}

.testimonial-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-title {
    color: #282d6f;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-style: italic;
    margin-bottom: 100px;
    font-weight: 600;
}

.testimonial-grid {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    perspective: 1200px;
}

.testimonial-card {
    position: absolute;
    background: #ffffff;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    width: 280px;
    z-index: 1;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: #282d6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(179, 57, 57, 0.5);
}

.play-button::after {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

.card-1 { transform: translateX(-400px) rotate(-12deg); }
.card-2 { transform: translateX(-200px) translateY(40px) rotate(-6deg); z-index: 2; }
.card-3 { transform: translateY(0) rotate(0deg); z-index: 3; }
.card-4 { transform: translateX(200px) translateY(40px) rotate(6deg); z-index: 2; }
.card-5 { transform: translateX(400px) rotate(12deg); }

.testimonial-card:hover {
    /* transform: scale(1.1) rotate(0deg) translateY(-30px) !important; */
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: -45px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1100px) {
    .testimonial-grid { height: auto; flex-wrap: wrap; gap: 20px; }
    .testimonial-card { position: relative; transform: none !important; width: calc(33% - 20px); }
}

@media (max-width: 768px) {
    .testimonial-card { width: calc(50% - 20px); }
    .testimonial-title { margin-bottom: 50px; }
}

@media (max-width: 480px) {
    .testimonial-card { width: 100%; max-width: 300px; }
}




.footer {
    background-color: #282d6f;
    color: #ffffff;
    padding: 60px 0 0 0;
    
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 25px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;
    max-width: 350px;
}

/* Newsletter Input */
.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 5px;
    max-width: 300px;
    margin-bottom: 25px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    width: 100%;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.newsletter-form button {
    background: #8b2323; /* Matching the red button in image */
    border: none;
    width: 45px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.fb { background: #1877F2; }
.ig { background: #E4405F; }
.yt { background: #FF0000; }
.in { background: #0077B5; }

/* Column Headings */
.footer-heading {
    color: #facd66; /* Reddish heading from image */
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #facd66;
}

/* Address Styling */
.address-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.address-item .icon {
    color: #999;
    font-size: 18px;
}

.address-item p, .address-item a {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
    text-decoration: none;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 14px;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    color: #aaa;
}

.bottom-links a {
    color: #aaa;
    text-decoration: none;
    margin-left: 25px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    .footer-description, .newsletter-form, .social-icons {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand { grid-column: span 1; }
    .address-item { justify-content: center; }
    .bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .bottom-links a { margin: 0 10px; }
}


/* ================= MOBILE PERFECT ALIGNMENT ================= */

@media (max-width: 768px) {

    .footer {
        padding-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 25px 50px;
    }

    /* Logo */
    .footer-logo {
        margin: 0 auto 20px;
        max-width: 160px;
    }

    .footer-description {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    /* Social Icons Center Perfectly */
    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    /* Headings Center */
    .footer-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Project Links Spacing */
    .footer-links ul {
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 15px;
    }

    /* Address Block - Clean Vertical Alignment */
    .address-item {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 25px;
    }

    .address-item i {
        font-size: 20px;
        margin-top: 0;
    }

    .address-item p,
    .address-item a {
        font-size: 14px;
        line-height: 1.6;
        max-width: 280px;
    }

    /* Bottom Section Clean Layout */
    .footer-bottom {
        padding: 20px 0;
    }

    .bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 13px;
    }

    .bottom-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .bottom-links a {
        margin: 0;
        font-size: 13px;
    }
}


.book-an-appointment {
    width: 100%;
    background: #f5f5f5;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.book-wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

/* LEFT SIDE */
.book-left {
    width: 45%;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-subtitle {
    letter-spacing: 4px;
    font-size: 13px;
    color: #c8a25e;
    font-weight: 600;
    margin-bottom: 20px;
}

.book-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2;
    color: #0b2c4d;
    margin-bottom: 40px;
}

.book-title span {
    color: #c8a25e;
}

.book-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.book-icon {
    width: 55px;
    height: 55px;
    background: #eaeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 18px;
    color: #c8a25e;
}

.book-info h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #0b2c4d;
}

.book-info p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* BUTTON */
.book-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: #0b2c4d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
    width: fit-content;
}

.book-btn:hover {
    background: #c8a25e;
    color: #000;
}

/* RIGHT SIDE */
.book-right {
    width: 55%;
}

.book-right iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: 0;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 1200px) {
    .book-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {

    .book-wrapper {
        flex-direction: column;
    }

    .book-left,
    .book-right {
        width: 100%;
    }

    .book-left {
        padding: 0 6%;
        margin-bottom: 50px;
    }

    .book-title {
        font-size: 36px;
    }

    .book-right iframe {
        min-height: 400px;
    }
}

@media (max-width: 576px) {

    .book-an-appointment {
        padding: 60px 0;
    }

    .book-left {
        padding: 0 20px;
    }

    .book-title {
        font-size: 28px;
    }

    .book-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

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

    .book-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .book-btn {
        width: 100%;
        text-align: center;
    }

    .book-right iframe {
        min-height: 300px;
    }
}



/* ============================= */
/* ABOUT HERO SECTION */
/* ============================= */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: url('../Images/about-inner-banner.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Overlay */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.55)
    ) !important;
    z-index: 1;
}

/* Content */
.about-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 0 20px;
}

/* Title */
.about-hero-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

/* Breadcrumb */
.about-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
}

.about-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
    opacity: 0.85;
}

.about-breadcrumb a:hover {
    opacity: 1;
}

.about-breadcrumb span {
    color: #ffffff;
    opacity: 0.7;
}

.about-breadcrumb .current {
    opacity: 1;
    font-weight: 500;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .about-hero-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 340px;
    }

    .about-hero-title {
        font-size: 30px;
    }

    .about-breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 300px;
    }

    .about-hero-title {
        font-size: 24px;
    }

    .about-breadcrumb {
        font-size: 13px;
        flex-wrap: wrap;
        gap: 6px;
    }
}




/* ============================= */
/* ABOUT PARA SECTION */
/* ============================= */

.about-para {
    width: 100%;
    background: #ffffff;
    padding: 100px 20px;
}

.about-para-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Wrapper */
.about-para-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Section */
.about-para-image {
    flex: 1;
}

.about-para-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

/* Content Section */
.about-para-content {
    flex: 1;
}

.about-para-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #888;
}

.about-para-content h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #111;
}

.about-para-content p {
    font-size: 16.5px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .about-para-wrapper {
        gap: 40px;
    }

    .about-para-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    .about-para {
        padding: 70px 20px;
    }

    .about-para-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-para-content h2 {
        font-size: 26px;
    }

    .about-para-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .about-para {
        padding: 60px 15px;
    }

    .about-para-content h2 {
        font-size: 22px;
    }

    .about-para-content p {
        font-size: 14px;
    }
}





/* ============================= */
/* VISION SECTION */
/* ============================= */

.vision {
    width: 100%;
    background: #0f0f12;
    padding: 100px 20px;
    color: #ffffff;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.vision-heading {
    text-align: center;
    margin-bottom: 70px;
}

.vision-heading h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vision-heading p {
    font-size: 16px;
    color: #b5b5b5;
}

/* Grid Layout */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Cards */
.vision-card {
    background: #1a1a1f;
    padding: 45px 35px;
    border-radius: 14px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
}

.vision-card p {
    font-size: 15.5px;
    line-height: 1.9;
    color: #cfcfcf;
}

/* Hover Effect */
.vision-card:hover {
    transform: translateY(-8px);
    background: #202028;
    border-color: rgba(255, 255, 255, 0.15);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .vision-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vision-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .vision {
        padding: 80px 20px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vision-heading h2 {
        font-size: 28px;
    }

    .vision-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {

    .vision {
        padding: 70px 15px;
    }

    .vision-heading h2 {
        font-size: 24px;
    }

    .vision-heading p {
        font-size: 14px;
    }

    .vision-card p {
        font-size: 14px;
    }
}




/* ============================= */
/* NUM SECTION */
/* ============================= */

.num {
    width: 100%;
    background: #ffffff;
    padding: 100px 20px;
}

.num-container {
    max-width: 1200px;
    margin: 0 auto;
}

.num-heading {
    text-align: center;
    margin-bottom: 70px;
}

.num-heading h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.num-heading p {
    font-size: 16px;
    color: #666;
}

.num-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.num-box {
    padding: 45px 20px;
    border-radius: 14px;
    background: #f7f7f7;
    transition: 0.3s ease;
}

.num-box:hover {
    transform: translateY(-8px);
    background: #f1f1f1;
}

.num-box h3 {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.num-box span {
    font-size: 15px;
    color: #555;
    letter-spacing: 1px;
}

/* Responsive */

@media (max-width: 992px) {
    .num-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .num {
        padding: 80px 20px;
    }

    .num-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .num-box h3 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .num {
        padding: 70px 15px;
    }

    .num-heading h2 {
        font-size: 26px;
    }

    .num-box h3 {
        font-size: 28px;
    }
}


.team {
    padding: 80px 20px;
    background: #ffffff;
    font-family: sans-serif;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-heading {
    text-align: center;
    margin-bottom: 60px;
}

.team-heading h2 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 12px;
}

/* GRID SYSTEM */
.team-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    line-height: 0; /* Prevents tiny gap at bottom of image */
}

.team-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.1));
    z-index: 1;
}

.team-box:hover img { transform: scale(1.05); }

/* SOCIAL & INFO */
.team-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.4s ease;
    z-index: 3;
}

.team-box:hover .team-social { opacity: 1; transform: translateY(0); }

.team-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.team-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    color: #fff;
    z-index: 2;
}

.know-more {
    margin-top: 15px;
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    transition: 0.3s;
}

.know-more:hover { background: #fff; color: #000; }

/* MODAL CENTERED LOGIC */
.team-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    
    /* This centers the child */
    align-items: center; 
    justify-content: center;
}

.team-modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.team-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .team-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .team-row { grid-template-columns: 1fr; }
    .team-image img { height: 350px; }
}



/* ============================= */
/* GJ HOMES VIDEO GRID */
/* ============================= */

.gj-homes-video-grid {
    padding: 110px 20px;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Grid */
.gj-homes-video-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.gj-homes-video-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.gj-homes-video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Video Wrapper */
.gj-homes-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

/* Date Above Title */
.gj-video-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Iframe */
.gj-homes-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.5s ease;
}

.gj-homes-video-card:hover iframe {
    transform: scale(1.03);
}

/* Video Content */
.gj-homes-video-info {
    padding: 20px 22px 26px;
}

.gj-homes-video-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111;
}

.gj-homes-video-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 1100px) {
    .gj-homes-video-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gj-homes-video-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gj-video-date {
        font-size: 11px;
        padding: 5px 10px;
    }
}



.gj-premium-contact {
    padding: 120px 20px;
    background-color: #ffffff; /* pure white background */
    color: var(--dark-text);
    
}

.gj-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT SIDE STYLING */
.sub-heading {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.main-title {
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--dark-text);
}

.main-title span {
    font-weight: 300;
    color: #666;
}

.description {
    color: #666;
    max-width: 480px;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* INFO LIST WITH ICONS */
.info-list {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--light-grey);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: goldenrod;
    transition: 0.3s;
}

.info-item:hover .icon-box {
    background: goldenrod;
    color: #fff;
}

.text-box small {
    display: block;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 4px;
}

.text-box a, .text-box p {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

/* SOCIAL ROW */
.gj-social-row { display: flex; gap: 15px; }

.social-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--dark-text);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.social-icon:hover {
    background: darkblue;
    color: #fff;
    border-color: var(--dark-text);
    transform: translateY(-5px);
}

/* RIGHT SIDE FORM - PREMIUM CLEAN */
.gj-contact-form-panel {
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.input-wrapper {
    position: relative;
    margin-bottom: 35px;
}

.input-wrapper input, .input-wrapper textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgb(175, 175, 175);
    padding: 12px 0;
    color: var(--dark-text);
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.input-wrapper label {
    position: absolute;
    left: 0;
    top: 12px;
    color: #aaa;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Floating Label Logic */
.input-wrapper input:focus ~ label,
.input-wrapper input:not(:placeholder-shown) ~ label,
.input-wrapper textarea:focus ~ label,
.input-wrapper textarea:not(:placeholder-shown) ~ label {
    top: -18px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
}

.input-wrapper input:focus, .input-wrapper textarea:focus {
    border-bottom-color: var(--gold);
}

.gj-btn-luxury {
    width: 100%;
    padding: 20px;
    background: darkblue;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.4s;
}

.gj-btn-luxury:hover {
    background: white;
    color: darkblue;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(179, 142, 68, 0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gj-contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .gj-contact-form-panel { padding: 40px; }
}

@media (max-width: 480px) {
    .gj-premium-contact { padding: 80px 15px; }
    .main-title { font-size: 32px; }
    .gj-contact-form-panel { padding: 30px 20px; }
}



.projects-grid-internal {
    padding: 100px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-sub {
    color: #b38e44; /* Gold accent */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.projects-main-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.projects-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* GRID LAYOUT */
.projects-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

/* CARD BASE */
.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    background: #f4f4f4;
}

/* ASYMMETRICAL SPANNING */
.project-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-card.wide {
    grid-column: span 2;
}

/* IMAGE HANDLING */
.project-img-container {
    width: 100%;
    height: 100%;
}

.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* OVERLAY EFFECTS */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 30px;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.project-content {
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.project-category {
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.project-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.project-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transform: rotate(-45deg);
    transition: all 0.4s ease;
}

/* HOVER STATES */
.project-card:hover .project-img-container img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(179, 142, 68, 0.9) 0%, rgba(0,0,0,0.4) 100%);
}

.project-card:hover .project-content {
    transform: translateY(0);
}

.project-card:hover .project-arrow {
    opacity: 1;
    transform: rotate(0deg);
}

/* RESPONSIVENESS */
@media (max-width: 1100px) {
    .projects-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid-internal {
        padding: 80px 20px;
    }
    
    .projects-grid-wrapper {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
    }

    .project-card.large, .project-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .project-title {
        font-size: 20px;
    }
}




.gjk-home-one-project {
    padding: 110px 20px;
    background: #f8f8f8;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */

.gjk-project-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch; /* makes both sides equal height */
    justify-content: space-between;
    gap: 70px;
}

/* LEFT SIDE */

.gjk-project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gjk-project-content h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #283983;
    line-height: 1.2;
}

/* 1. INCREASE PARAGRAPH SIZE */

.gjk-project-content p {
    font-size: 19px;   /* updated */
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
}

/* BUTTON */

.gjk-project-btn {
        padding: 15px 34px;
    background: #c7a456;
    border: none;
    width: fit-content;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
    letter-spacing: 0.6px;
}

.gjk-project-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(167, 126, 40, 0.4);
}

/* RIGHT IMAGE */

.gjk-project-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* 2. INCREASE IMAGE FRAME SIZE */

.gjk-image-frame {
    padding: 28px;  /* increased */
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    width: 100%;
    max-width: 620px; /* increased width */
}

.gjk-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.gjk-image-frame:hover {
    transform: translateY(-8px);
}

/* ===============================
   MODAL
================================ */

.gjk-project-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.gjk-modal-content {
    background: #fff;
    padding: 50px 45px;
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    text-align: center;
    position: relative;
    animation: modalFade 0.4s ease;
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.gjk-modal-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.gjk-modal-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* CLOSE */

.gjk-close {
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 28px;
    cursor: pointer;
}

/* FORM */

.gjk-enquiry-form {
    text-align: left;
}

.gjk-form-group {
    margin-bottom: 18px;
}

.gjk-form-group input,
.gjk-form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.gjk-form-group textarea {
    resize: none;
    height: 100px;
}

.gjk-form-group input:focus,
.gjk-form-group textarea:focus {
    border-color: #c7a14a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(199,161,74,0.15);
}

/* ===============================
   ANIMATION
================================ */

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {

    .gjk-project-container {
        flex-direction: column;
        text-align: center;
    }

    .gjk-project-content h2 {
        font-size: 32px;
    }

    .gjk-project-content p {
        margin: 0 auto 30px;
    }

    .gjk-enquiry-form {
        text-align: left;
    }
}





/* ============================================================
   GJK PROJECT OVERVIEW — DARK STATS SECTION
============================================================ */

.gjk-dark-stats {
    background: #f0f0f0;
    padding: 120px 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.gjk-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.gjk-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.gjk-subtitle {
    display: inline-block;
    color: #c7a14a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gjk-section-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #283983;
    margin: 0;
    line-height: 1.2;
}

/* =========================================
   GRID
========================================= */

.gjk-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   CARD
========================================= */

.gjk-stat-card {
    background: #00146a;
    padding: 40px 28px 36px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gjk-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(199, 161, 74, 0.35);
}

/* ICON */

.gjk-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 161, 74, 0.08);
    border: 1px solid rgba(199, 161, 74, 0.2);
    border-radius: 50%;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.gjk-stat-card:hover .gjk-icon {
    background: rgba(199, 161, 74, 0.15);
    border-color: rgba(199, 161, 74, 0.45);
}

/* TITLE */

.gjk-stat-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.4;
}

/* SUBTEXT */

.gjk-stat-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 10px 0 0;
    line-height: 1.5;
}

/* BROCHURE SPECIAL STYLE */

.gjk-brochure {
    cursor: pointer;
    background: linear-gradient(135deg, #c7a14a, #a87e28);
    color: #fff;
}

.gjk-brochure .gjk-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.gjk-brochure h3 {
    color: #fff;
}

.gjk-brochure:hover {
    box-shadow: 0 30px 70px rgba(199, 161, 74, 0.4);
    transform: translateY(-8px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .gjk-dark-stats {
        padding: 100px 20px;
    }

    .gjk-section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .gjk-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gjk-section-header h2 {
        font-size: 32px;
    }

    .gjk-section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 640px) {
    .gjk-dark-stats {
        padding: 80px 16px;
    }

    .gjk-stats-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gjk-section-header h2 {
        font-size: 26px;
    }

    .gjk-subtitle {
        font-size: 12px;
    }

    .gjk-stat-card {
        padding: 32px 24px 28px;
    }

    .gjk-stat-card h3 {
        font-size: 17px;
    }

    .gjk-stat-card p {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .gjk-section-header h2 {
        font-size: 22px;
    }

    .gjk-icon {
        width: 56px;
        height: 56px;
    }
}



/* --- BASE GALLERY STYLING --- */
.gj-kedia-grid-gallery {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.gallery-eyebrow {
    display: inline-block;
    color: #c7a14a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gallery-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.gallery-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- GRID SYSTEM --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

/* Modifier Classes for Justified Look */
.span-h2 { grid-column: span 2; }
.span-v2 { grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- HOVER EFFECTS --- */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7); /* Charcoal with Opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .span-h2, .span-v2 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .gallery-title {
        font-size: 32px;
    }
    .gallery-container {
        padding: 0 20px;
    }
}

/* overlay text layout */

.gallery-text{
    text-align:center;
    padding:20px;
}

.gallery-text span{
    display:block;
    color:#fff;
    font-family:'Cinzel', serif;
    font-size:20px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.gallery-text p{
    color:#ddd;
    font-size:14px;
    line-height:1.6;
    max-width:260px;
    margin:0 auto;
}



/* =====================================
   Home Media Section
===================================== */

.home-media-sec {
    background: #ffffff;
    padding: 90px 20px;
}

.home-media-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.home-media-heading {
    text-align: center;
    margin-bottom: 60px;
}

.home-media-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b2c5f; /* Dark Blue */
    letter-spacing: 0.5px;
}

/* Grid Layout */
.home-media-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Card */
.home-media-card {
    background: #f8f9fb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.home-media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Video */
.home-media-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.home-media-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: none;
}

/* Content */
.home-media-content {
    padding: 25px 25px 30px;
}

.home-media-date {
    display: block;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #7a7a7a;
    margin-bottom: 12px;
}

.home-media-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111111;
}

.home-media-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
}

/* Button */
.home-media-btn-wrap {
    text-align: center;
    margin-top: 60px;
}

.home-media-btn {
    display: inline-block;
    padding: 14px 45px;
    background: #0b2c5f;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-media-btn:hover {
    background: #082149;
    transform: translateY(-3px);
}

/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
    .home-media-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-media-row {
        grid-template-columns: 1fr;
    }

    .home-media-sec {
        padding: 70px 15px;
    }

    .home-media-heading h2 {
        font-size: 28px;
    }
}




.why-vantage {
    padding: 80px 20px;
    background-color: #ffffff;
    /* font-family: 'Montserrat', sans-serif; */
    color: #1a1a1a;
}

.vantage-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vantage-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

/* Gold Underline Decoration */
.vantage-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #C5A059; /* Gold */
    margin: 15px auto 0;
}

.vantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vantage-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.vantage-item:hover {
    border-color: #C5A059;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.vantage-icon {
    min-width: 50px;
    height: 50px;
    border: 1px solid #C5A059;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Minimalist Gold Square Icon */
.vantage-icon span {
    width: 10px;
    height: 10px;
    background-color: #C5A059;
    transform: rotate(45deg);
}

.vantage-content h3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    color: #000;
}

.vantage-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.vantage-content strong {
    color: #000;
    font-weight: 600;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .vantage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .why-vantage {
        padding: 50px 15px;
    }
    .vantage-title {
        font-size: 1.8rem;
    }
    .vantage-item {
        flex-direction: column;
        padding: 20px;
    }
    .vantage-icon {
        margin-bottom: 15px;
    }
}



 .nivasa-inside {
    background: #f0f0f0;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
}

.nivasa-inside-container {
    max-width: 1200px;
    margin: auto;
}

/* =========================================
   HEADER
========================================= */

.nivasa-inside-header {
    text-align: center;
    margin-bottom: 60px;
}

.nivasa-inside-subtitle {
    display: inline-block;
    color: #c7a14a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.nivasa-inside-title {
    font-size: 42px;
    font-weight: 600;
    color: #283983;
    margin: 0;
    line-height: 1.2;
}

/* =========================================
   GRID
========================================= */

.nivasa-inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   CARD
========================================= */

.nivasa-inside-card {
    background: #00146a;
    border-radius: 12px;
    padding: 40px 25px 36px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nivasa-inside-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 160, 70, 0.45);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

/* =========================================
   ICON CIRCLE
========================================= */

.nivasa-inside-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 161, 74, 0.07);
    border: 1px solid rgba(199, 161, 74, 0.2);
    border-radius: 50%;
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nivasa-inside-card:hover .nivasa-inside-icon {
    background: rgba(199, 161, 74, 0.14);
    border-color: rgba(199, 161, 74, 0.45);
}

/* =========================================
   TEXT
========================================= */

.nivasa-inside-card h3 {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 10px 0 0;
    line-height: 1.5;
}

.nivasa-inside-card p {
   font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.4;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .nivasa-inside-title {
        font-size: 34px;
    }

    .nivasa-inside-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .nivasa-inside-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 600px) {

    .nivasa-inside {
        padding: 60px 16px;
    }

    .nivasa-inside-title {
        font-size: 26px;
    }

    .nivasa-inside-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .nivasa-inside-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nivasa-inside-card {
        padding: 32px 22px 28px;
    }

    .nivasa-inside-card h3 {
        font-size: 16px;
    }

    .nivasa-inside-icon {
        width: 62px;
        height: 62px;
    }
}

@media (max-width: 380px) {

    .nivasa-inside-title {
        font-size: 22px;
    }

    .nivasa-inside-icon {
        width: 56px;
        height: 56px;
    }

    .nivasa-inside-icon svg {
        width: 36px;
        height: 36px;
    }
}




.skyven-inside {
    background: #f0f0f0;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
}

.skyven-inside-container {
    max-width: 1200px;
    margin: auto;
}

/* =========================================
   HEADER
========================================= */

.skyven-inside-header {
    text-align: center;
    margin-bottom: 60px;
}

.skyven-inside-subtitle {
    display: inline-block;
    color: #c7a14a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.skyven-inside-title {
    font-size: 42px;
    font-weight: 600;
    color: #283983;
    margin: 0;
    line-height: 1.2;
}

/* =========================================
   GRID
========================================= */

.skyven-inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   CARD
========================================= */

.skyven-inside-card {
    background: #00146a;
    border-radius: 12px;
    padding: 40px 25px 36px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skyven-inside-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 160, 70, 0.45);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

/* =========================================
   ICON CIRCLE
========================================= */

.skyven-inside-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 161, 74, 0.07);
    border: 1px solid rgba(199, 161, 74, 0.2);
    border-radius: 50%;
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.skyven-inside-card:hover .skyven-inside-icon {
    background: rgba(199, 161, 74, 0.14);
    border-color: rgba(199, 161, 74, 0.45);
}

/* =========================================
   TEXT
========================================= */

.skyven-inside-card h3 {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 10px 0 0;
    line-height: 1.5;
}

.skyven-inside-card p {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.4;
}

/* =========================================
   HIGHLIGHT VARIANT
========================================= */

.skyven-inside-highlight {
    background: #c7a046;
}

.skyven-inside-highlight .skyven-inside-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.skyven-inside-highlight h3 {
    color: #fff;
}

.skyven-inside-highlight p {
    color: #000;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .skyven-inside {
        padding: 70px 20px;
    }

    .skyven-inside-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .skyven-inside-title {
        font-size: 34px;
    }

    .skyven-inside-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .skyven-inside-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 600px) {
    .skyven-inside {
        padding: 60px 16px;
    }

    .skyven-inside-title {
        font-size: 26px;
    }

    .skyven-inside-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .skyven-inside-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skyven-inside-card {
        padding: 32px 22px 28px;
    }

    .skyven-inside-card h3 {
        font-size: 16px;
    }

    .skyven-inside-icon {
        width: 62px;
        height: 62px;
    }
}

@media (max-width: 380px) {
    .skyven-inside-title {
        font-size: 22px;
    }

    .skyven-inside-icon {
        width: 56px;
        height: 56px;
    }

    .skyven-inside-icon svg {
        width: 36px;
        height: 36px;
    }
}


.meadows-inside {
    background: #f0f0f0;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
}

.meadows-inside-container {
    max-width: 1200px;
    margin: auto;
}

/* =========================================
   HEADER
========================================= */

.meadows-inside-header {
    text-align: center;
    margin-bottom: 60px;
}

.meadows-inside-subtitle {
    display: inline-block;
    color: #c7a14a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.meadows-inside-title {
    font-size: 42px;
    font-weight: 600;
    color: #283983;
    margin: 0;
    line-height: 1.2;
}

/* =========================================
   GRID
========================================= */

.meadows-inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   CARD
========================================= */

.meadows-inside-card {
    background: #00146a;
    border-radius: 12px;
    padding: 40px 25px 36px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meadows-inside-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 160, 70, 0.45);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

/* =========================================
   ICON CIRCLE
========================================= */

.meadows-inside-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 161, 74, 0.07);
    border: 1px solid rgba(199, 161, 74, 0.2);
    border-radius: 50%;
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.meadows-inside-card:hover .meadows-inside-icon {
    background: rgba(199, 161, 74, 0.14);
    border-color: rgba(199, 161, 74, 0.45);
}

/* =========================================
   TEXT
========================================= */

.meadows-inside-card h3 {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 10px 0 0;
    line-height: 1.5;
}

.meadows-inside-card p {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.4;
}

/* =========================================
   HIGHLIGHT VARIANT
========================================= */

.meadows-inside-highlight {
    background: #c7a046;
}

.meadows-inside-highlight .meadows-inside-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.meadows-inside-highlight h3 {
    color: #fff;
}

.meadows-inside-highlight p {
    color: #000;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .meadows-inside {
        padding: 70px 20px;
    }

    .meadows-inside-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .meadows-inside-title {
        font-size: 34px;
    }

    .meadows-inside-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .meadows-inside-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 600px) {
    .meadows-inside {
        padding: 60px 16px;
    }

    .meadows-inside-title {
        font-size: 26px;
    }

    .meadows-inside-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .meadows-inside-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .meadows-inside-card {
        padding: 32px 22px 28px;
    }

    .meadows-inside-card h3 {
        font-size: 16px;
    }

    .meadows-inside-icon {
        width: 62px;
        height: 62px;
    }
}

@media (max-width: 380px) {
    .meadows-inside-title {
        font-size: 22px;
    }

    .meadows-inside-icon {
        width: 56px;
        height: 56px;
    }

    .meadows-inside-icon svg {
        width: 36px;
        height: 36px;
    }
}


/* GJ Kedia Homes - Thank You Section Styles */
.gjk-thank-you {
    background-color: #ffffff;
    
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin: 0;
    box-sizing: border-box;
}

.gjk-thank-you .thank-you-card {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 60px 40px;
    border-radius: 2px; /* Sharp, architectural corners */
    border: 1px solid #eeeeee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    animation: gjkFadeUp 1.2s ease-out;
}

.gjk-thank-you .home-icon {
    margin-bottom: 30px;
    display: inline-block;
    color: #b89150; /* Signature Gold Tone */
}

.gjk-thank-you .brand-label {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 15px;
    display: block;
    
}

.gjk-thank-you h1 {
    color: #1a1a1a;
    font-size: 38px;
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.gjk-thank-you p {
    color: #555555;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 40px 0;
   
}

.gjk-thank-you .btn-premium {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid #1a1a1a;
    
}

.gjk-thank-you .btn-premium:hover {
    background-color: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.gjk-thank-you .footer-note {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f5f5f5;
    font-size: 14px;
    color: #999999;
   
}

.gjk-thank-you .footer-note a {
    color: #b89150;
    text-decoration: none;
    font-weight: bold;
}

@keyframes gjkFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .gjk-thank-you .thank-you-card {
        padding: 40px 20px;
        border: none;
        box-shadow: none;
    }
    .gjk-thank-you h1 {
        font-size: 30px;
    }
    .gjk-thank-you .btn-premium {
        width: 100%;
        box-sizing: border-box;
    }
}







/* GJ Kedia Homes - Error Page Section Styles */
.gjk-error-page {
    background-color: #ffffff;
   
    min-height: 60vh; /* Slightly taller for error presence */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin: 0;
    box-sizing: border-box;
}

.gjk-error-page .error-card {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 60px 40px;
    border-radius: 2px;
    border: 1px solid #eeeeee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    animation: gjkFadeUp 1.2s ease-out;
}

.gjk-error-page .error-icon {
    margin-bottom: 20px;
    display: inline-block;
    color: #b89150; /* Signature Gold Tone */
}

.gjk-error-page .error-code {
    display: block;
    
    font-size: 80px;
    font-weight: 700;
    color: #f1f1f1; /* Subtle large text for the 404 number */
    line-height: 1;
    margin-bottom: 10px;
}

.gjk-error-page .brand-label {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 15px;
    display: block;
    
}

.gjk-error-page h1 {
    color: #1a1a1a;
    font-size: 38px;
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.gjk-error-page p {
    color: #555555;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 40px 0;
   
}

.gjk-error-page .btn-premium {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid #1a1a1a;
    
}

.gjk-error-page .btn-premium:hover {
    background-color: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.gjk-error-page .footer-note {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f5f5f5;
    font-size: 14px;
    color: #999999;
   
}

.gjk-error-page .footer-note a {
    color: #b89150;
    text-decoration: none;
    font-weight: bold;
}

@keyframes gjkFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .gjk-error-page .error-card {
        padding: 40px 20px;
        border: none;
        box-shadow: none;
    }
    .gjk-error-page .error-code {
        font-size: 60px;
    }
    .gjk-error-page h1 {
        font-size: 28px;
    }
    .gjk-error-page .btn-premium {
        width: 100%;
        box-sizing: border-box;
    }
}