@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Luxurious+Roman&family=Marcellus&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Saira:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --primary-color: #0a1b4f;
    --secondary-color: #eab320;
    --text-gray: #6b6b6b;
    --title-font: "Marcellus", serif;
    --content-font: "Poppins", sans-serif;
}

body {
    margin: 0;
    padding: 0;
}


h1,
h2,
h3,
h4 {
    font-family: "Marcellus", serif;
}

p {
    font-family: var(--content-font);
    color: var(--text-gray);
}

a {
    font-family: var(--content-font);
    text-decoration: none;
}

section {
    overflow-x: hidden;
}

input,
textarea {
    font-family: var(--content-font);
}

.section-gap {
    padding: 100px 0;
}

@media screen and (max-width: 580px) {
    .section-gap {
        padding: 70px 0;
    }

    .minus-margin {
        margin-top: -18px;
    }
}

.theme-color {
    color: var(--primary-color);
}

.content-font {
    font-family: var(--content-font);
}


header {
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* State when scrolling down */
header.header-scrolled {
    background-color: white !important;
    padding: 1rem 1.5rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999 !important;
}

.header-phone,
.menu-text {
    font-family: var(--content-font);
    color: #000;
}

.menu-text {
    font-weight: 700;
}

header.header-scrolled .header-phone,
header.header-scrolled .menu-text {
    color: #000 !important;
    /* Ensure text is visible on white bg */
}

/* Initial "Hidden" state for the slide-up effect */
header.header-up {
    transform: translateY(-100%);
}

button {
    font-family: var(--content-font) !important;
}

.nav .nav-link {
    font-family: var(--title-font);
}


/* Mobile Nav Styles */
.mobile-nav {
    height: 70px;
    z-index: 1060;
}

.text-teal {
    color: var(--primary-color);
}

/* The Floating Logo Setup */
.nav-logo-wrapper {
    position: absolute;
    top: -51px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

@media screen and (max-width: 450px) {
    .nav-logo-wrapper .nav-logo-img {
        width: 85px;
    }
}

.nav-logo-img {
    width: 105px;
    height: auto;
}

.nav-logo-text {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-top: 32px;
    color: #333;
}

/* 3x3 Dots Menu Icon */
.menu-dots-grid {
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 3px;
    width: 24px;
}

.menu-dots-grid span {
    width: 6px;
    height: 6px;
    background-color: #eab320;
    /* Lighter teal */
    border-radius: 50%;
}

/* Make some dots darker like in your image */
.menu-dots-grid span:nth-child(3),
.menu-dots-grid span:nth-child(6),
.menu-dots-grid span:nth-child(9),
.menu-dots-grid span:nth-child(8) {
    background-color: var(--primary-color);
}

/* Ensure content doesn't get hidden behind the nav */


/* Custom Hero Masking */
.hero-mask-container {
    width: 100%;
    max-width: 800px;
    height: 60vh;
    mask-image: url('mask-shape.svg');
    /* Path to your "A" shape SVG */
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url('mask-shape.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.grayscale {
    filter: grayscale(100%);
}

/* Custom Menu Icon Grid */
.menu-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 8px);
    gap: 4px;
    cursor: pointer;
}

.menu-icon-grid span {
    width: 8px;
    height: 8px;
    background-color: #eab320;
    border-radius: 2px;
    /* Slight rounding for a modern look */
    will-change: transform, background-color;
}

.menu-icon-grid span:nth-child(1),
.menu-icon-grid span:nth-child(4) {
    background-color: #303688;
}

/* Vertical Enquiry Tag */
.enquiry-tag {
    right: 0;
    top: 50%;
    transform: rotate(-90deg) translateY(50%);
    transform-origin: right bottom;
    letter-spacing: 2px;
    font-size: 12px;
}

.tracking-wider {
    letter-spacing: 2px;
}

/* Animation helpers */
#offCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    clip-path: circle(0% at 100% 0%);
    display: none;
    z-index: 9999999 !important;
}

/* Optional: Add a cursor pointer to the mobile trigger */
#mobileMenuTrigger {
    cursor: pointer;
    transition: transform 0.2s ease;
}

#mobileMenuTrigger:active {
    transform: scale(0.9);
    /* Slight "tap" feel */
}

/* Layout Styling */
.main-img-wrapper {
    width: 65%;
    height: 320px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.sub-img-wrapper {
    position: absolute;
    bottom: -138px;
    right: -15px;
    width: 65%;
    height: 320px;
    z-index: 3;
    border-radius: 20px;
    border-bottom-right-radius: 100px;
    border: 10px solid #fff;
    overflow: hidden;
    background: #eee;
}

.main-img-wrapper img,
.sub-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrow Button Styling */
.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid #1a3a5f;
    background: white;
    color: #1a3a5f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #1a3a5f;
    color: white;
}

/* Blue Circle Decoration */
.blue-decoration {
    position: absolute;
    bottom: -32%;
    left: 53%;
    transform: translateX(-50%);
    width: 445px;
    height: 380px;
    background-color: var(--primary-color);
    border-radius: 5%;
    z-index: -1;
    opacity: 0.8;
}

.about-slide-btn {
    position: absolute;
    bottom: -200px;
    right: 165px;
    z-index: 99;
}

.highlight-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

@media screen and (max-width: 400px) {
    .highlight-card {
        display: grid !important;
        grid-template-columns: 150px 150px;
    }
}

.highlight-card .item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 18px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 3px solid #3b4972;
    position: relative;
    overflow: hidden;
    /* Important for the shine effect */

    /* Premium Soft Multi-Layered Shadow */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.03),
        0 20px 25px -5px rgba(0, 0, 0, 0.02);
}

/* The Shine Effect Layer */
.highlight-card .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}

/* Hover States */
.highlight-card .item:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-bottom-color: var(--secondary-color);
    /* HiLiving Orange */

    /* Deeper shadow on hover */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Trigger the Shine on Hover */
.highlight-card .item:hover::after {
    left: 150%;
    transition: 0.7s;
}

.highlight-card .item i {
    font-size: 22px;
    color: var(--secondary-color);
}

.highlight-card .item p {
    margin: 0;
    font-weight: 600;
    color: #000;
}


.fancy-btn {
    position: relative;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    /* background: linear-gradient(181deg, #eab320, #3b4972, #3b4972, #3b4972, #3b4972, #eab320); */
    background: #3b4972;
    border: none;
    /* border-radius: 10px; */
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    font-family: var(--title-font);
    /* box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3); */
}

/* Text layer */
.fancy-btn span {
    position: relative;
    z-index: 2;
}

/* Shine effect */
.fancy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transition: all 0.6s ease;
}

/* Hover Effects */
.fancy-btn:hover {
    transform: translateY(-4px) scale(1.03);
    /* box-shadow: 0 15px 35px rgba(0, 86, 179, 0.4); */
}

.fancy-btn:hover::before {
    left: 100%;
}

/* Click effect */
.fancy-btn:active {
    transform: scale(0.96);
}


.fancy-btn-white {
    position: relative;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    /* background: linear-gradient(181deg, #eab320, #3b4972, #3b4972, #3b4972, #3b4972, #eab320); */
    background: #fff;
    border: none;
    /* border-radius: 10px; */
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    font-family: var(--title-font);
    /* box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3); */
}

/* Text layer */
.fancy-btn-white span {
    position: relative;
    z-index: 2;
}

/* Shine effect */
.fancy-btn-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: var(--primary-color); */
    transition: all 0.6s ease;
}

/* Hover Effects */
.fancy-btn-white:hover {
    transform: translateY(-4px) scale(1.03);
}

.fancy-btn-white:hover::before {
    left: 100%;
}

/* Click effect */
.fancy-btn-white:active {
    transform: scale(0.96);
}

/* 1. Set the initial "Hidden" state */
.amenity-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    /* Slightly wider for a better touch target */
    height: 50px;
    background: #fff !important;
    /* Ensure bg stays white */
    color: #3b4972 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* border-radius: 4px; */

    /* THE MAGIC: Initial Hidden State */
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 2. Position them slightly further away initially */
.amenity-slider .owl-nav .owl-prev {
    left: -60px;
    /* Hidden further left */
}

.amenity-slider .owl-nav .owl-next {
    right: -60px;
    /* Hidden further right */
}

/* 3. THE REVEAL: When the Slider is hovered */
.amenity-slider:hover .owl-nav button {
    opacity: 1;
}

.amenity-slider:hover .owl-nav .owl-prev {
    left: -20px;
    /* Glides inward to reveal */
}

.amenity-slider:hover .owl-nav .owl-next {
    right: -20px;
    /* Glides inward to reveal */
}

/* 4. Individual Button Hover (Color Change) */
.amenity-slider .owl-nav button:hover {
    background-color: #3b4972 !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(59, 73, 114, 0.3);
}

/* 5. Mobile Fix: Always show buttons on touch devices */
@media (max-width: 991px) {
    .amenity-slider .owl-nav button {
        opacity: 1;
    }

    .amenity-slider .owl-nav .owl-prev {
        left: 5px;
    }

    .amenity-slider .owl-nav .owl-next {
        right: 5px;
    }
}


/* Hide arrows on mobile to avoid overflow */
@media (max-width: 1200px) {
    .amenity-slider .owl-nav {
        display: none;
    }
}

/* Container styling */
#amenityTabs {
    background: #f8f9fa;
    padding: 10px 10px 15px;
    /* Added bottom padding for the scrollbar space */
    border-radius: 50px;
    display: flex;
    border: 1px solid #e9ecef;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
    gap: 8px;

    /* Smooth scrolling */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;

    /* Maintain the Fade Effect */
    /* mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); */
}

/* --- THE PREMIUM SCROLLBAR --- */

/* 1. Define the Scrollbar Track (The background) */
#amenityTabs::-webkit-scrollbar {
    height: 4px;
    /* Very slim for a premium feel */
    display: block;
    /* Show it now */
}

/* 2. The Draggable Handle */
#amenityTabs::-webkit-scrollbar-thumb {
    background: #fff;
    /* Subtle blue-gray to match your theme */
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* 3. Handle on Hover/Interaction */
#amenityTabs::-webkit-scrollbar-thumb:hover {
    background: #f97316;
    /* Change to HiLiving Orange when active */
}

/* 4. The Track (The "Rail" it slides on) */
#amenityTabs::-webkit-scrollbar-track {
    background: transparent;
    margin: 0 40px;
    /* Keeps the scrollbar away from the faded edges */
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    #amenityTabs {
        justify-content: flex-start;
        padding-left: 30px;
        padding-right: 30px;
        /* Thicker mask for better mobile cue */
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }
}

/* Base button styling */
#amenityTabs .nav-link {
    color: #3b4972;
    /* Your primary blue */
    border-radius: 0 !important;
    background: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

/* Hover state */
#amenityTabs .nav-link:hover {
    color: #eab320;
    /* Your gold accent */
    background: rgba(234, 179, 32, 0.05);
}

/* Active state - The "Premium" look */
#amenityTabs .nav-link.active {
    background: #3b4972 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(59, 73, 114, 0.2);
    /* transform: translateY(-2px); */
}

/* Mobile responsiveness */
@media (max-width: 991px) {
    #amenityTabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start !important;
        padding-bottom: 15px;
        border-radius: 0;
        background: transparent;
        border: none;
    }

    #amenityTabs::-webkit-scrollbar {
        height: 3px;
    }
}

.amenity-slider .amenity-card {
    background-color: #fff;
    position: relative;
}

.amenity-slider .amenity-card .amenity-card-img {
    overflow: hidden;
}

.amenity-slider .amenity-card:hover .amenity-card-img img {
    transform: scale(1.2);
    transition: all 300ms linear;
}

.amenity-slider .amenity-card .amenities-card-content p {
    padding: 10px 10px 25px 10px;
    font-family: var(--content-font);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #000;
    gap: 10px;
    margin: 0;
}

.amenity-slider .amenity-card .amenities-icon-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding-top: 5px;
    width: 59px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: var(--primary-color);
    color: #fff;
}

/* Section Background */
/* Container Grid */
.elegant-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 16px;
}

/* Base Image Styling */
.gallery-item {
    /* border-radius: 20px; */
    /* Rounded corners as per image */
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .gallery-content {
    position: absolute;
    bottom: 12px;
    width: 100%;
    padding: 10px;
    backdrop-filter: blur(2px);
    text-align: center;
    background-color: #ffffff54;
}

.gallery-item .gallery-content p {
    margin: 0;
    color: #000;
}

/* Specific Box Heights */
.item-tall {
    height: 600px;
    /* Height for the tall left column */
}

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

.item-standard {
    height: 290px;
}

/* The Bottom-Right Split (Party Hall & Elevator) */
.gallery-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Split ratio to match the UI */
    gap: 15px;
    height: 290px;
}

/* Responsive Fix for Mobile */
@media (max-width: 991px) {
    .elegant-gallery-grid {
        grid-template-columns: 1fr;
    }

    .item-tall,
    .item-standard,
    .gallery-inner-grid {
        height: 350px;
    }
}


.primary-teal {
    color: var(--primary-color);
}

.primary-teal-bg {
    background-color: var(--primary-color);
}

.location-list li {
    padding: 12px 0;
    font-weight: 500;
    color: #3b4972;
    font-size: 14px;
    border-bottom: 1px solid #f3f0f0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    font-family: var(--content-font);
}

.location-list li .highlight-text {
        width: 81px;
    text-align: end;
    color: var(--secondary-color);
}

.location-list li i {
    color: var(--primary-color);
    font-size: 29px;
    width: 25px;
}

.location-list li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

/* .map-wrapper {
    height: 500px;
} */

.map-wrapper img {
    height: 100%;
    object-fit: cover;
}

.bg-gradient-dark {
    background: linear-gradient(transparent, rgba(26, 58, 95, 0.9));
}

.z-index-2 {
    z-index: 2;
}


/* Custom Project Card Styling */
.project-card {
    border: 2px solid transparent;
    padding: 30px 20px;
    /* Increased vertical padding for better balance */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hover State */
.project-card:hover {
    transform: translateY(-8px);
    /* Smooth lift */
    background: #ffffff;

    /* Deep, expansive shadow on hover */
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Subtle border accent on hover */
    border-color: var(--primary-color);
    /* Very light orange tint */
}

/* Optional: Icon or Image within the card */
.project-card i,
.project-card img {
    transition: transform 0.4s ease;
}

.project-card:hover i,
.project-card:hover img {
    transform: scale(1.1);
    /* Subtle zoom on the icon/image */
}

/* Active State matching the branding */
.project-card.active {
    border: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    /* HiLiving Orange */
    background-color: #fff;
}

.project-icon {
    width: 100px;
    margin-bottom: 15px;
    object-fit: contain;
}

.project-title {
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--title-font);
    text-transform: uppercase;
    color: #333;
}

.project-loc {
    font-family: var(--content-font);
    font-size: 0.75rem;
    color: #4f4f4f;
    font-weight: 600;
    margin-top: 4px;
}


.master-plan-section {
    background: #fff;
}

/* Card */
.master-card {
    position: relative;
    overflow: hidden;
    /* border-radius: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.master-card img {
    max-width: 600px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: 0.5s ease;
}

/* Hover Effects */
.master-card:hover img {
    transform: scale(1.1);
}

.master-card:hover .overlay {
    transform: translateY(0);
}

/* Text */
.overlay p {
    margin: 0;
    font-size: 15px;
}

/* Owl Dots */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
}

.owl-dot.active span {
    background: #303688;
    width: 25px;
    border-radius: 10px;
    transition: all 300ms linear;
}

/* Map Container */
.map-wrapper {
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
    border: 8px solid #fff;
    height: 500px;
}


.main-footer {
    position: relative;
    background: url(../img/bg-pattern/footer-pattern.avif) center/cover no-repeat;
    color: #ffffff;
    padding: 80px 0 60px;
    z-index: 1;
    overflow: hidden;
}

/* Overlay Layer */
.main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(10 27 79 / 94%);
    z-index: -1;
}

.footer-heading {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: var(--title-font);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #fff;
    font-family: var(--content-font);
}

.footer-tag-content {
    line-height: 36px;
}

/* Center Column Branding */
.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-logo {
    max-width: 140px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    /* Makes logo white if it's black */
}

.presented-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.developer-logo {
    max-width: 200px;
}

/* Contact & Socials */
.contact-link {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: opacity 0.3s;
}

.contact-link:hover {
    color: #ffffff;
    opacity: 0.8;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 10px;
    transition: transform 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Copyright Bar */
.copyright-bar {
    background-color: #000;
    padding: 15px 0;
    color: #ffffff;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    font-family: var(--content-font);
}

/* Back to Top Button */
/* .back-to-top {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
} */


/* Contact Pills Styling */
.contact-pill {
    padding: 10px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-pill:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* The Form Card */
.cta-section-form {
    background: #ffffff;
    /* border-radius: 24px; */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.cta-section-form .cta-form-footer {
    padding: 10px 0;
    background: #0a1b4f;
    color: #fff;
    margin-bottom: 0;
    margin-top: 30px;
}

.custom-input {
    padding: 12px 18px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid #f0f0f0;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); */
    /* box-shadow: 0 6px 16px rgba(10, 27, 79, 0.2); */
}

.custom-input:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.btn-orange-action {
    background-color: var(--primary-color);
    color: white;
    /* border-radius: 12px; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-orange-action:hover {
    background-color: #000;
    color: white;
    transform: translateY(-2px);
    /* box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3); */
}

.btn-outline-dark {
    border-width: 2px;
    /* border-radius: 12px;   */
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.why-choose-card {
    background: #ffffff;
    /* border-radius: 24px; */
    padding: 50px 30px 40px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.why-choose-card h5 {
    font-family: var(--title-font);
    margin-bottom: 10px;
    margin-top: 25px;
}

.why-choose-card p {
    font-size: 15px;
    text-align: justify;
    line-height: 25px;
}

/* Floating Icon Wrapper */
.feature-icon-wrapper {
    width: 85px;
    height: 85px;
    background: var(--primary-color);
    color: white;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: absolute;
    top: -42px;
    left: 15%;
    transform: translateX(-50%);
    border: 3px solid #fff;
    /* box-shadow: 0 8px 20px rgba(10, 27, 79, 0.2); */
    transition: all 0.4s ease;
}

/* The Invisible Shine Effect */
/* .why-choose-card::after {
    content: "";
    position: absolute;
    top: 0; left: -150%;
    width: 60%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    animation: autoShimmer 6s infinite;
} */

/* @keyframes autoShimmer {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
} */

/* Hover States */
.why-choose-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
    border-color: rgba(249, 115, 22, 0.2);
}

.why-choose-card:hover .feature-icon-wrapper {
    background: var(--secondary-color);
    transform: translateX(-50%) rotateY(180deg);
    /* Cool flip effect */
}

/* Action Link */
.action-link {
    margin-top: auto;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.action-link:hover {
    color: var(--secondary-color);
}


.bg-pattern-section {
    position: relative;
    background: url(../img/bg-pattern/bg-pattern1.jpg);
    background-size: 1000px;
    background-repeat: repeat;
    z-index: 1;
    overflow: hidden;
}

/* Overlay */
.bg-pattern-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(45deg, rgb(10 27 79 / 95%), rgb(0 0 0 / 92%)); */
    z-index: -1;
    background: #001249eb;
}

.enquiry-section .cta-section-icon {
    font-size: 30px;
    color: var(--primary-color);
}


/* Modal Overlay Background */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 32%);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

/* Main Container */
.custom-modal-container {
    max-width: 850px;
    background: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Image Styling */
.popup-form-img {
    overflow: hidden;
}

.popup-form-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Inputs */
.popup-custom-input {
    border: 1px solid #e2e8f0;
    border-radius: 0;
    padding: 12px 15px;
}

.popup-custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Buttons */
.btn-schedule {
    background-color: var(--primary-color);
    border-radius: 12px;
    border: none;
    transition: transform 0.2s ease;
}

.btn-schedule:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    /* border-radius: 50%; */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
    justify-content: center;
}

.btn-close-custom:hover {
    background: #bbb;
}