@import url("https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&display=swap");


html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

* 
{
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

html, body,
*,
*::before,
*::after {
    font-family: "Amiri", Georgia, "Times New Roman", serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit !important;
    font-weight: 700;
    letter-spacing: 0;
    text-shadow:
            1px 1px 0 rgba(0,0,0,0.4),   /* subtle shadow below */
            -1px -1px 0 rgba(255,255,255,0.2), /* highlight above */
            2px 2px 4px rgba(0,0,0,0.3); /* soft depth shadow */
}

nav,
.main-menu,
.main-menu a,
.header,
button,
input,
textarea {
    font-family: inherit !important;
}


body {
    font-size: 17px;
    line-height: 1.7;
}

p {
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-align: center;
    text-shadow:
            1px 1px 0 rgba(0,0,0,0.4),   /* subtle shadow below */
            -1px -1px 0 rgba(255,255,255,0.2), /* highlight above */
            2px 2px 4px rgba(0,0,0,0.3); /* soft depth shadow */
}


body, html, .wrapper {
    background-color: #000000 !important;
    color: #222 !important;
}

/* --- Links and buttons --- */


/* --- Headers --- */
h1, h2, h3, h4, h5, h6 {
    color: #B0B0B0 !important;
}

/* --- Sections --- */
section, .section, .grey-section {
    background-color: #e5e5e5 !important;
}

/* --- Navigation --- */


/* --- Footer --- */
footer, .footer, .sub-footer {
    background-color: #000000 !important;
    color: #222 !important;
    justify-content: center;
}

.hero-image, .hero-image-fullscreen {
    background-color: #000000;
}

.logo {
    background-image: url("/images/logo.svg");
    background-repeat: no-repeat;
    background-size: contain;

    width: 200px;
    height: 75px;
}

.header {
    background-color: #000000;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background-color: rgba(245, 158, 11, 0.9) !important;
}



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

    height: clamp(56px, 10vw, 88px); /* scales smoothly */
    padding: 0 clamp(16px, 5vw, 100px);

    background-color: #000;
}


/* MAIN MENU CONTAINER */
.main-menu {
    background: transparent;
}

/* MENU LIST */
.main-menu ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu a {
    color: #9ca3af;            /* muted grey */
    font-weight: 500;
    text-decoration: none;
    padding: 0;
    background: none;
    transition: color 0.2s ease;
}

.main-menu a:hover {
    color: #ffffff;
}

.main-menu a {
    position: relative;
}

.main-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.2s ease;
}

.main-menu a:hover::after {
    width: 100%;
}


.main-menu li.active > a {
    color: #ffffff;
}

.main-menu li.active > a::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 6px;
    background-color: #ffffff;
}


.header .main-menu > ul > li.active > a {
    background-color: #4d5154;
    color: #000; /* black text */
}

.header .main-menu > ul > li.active > a:hover {
    background-color: #e0e0e0; /* stay grey */
    color: #000;              /* stay black */
}

/* NORMAL HOVER */
.header .main-menu > ul > li > a:hover {
    background-color: #d6d6d6; /* slightly darker grey */
    color: #000;
}

.main-menu > ul > li > a {
    color: #ffffff;
}



.header .logo {
    background-image: url("/images/logo.png");
    /*margin: 0;                !* remove any default margins *!*/
    /*flex-shrink: 0;           !* prevent logo from shrinking *!*/
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-menu-mobile .logo {
    height: 60px;
}

.header .main-menu > ul > li {
    margin-left: 10px;
}

/* Remove extra space from the first item */
.header .main-menu > ul > li:first-child {
    margin-left: 0;
}

.hero-image-fullscreen {
    height: 200px !important; /* adjust as needed */
    min-height: 0 !important;
}

.mySwiper {
    width: 100%;
    height: 60vh; /* 100% of the viewport height */
    margin: 0;
    padding: 0;

}

.mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures images fill the slide without distortion */
    opacity: 0.85; /* 1 = fully opaque, 0 = fully transparent */
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.swiper-button-next::after {
    content: "›";
    font-size: 70px;
    font-weight: 600;
    color: #fff;
}

.swiper-button-prev::after {
    content: "‹";
    font-size: 70px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 768px) {
    .mySwiper {
        height: 60vh; /* smaller height on phones/tablets */
    }
}

/* Social icons in header */
.social-icons a svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
    fill: #ffffff; /* set icon color if needed */
    margin-left: 24px;
    /*padding-block: 1rem;*/
}

.social-icons a:hover svg {
    transform: scale(1.2);
    fill: rgba(245, 158, 11, 0.9); /* optional: change color on hover */
}


.social-icons a:hover img {
    transform: scale(1.2); /* simple hover effect */
}


/* Generic section styling */
.home-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.home-section.section-light,
.home-section.section-dark {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* Optional: headings */
.home-section h2,
.home-section h3,
.home-section p {
    color: #ffffff;
}

/* Optional: links inside sections */
.home-section a {
    color: #00ACEE;
}

.home-section a:hover {
    color: #00FFAA;
}


/* Separator line */
.section-separator {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #888, #ccc, #888);
    margin: 0;
}

/* Service grid layout */



.service-card {
    flex: 0 1 calc(33.333% - 2rem);
}

.services-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {

    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8) 0%, rgba(39, 39, 42, 0.6) 100%);
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;

}


.service-item:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(217, 119, 6, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Section headings */
.home-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.home-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive tweaks */


.section-divider {
    position: relative;
    width: 100%;
    height: 8px;       /* more breathing room */
    margin: 0;
}

.section-divider::before,
.section-divider::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    border-radius: 1px;
    background: linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
}

.section-divider::before {
    top: 10px;
}

.section-divider::after {
    top: 20px;
}




.section-spacer-black {
    height: 120px;
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.9),
            #000,
            rgba(0,0,0,0.9)
    );
}

.section-spacer-black {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.2em;
}

.spacer-icon {
    height: 120px;           /* SVG SIZE CONTROL */
    width: auto;
    opacity: 0.9;
}



.contact-grid {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 400px);
    gap: 2rem;
    align-items: start;
}
.contact-card {
    max-width: 150px;
    flex: 1 1 150px;  /* flexible width for wrapping */
}


.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(217, 119, 6, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(217, 119, 6, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


.contact-card .icon {
    margin-bottom: 0.5rem; /* smaller gap */
}


.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr; /* cards | form */
    gap: 3rem;
    
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.contact-cards .contact-card {
    height: 100%;           /* always fills parent column */
    max-width: 400px;      /* caps width on large screens */
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(39, 39, 42, 0.4);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: white;
    padding: 1rem;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form button {
    margin-top: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #111;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

.contact-form-fields > * + * {
    margin-top: 1.5rem; /* increase to taste */
}


@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.about-content {
    text-align: left;
}

.services-stack {
    display: flex;
    flex-direction: row;
    gap: 2rem; 
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.6) 0%, rgba(39, 39, 42, 0.4) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.service-description {
    color: #d1d5db; /* slate-300 */
    line-height: 1.6;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-card.open .service-details {
    max-height: 2000px; /* big enough to fit content */
}


.banner {
    position: relative;
    width: 100%;
    height: 500px; /* adjust as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* semi-transparent dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-title {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .banner {
        height: 300px;
    }
}

.home-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 1050 / 600; /* keeps proportions */
    max-width: 37.5rem;       /* maximum width with rem (600px / 16px = 37.5rem) */
    margin: 0 auto;           /* center on desktop */
    overflow: hidden;
    background-color: #010000;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    padding-top: 4rem;         /* scaling padding with rem */
    border: 0.25rem solid rgba(245, 158, 11, 0.15); /* frame around image (orange color, subtle) */
    border-radius: 1rem;      /* optional rounded corners for the frame */
}

.home-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* scale + crop, no distortion */
    display: block;
    border-radius: 1rem;  /* optional: rounded corners on the image itself */
}



.home-banner {
    background: #010000 !important;
}



.home-hero {
    height: 100vh; /* full viewport height */
    display: flex;
    flex-direction: column; /* carousel on top, banner below */
    justify-content: flex-start; /* top-aligned if you want */
    overflow: hidden; /* optional if carousel/banner are taller */
}

@media (max-width: 768px) {
    .home-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .logo-mobile {
        display: none;
    }
}

@media (min-width: 1299px) {
    .logo-mobile {
        display: none;
    }
}


.portfolio-title {
    margin-top: 1rem;
    font-size: 1.25rem;
    text-align: left;
}

.gothic-divider {
    width: 100%;
    max-width: 300px;
    height: 2px;
    margin: 1rem auto;

    background: linear-gradient(
            to right,
            transparent,
            rgba(245, 158, 11, 0.9),
            transparent
    );
    box-shadow:
            0 0 8px rgba(245, 158, 11, 0.6);
}

.portfolio-card .swiper-slide img {
    width: 100%;       /* fill the slide container */
    height: auto;      /* maintain aspect ratio */
    object-fit: cover; /* crop if you want square slides */
    display: block;
    object-fit: contain;
}

.portfolio-card .swiper-slide {
    /*height: 400px;  !* or whatever max height you want *!*/
    height: 100%;
    width: 100%;
}

.portfolio-card .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.portfolio-card {*/
/*    height: 15rem;*/
/*}*/

.portfolio-card .portfolio-carousel {
    height: auto !important; /* Forces the container to shrink to the image */
    overflow: hidden;
}

.portfolio-card .swiper-wrapper {
    display: flex;
    align-items: flex-start; /* Aligns slides to the top to prevent bottom stretching */
}

.portfolio-card .swiper-slide {
    height: auto !important; /* Slide becomes exactly as tall as the img */
}

.portfolio-card .swiper-slide img {
    display: block;   /* Removes the 4px gap that browsers add to images */
    width: 100%;
    height: auto;     /* Ensures the image defines the height */
}

.site-footer {
    background-color: #000000;
    color: #000000;
    padding: 3rem 0;
    font-family: "Gothic A1", sans-serif;
    text-align: center;
}

.site-footer a {
    color: #f5a60b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    display: block;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-social i {
    font-size: 1.25rem;
}

.footer-bottom {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* This prevents the logo from looking stretched */
}

.about-us-content {
    min-height: 400px;
    display: flex;
    align-items: flex-start;
    gap: 50px;           /* Space between text and image */
    /*align-items: center; !* Centers image vertically relative to text *!*/
}

.contact-container {
    display: flex;
    flex-direction: column;
}

.about-us-text {
    flex: 1.5;
    align-self: center;
}

/* .about-us-image {
    display: flex;          
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.about-us-image img {
    width: auto;
    height: auto;
    display: block;
    border-radius: 4px;  
    object-fit: cover;
} */

.about-us-image {
    display: flex;          
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-us-image img {
    width: auto;  /* Keep width proportional */
    height: clamp(150px, 30vw, 200px); /* Minimum 150px, flexible 30% of viewport width, maximum 400px */
    display: block;
    border-radius: 4px;
    object-fit: cover; /* Ensures image covers the set height nicely */
}

/* Mobile Responsive: Stacks the image under the text on phones */
@media (max-width: 768px) {
    .about-us-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 16px;
    }
}

.logo {
    flex-shrink: 0;
    min-width: 140px;
}

@media (max-width: 768px) {
    .logo {
        width: 140px;
        height: 50px;
    }
}

@media (max-width: 768px) {

    .header {
        padding: 0 16px;
    }

    .logo {
        width: 140px;
        height: 50px;
        flex-shrink: 0;
    }

    .main-menu{
        display: none;
    }

    

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

}



@media (max-width: 768px) {
    .header {
        padding: 0 16px;
    }
}

/* On Desktop */


/* On Mobile */
@media (max-width: 768px) {
    .banner {
        /* Adjust this to match your new, shorter mobile header height */
        margin-top: 60px;
    }
}




.header {
    flex-wrap: nowrap;
}

.main-menu {
    flex-shrink: 1;
}

/* Desktop logo hidden on mobile */
@media (max-width: 768px) {
    .logo {
        display: none !important;
    }

    .logo-mobile {
        display: block !important;  /* make sure it shows */
    }

    /* .hamburger {
        display: block !important; /* keep menu toggle visible */
    } */

    .main-menu-mobile {
        background: rgba(245, 158, 11, 0.6);

    }

    .main-menu-mobile > ul > li > a > span {
        color: #010000;
    }

    .header {
        
        box-shadow: none !important;         /* remove the bottom shadow */
        height: auto !important;             /* shrink if the theme set a fixed height */
        padding: 0 !important;               /* remove extra padding */
    }

}

@media (min-width: 769px) {
    .logo-mobile {
        display: none !important;
    }
}


@media (min-width: 769px) {
    .logo {
        display: block;
    }
    .logo-mobile {
        display: none;
    }
    .main-menu {
        display: flex;
    }
    /* .hamburger {
        display: none !important;
    } */
    
}

.swiper-pagination-bullet {
    accent-color: #00FFAA !important;
}

html:root {
    --swiper-theme-color: rgba(245, 158, 11, 0.9);

}

.header .main-menu > ul > li > a {
    display: inline-flex;
    align-items: center;

    padding: 0.6rem 1.2rem;
    border-radius: 16px; /* ← 50% less rounded */

    background: linear-gradient(
            135deg,
            rgba(24, 24, 27, 0.8) 0%,
            rgba(39, 39, 42, 0.6) 100%
    );

    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #e5e7eb;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* Page fade */
body {
    opacity: 0;
    animation: pageFadeIn 0.1s ease forwards;
}

@keyframes pageFadeIn {
    to { opacity: 1; }
}

.home-section {
    padding: clamp(48px, 8vw, 80px) 1rem;
}

@media (max-width: 768px) {
    .contact-card {
        aspect-ratio: auto;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* single column */
        gap: 2rem;                 /* reduce spacing for smaller screens */
        margin-top: 2rem;
    }
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-images {
        flex-direction: column;
    }

    .footer-nav ul {
        align-items: center;
    }
}
.footer-main,
.footer-social,
.footer-bottom {
    width: 100%;
}


.meet-team-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.meet-team-card {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}

.meet-team-image {
    flex: 1;            
}

.meet-team-image img {
    width: 25%;         /* Makes image responsive to its container */
    height: 25%;
    display: block;
    border-radius: 8px;  /* Optional: adds a slight professional softening to corners */

}

.meet-team-text {
    flex: 1.2;
    justify-content: center;
}

.meet-team-image {
    flex: 1;
}

.meet-team-card:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .meet-team-card {
        flex-direction: column;
        text-align: center;
    }

    .meet-team-card:nth-child(even) {
        flex-direction: column; /* override reverse */
    }

    .meet-team-image img {
        max-width: 100%;
    }

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;

    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
}

.footer-main {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex: 1;              /* ← THIS is critical */
    align-items: center;
    justify-content: center;
}

.footer-images {
    display: flex;
    gap: 2rem;
    flex: 1;              /* ← allow images to expand */
    justify-content: center;
    align-items: center;
}

.footer-image {
    flex: 1;              /* images share available width */
    max-width: 300px;     /* adjust to taste */
}

.footer-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-nav ul {
    display: flex;
    flex-direction: row;        
    justify-content: center;    
    align-items: center;
    gap: 1rem;

    list-style: none;
    margin: 0;
    padding: 0;
}


.sub-footer-inner {
    display: none !important;
}




.service-card {
    background: #111;
    padding: 1.75rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-details {
    max-height: 0;
    /*overflow: hidden;*/
    opacity: 0;
    transition:
            max-height 0.4s ease,
            opacity 0.3s ease;
}

.service-card:hover .service-details {
    max-height: 200px; /* must be > content height */
    opacity: 1;
    margin-top: 1rem;
}

.service-details p {
    margin: 0;
    color: #b5b5b5;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-details {
    background: rgba(255,255,255,0.03);
    
}


.services-grid,
.container {
    overflow: visible;
}


@media (max-width: 768px) {
    .service-details {
        max-height: none;
        opacity: 1;
        margin-top: 1rem;
    }

    

    /* Base size for social icons */


}

/*.social-icons a:first-child svg {*/
/*    vertical-align: +0.1px; !* nudges Facebook down *!*/
/*}*/

.social-icons a svg,
.social-icons a img {
    width: 2rem;       /* default size */
    height: 24px;
    transition: transform 0.2s ease;
}

.brochure-link {
    padding-left: 2rem;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: #111;
    color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-card:hover {
    background: #1a1a1a;
}

/* Hide details by default */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* Reveal on hover */
.service-details {
    /*max-height: 0;*/
    /*overflow: hidden;*/
    transition: max-height 0.4s ease;
    padding-top: 0;
}

.service-card:hover .service-details {
    max-height: 500px;
    padding-top: 1rem;
}


/* Title spacing */
.service-title {
    margin: 0;
}

/* Description styling */
.service-description {
    padding-top: 1rem;
    color: #d1d5db;
    line-height: 1.6;
}

@media (hover: none) {
    .service-details {
        max-height: none;
    }
}

.service-title::after {
    content: " +";
    color: #f5a60b;
}

.service-card:hover .service-title::after {
    content: " −";
}

.fb-page-container {
    width: 100%;                 /* fill parent width */
    max-width: 1200px;           /* optional, keeps it from being too wide on large screens */
    margin: 2rem auto 0 auto;    /* center horizontally with margin-top */
    display: flex;
    justify-content: center;     /* center the feed */
}

.fb-page-container .fb-page {
    width: 100% !important;      /* force FB widget to fill container */
    max-width: 100%;             /* responsive */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* space between icons and hamburger */
}


/* Tablets and smaller phones */
@media (max-width: 768px) {
    .social-icons a svg,
    .social-icons a img {
        width: 20px;   /* slightly smaller */
        height: 20px;
    }

}

/* Extra small phones (e.g., iPhone SE) */
@media (max-width: 480px) {
    .social-icons a svg,
    .social-icons a img {
        width: 22px;
        height: 22px;
    }

    
}

.fb-page-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-top: 25%; /* adjust to approximate aspect ratio (height/width) */
}

.fb-page-container .fb-page,
.fb-page-container .fb-page iframe {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}


.mySwiper .swiper-slide img {
    vertical-align: top;   /* or baseline */
    display: block;        /* BEST option */
}

.about-us-text {
    padding-bottom: 50px;
}

.hidden {
    display: none;
}

.swiper-slide {
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
}

.swiper-slide img {
    max-width: 100%;
    height: auto;
}



.contact-card[href] {
    cursor: pointer;
}

.fb-page-wrapper {
    width: 100%;
    max-width: 500px;      /* optional: center & constrain width */
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 1rem;  /* space from footer */
}

.fb-page {
    width: 100% !important;
    min-height: 400px;     /* prevent it from collapsing */
}

.fb-page-container {
    width: 100%;
    overflow: hidden;      /* prevents iframe overflow */
}

.about-us-text p {
    font-size: 0.95rem;

}

.brochure-link a{
    white-space: nowrap;
    color: rgba(245, 158, 11, 0.9) !important;
}

.brochure-link-mobile a{
    white-space: nowrap;
    color: rgba(245, 158, 11, 0.9) !important;
    justify-content: center; 
    display: flex;
}

@media (max-width: 768px) {
    .brochure-link {
        display: none;
    }

    


}

/* .header {
    min-width: 440px;
    min-height: 100px;
} */

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* spacing between icons */
}


.header-right .social-icon svg:hover {
    transform: scale(1.2);
    fill: rgba(245, 158, 11, 0.9);
}


@media (max-width: 480px) {
    .header-right {
        gap: 1rem;
    }
}

.main-menu {
    padding-right: 1rem;
}

.contact-card {
    aspect-ratio: 2.5 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: linear-gradient(135deg, rgba(24, 24, 27, 0.6) 0%, rgba(39, 39, 42, 0.4) 100%);
    padding: 0.2rem;  /* Shrunk padding */
    border-radius: 25px;
    border: 1px solid rgba(245, 158, 11, 0.15);
    transition: all 0.4s ease;

    gap: 0.05rem;  
}


.contact-and-facebook-feed {
    display: flex;
    justify-content: space-between;  /* Space them out equally */
}

/* Contact cards container */
.contact-cards-container {
    flex: 1;  /* Allow it to take up available space */
    margin-right: 20px;  /* Space between contact cards and feed */
}

.facebook-feed-container {
    flex: 1;  /* Allow it to take up available space */
}

@media (max-width: 768px) {
    .contact-and-facebook-feed {
        flex-direction: column;  /* Stack them vertically on small screens */
        align-items: center;  /* Center them */
    }

    .contact-cards-container,
    .facebook-feed-container {
        width: 100%;  /* Make each container full width on small screens */
        margin-right: 0;  /* Remove the right margin */
        margin-bottom: 20px;  /* Add some space between the sections */
    }
}

.contact-and-facebook-feed {
    display: flex;                /* Use flexbox to arrange the sections side by side */
    justify-content: space-between; /* Distribute space between sections */
    gap: 20px; /* Space between sections */
    align-items: flex-start;  /* Align items to the top */
    flex-wrap: wrap;           /* Allow wrapping on smaller screens */
}

/* Ensure each container (contact cards and facebook feed) takes equal space */
.contact-cards-container,
.facebook-feed-container {
    flex: 1;                   /* Each takes up equal available space */
    min-width: 250px;           /* Prevent them from shrinking too small */
    display: flex;              /* Make the container a flexbox to align its children */
    flex-direction: column;     /* Stack the elements vertically inside the container */
    justify-content: flex-start; /* Align children to the top */
}

/* Optional: Adjust layout for smaller screens */
@media (max-width: 768px) {
    .contact-and-facebook-feed {
        flex-direction: column;  /* Stack them vertically on smaller screens */
        align-items: center;     /* Center the items */
    }

    .contact-cards-container,
    .facebook-feed-container {
        width: 100%;    /* Make them full width */
        margin-bottom: 20px;  /* Space between stacked sections */
    }
}


/* Flex layout for contact cards container */
.contact-cards {
    display: flex;                          /* Flexbox layout */
    flex-wrap: wrap;                        /* Allow wrapping for mobile view */
    gap: 20px;                              /* Space between the cards */
    justify-content: space-between;         /* Distribute the cards evenly */
}

/* Make each card responsive */
.contact-card {
    width: 100%;                            /* By default, the card takes 100% of the container's width */
    max-width: 300px;                       /* Set a max-width so it doesn't stretch too much on large screens */
    flex-grow: 1;                           /* Cards can grow to fill the space */
    display: block;                         /* Ensure block-level for each card */
    padding: 1rem;
    border-radius: 8px;                     /* Optional: add border radius */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: add a slight shadow */
}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
    .contact-cards {
        justify-content: center;            /* Center cards on small screens */
    }

    .contact-card {
        width: 90%;                         /* Each card will take 90% width on smaller screens */
        max-width: 350px;                   /* Allow a little more width but still keep it responsive */
        margin-bottom: 1rem;                /* Add some space between stacked cards */
    }
}


.contact-card {
    text-decoration: none; /* Remove default underline */
    position: relative; /* Necessary for positioning the pseudo-element */
    display: inline-block; /* Ensures it's treated like a block-level element for positioning */
}

.contact-card::after {
    content: "";
    position: absolute;
    bottom: 0; /* Position it just under the text */
    left: 0;
    width: 100%; /* Full width of the link */
    height: 2px; /* The height of the underline */
    background-color: rgba(245, 158, 11, 0.5); /* Initial color with opacity of 0.5 */
    opacity: 0; /* Start with the underline hidden */
    transition: opacity 0.3s ease, background-color 0.3s ease; /* Smooth opacity and color transition */
}

.contact-card:hover::after,
.contact-card:focus::after {
    opacity: 1; /* Make the underline visible */
    background-color: rgba(245, 158, 11, 0.95); /* Change to the higher opacity color */
}


/* Apply top padding or margin to the section holding the carousel */
.carousel-wrapper {
    padding-top: 8rem; /* Adjust this to match the height of your header */
}



/* Mobile Styles (Screens smaller than 768px) */
@media screen and (max-width: 768px) {

    /* 1. Hide the Director images */
    /*.about-us-image img {*/
    /*    display: none;*/
    /*}*/

    /* 2. Scale down the text size */
    .about-us-text p {
        font-size: 14px;      /* Smaller base text */
        line-height: 1.5;    /* Tighter line spacing for readability */
        margin-top: 10px;
    }

    /* 3. Adjust the Headings (Optional but recommended) */
    .about-us-image h2 {
        font-size: 1.5rem;   /* Smaller name */
        margin-bottom: 2px;
    }

    .about-us-image h3 {
        font-size: 1rem;     /* Smaller title */
        color: #666;         /* Subtle color for the "Director" subtitle */
    }

    /* 4. Remove extra padding if the layout feels too wide */
    .about-us-content {
        padding: 15px 0;
        display: block;      /* Ensures elements stack vertically */
    }

    /*.page-about-us .home-section.section-light {*/
    /*    display: none;*/
    /*}*/
}


.carousel-wrapper .swiper {
    width: 100%;
    height: auto; /* Allow the container to shrink with the image */
}

.carousel-wrapper .swiper-slide img {
    width: 100%;
    height: auto;      /* Maintain aspect ratio */
    object-fit: contain; /* Ensures the whole image is visible */
    display: block;
}

/* 1. Remove forced height and tighten container */
.swiper.mySwiper {
    height: auto !important;
    padding-bottom: 30px !important; /* This creates just enough space for dots */
}

/* 2. Position the dots closer to the image */
.swiper-pagination {
    bottom: 5px !important; /* Moves dots up toward the image */
    position: relative !important; /* Makes them follow the image height */
    margin-top: 10px;
}

/* 3. Ensure the wrapper doesn't have a minimum height */
.swiper-wrapper {
    height: auto !important;
    min-height: 0 !important;
}

/*!* Portfolio Swiper *!*/

.carousel-wrapper .swiper {
    width: 100%;
    height: auto; /* Allow the container to shrink with the image */
}

.carousel-wrapper .swiper-slide img {
    width: 100%;
    height: auto;      /* Maintain aspect ratio */
    object-fit: contain; /* Ensures the whole image is visible */
    display: block;
}

.portfolio-carousel.swiper {
    height: auto !important;
    padding-bottom: 30px !important; /* This creates just enough space for dots */
}

.swiper-wrapper {
    height: auto !important;
    min-height: 0 !important;
}

/*}*/

@media (max-width: 768px) {
    .swiper-button-next, .swiper-button-prev {
        top: 50%; /* Re-centers them if they moved */
        transform: translateY(-50%);
    }
}



.banner-overlay {
    background: rgba(0, 0, 0, 0.4); /* 0.4 is the transparency */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .banner {
        /* Adjust 80px to match the actual height of your mobile header */
        padding-top: 80px;

        /* Ensure the background image still looks centered despite the padding */
        background-origin: border-box;
    }

    .portfolio-card {
        width: 100%;
        margin-bottom: 2rem;
    }

    .portfolio-carousel {
        width: 100%;
        height: auto !important; /* Allow the swiper to shrink */
        border-radius: 4px;      /* Optional: matches luxury branding */
        overflow: hidden;
    }

    .portfolio-carousel .swiper-slide img {
        width: 100%;
        height: auto !important;
        object-fit: contain;     /* Shows the full image, no cropping */
        display: block;
    }

    /* Tighten the gap for the dots */
    .portfolio-carousel .swiper-pagination {
        bottom: 5px !important;
        position: relative !important; /* Keeps dots right under the image */
        margin-top: 10px;
    }

    .portfolio-carousel img {
        max-width: 100%;
        height: auto !important;
        display: block;
    }
}



.contact-card {
    -webkit-touch-callout: default;
}

.contact-card p {
    -webkit-user-select: text;
    user-select: text;
}

.contact-card p {
    pointer-events: auto;
}

.contact-card {
    pointer-events: auto;
}



@media (max-width: 767px) {
    /* 1. Reset the container to pull items to the left */
    .header-container {
        display: flex !important;
        justify-content: flex-start !important; /* Pulls both groups to the left */
        align-items: center !important;
        gap: 0rem; /* <--- THIS IS YOUR MANUAL CONTROL FOR THE GAP */
        width: 100% !important;
        /* padding: 0 1.5rem !important; */
    }

    
    .social-icons {
        margin-left: 0 !important;
        flex-shrink: 0 !important; /* Keeps icons from getting squashed */
    }

    /* 3. Ensure the logo group doesn't push the icons away */
    .header-left {
        flex: 0 0 auto !important;
        width: auto !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-container {
        display: flex !important;
        /* Option A: Keep them left-aligned but with a much larger gap */
        justify-content: flex-start !important;
        gap: 1rem; 

        padding: 0 3rem !important; /* More breathing room on the edges */
    }

    .social-icons {
        margin-left: 0 !important;
    }
}

.portfolio-card .portfolio-carousel {
    width: 100%;
    /* 3000 / 900 = 3.333 */
    aspect-ratio: 10 / 3;
    overflow: hidden;
    height: auto !important; /* Let aspect-ratio handle height */
}

.portfolio-card .swiper-slide {
    height: 100% !important;
}

.portfolio-card .swiper-slide img {
    width: 100%;
    height: 100%;
    
    object-fit: cover;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    top: 50% !important; /* Move to the middle of the container */
    transform: translateY(-50%); /* Offset the arrow's own height */
    margin-top: 0 !important; /* Reset default Swiper margins */
    z-index: 10;
}

/* header */

.logo-mobile {
    position: relative;
    /*width: 100%;*/
    aspect-ratio: 1050 / 600;
    /*max-width: 120px;*/
    width: clamp(60px, 30vw, 150px);
    margin: 0 auto;
    overflow: hidden;
    background-color: #010000;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}



.header.nav-open .main-menu,
    .header.nav-open .social-icons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

/* .super-header-container {
  display: flex;
  align-items: center;      
  justify-content: space-between;   
  height: 80px;
  position: relative;
} */

.super-header-container {
  display: flex;
  align-items: center;           /* vertically center all children */
  justify-content: space-between; /* push left & right to edges */
  height: 120px;
  position: relative;
  padding: 0 1rem;              /* optional horizontal padding */
}

.social-icons {
        display: flex;
}

.social-icons {
        display: flex;
        align-items: center;
       
}

.social-icons .hamburger {
    /*margin-left: 2rem;     !* more space after last social icon *!*/
    position: relative;    /* keep it relative for vertical adjustments */
    top: 0.4rem;              /* push hamburger down a little */
    transition: transform 0.2s ease;
}

.social-icons {
    display: flex;
    align-items: center;
    /* This gap controls the space between the Facebook and Instagram icons */
    gap: clamp(10px, 3vw, 20px);
}


.social-icons .hamburger {
    /* This increases the specific gap between the last social icon and the hamburger */
    /* margin-left: clamp(15px, 5vw, 40px) !important; */

    /* Ensure no old padding is interfering */
    padding: 0 !important;
}


.super-header-container > .hamburger {
  margin-left: auto;      /* pushes it to the far right in flex row */
  display: flex;
  align-items: center;
}

.header.header-absolute {
    display: flex;          
    flex-direction: row; 
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10; 
}

.super-header-container {
    flex: 1; 
}

/*Responsive Gallery*/

.responsive-grid-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 200px 200px;
    grid-gap: 0.5rem;
}

.gallery-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item .image{
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.gallery-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    cursor: pointer;
    transition:.2s ease-in-out; 
}

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

.gallery-item .text{
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 4;
    transition: .3s ease-in-out;
    -webkit-backdrop-filter: blur(5px) saturate(1.8);
    backdrop-filter: blur(5px) saturate(1.8);
}

.gallery-item:hover .text {
    opacity: 1;
    animation: move-down .2s linear;
    padding: 1em;
    width: 100%;
}

.responsive-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* default 3 columns */
    grid-auto-rows: 200px;                 /* adjust row height as needed */
    grid-gap: 0.5rem;
}

@media (max-width: 768px) {
    .responsive-grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets / mobile */
    }
}


.w-1 {
    grid-column: span 0.5;
}
.w-2 {
    grid-column: span 1;
}
.w-3 {
    grid-column: span 1.5;
}
.w-4 {
    grid-column: span 2;
}
.w-5 {
    grid-column: span 2.5;
}
.w-6 {
    grid-column: span 3;
}


.h-1 {
    grid-row: span 0.5;
}

.h-2 {
    grid-row: span 1;
}

.h-3 {
    grid-row: span 1.5;
}

.h-4 {
    grid-row: span 2;
}

.h-5 {
    grid-row: span 2.5;
}

.h-6 {
    grid-row: span 3;
}

@keyframes move-down {
    0% {
        top: 10%;
    }
    50% {
        top: 35%;
    }
    100% {
        top: 50%;
    }
}

.image-modal {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 1000; /* on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); /* dim background */
    justify-content: center;
    align-items: center;
}

/* .image-modal img.modal-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 10px 50px rgba(0,0,0,0.7);
    border-radius: 5px;
} */

.image-modal img.modal-content {
    width: auto;          /* use natural width */
    height: auto;         /* use natural height */
    max-width: 90vw;      /* at most 90% of viewport width */
    max-height: 90vh;     /* at most 90% of viewport height */
    object-fit: contain;  /* keep aspect ratio */
    box-shadow: 0 10px 50px rgba(0,0,0,0.7);
    border-radius: 5px;
}

.image-modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#toggle-main-menu-mobile {
    position: relative;
}

#toggle-main-menu-mobile .hamburger-box {
    position: absolute;
    right: 1rem;   
    top: 50%;
    transform: translateY(-50%);
}

.super-header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: center;
}

.logo {
  position: fixed;          /* relative to viewport */
  left: 50vw;               /* 50% of viewport width */
  transform: translateX(-50%);
  top: 1.5rem;              /* adjust to match header height */
  z-index: 1000;
}

.social-icons {
  justify-self: start;
}

.logo {
  justify-self: center;
}

#toggle-main-menu-mobile {
  justify-self: end;
}

.super-header-container {
  display: flex;
  align-items: center;
  justify-content: center; /* centers the whole group */
  gap: 2rem; /* spacing between items */
}

.logo-2 {
  display: flex;
  align-items: center;
}

.logo-2 img {
  display: block;
  max-height: 3.5rem;
  width: auto;
}

@media (max-width:768px) {
    .logo-2 {
        display: none;
    }
}

/* HEADER WRAPPER */
.header.header-absolute {
    width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;
}

/* THREE EQUAL COLUMNS */
.super-header-container {
    display: grid !important;
    grid-template-columns: 1fr 2fr 1fr !important;
    align-items: center !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    min-height: 110px !important; /* Prevent spilling */
    box-sizing: border-box !important;
}

/* LEFT */


/* CENTER */
.nav-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* RIGHT */
.nav-right {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

/* LOGO */
.logo-main img {
    height: clamp(60px, 6vw, 90px) !important;
    width: auto !important;
    max-width: 100% !important;
    display: block !important;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex !important;
    gap: 1rem !important;
}

.social-icons a svg {
    height: clamp(18px, 2vw, 26px) !important;
    width: auto !important;
    fill: white !important;
    display: block !important;
}

/* HAMBURGER */
.hamburger {
    font-size: clamp(24px, 3vw, 34px) !important;
}

.header.header-absolute {
    position: relative !important; /* instead of absolute */
}

/* Parent container */
.social-icons-new {
    display: flex;              /* horizontal layout */
    gap: 1rem;                  /* space between icons */
    align-items: center;        /* vertical alignment */
}

/* Anchor tags */
.social-icons-new a {
    display: inline-flex;       /* keep icons inline and centered */
    align-items: center;
    justify-content: center;
    text-decoration: none;      /* remove underline if any */
}

/* SVG icons */
.social-icons-new a svg {
    display: block;             
    height: clamp(18px, 2vw, 26px); /* responsive height */
    width: auto;                
    fill: white;                
    transition: transform 0.3s ease, fill 0.3s ease; /* smooth hover effects */
}

/* Optional: hover effect */
.social-icons-new a:hover svg {
    transform: scale(1.1);
    fill: #f0c040;              /* highlight color on hover */
}

/* Logo */
.logo-main img {
    height: clamp(40px, 8vw, 90px);
    width: auto;
}

/* Hamburger */
.hamburger {
    font-size: clamp(20px, 6vw, 34px);
}

/* Social icons */
.social-icons-new a svg {
    height: clamp(20px, 4vw, 26px);
}

/* Optional: menu items */
.nav-center ul li {
    font-size: clamp(14px, 3vw, 18px);
}

.nav-left {
    display: flex;             /* flex container */
    justify-content: center;   /* horizontal centering */
    align-items: center;       /* vertical centering */
    gap: 1rem;                 /* optional spacing between items */
}

/* .social-icons-new {
    display: flex;
    gap: 1rem;
} */

.social-icons-new {
    display: flex;
    gap: clamp(30px, 2vw, 45px); /* min 8px, scales with viewport, max 24px */
    align-items: center;
}

/* Logo scaling */

.logo-mobile-new img {
    height: clamp(50px, 8vw, 60px);
    width: clamp(120px, 8vw, 150px);
}

/* Mobile first (phones) 0-768px */
@media (max-width: 768px) {
    .hamburger { display: flex !important; }
    .logo-mobile-new { display: block !important; }
    .logo-desktop, .main-menu-desktop { display: none !important; }
}

/* Tablet 769-1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .hamburger { display: flex !important; }       /* keep hamburger visible */
    .logo-mobile-new { display: block !important; }
    .logo-desktop, .main-menu-desktop { display: none !important; }
}

/* Desktop 1025px+ */
@media (min-width: 1025px) {
    .hamburger { display: none !important; }       /* hide hamburger on desktop */
    .logo-mobile-new { display: none !important; }
    .logo-desktop, .main-menu-desktop { display: block !important; }
}

.logo-desktop {
    height: clamp(120px, 8vw, 120px);
    width: clamp(150px, 8vw, );
}

.logo-desktop img{
    height: clamp(100px, 8vw, 100px);
    width: clamp(150px, 8vw, );
}

.main-menu-desktop {
    width: clamp(100px, 16vw, 150px);
}

/* ----------------------
   MOBILE (0–1024px)
   ---------------------- */
.header-mobile { display: block !important; }
.header-desktop { display: none !important; }

.grid-mobile {
  display: grid !important;
  grid-template-columns: 1fr 2fr 1fr !important;
  align-items: center !important;
  width: 100% !important;
  padding: 0.5rem 1rem !important;
}

.logo-mobile-new img {
  height: clamp(60px, 8vw, 90px) !important;
  width: auto !important;
}

/* ----------------------
   DESKTOP (1025px+)
   ---------------------- */
@media (min-width: 1025px) {
  .header-mobile { display: none !important; }
  .header-desktop { display: block !important; }

  .grid-desktop {
    display: grid !important;
    grid-template-columns: auto 1fr !important; /* left: logo+menu, right: optional */
    align-items: center !important;
    gap: clamp(24px, 5vw, 48px) !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
  }

  .nav-left {
    display: flex !important;
    align-items: center !important;
    gap: clamp(16px, 4vw, 32px) !important;
  }

  .logo-desktop img {
    height: clamp(60px, 12vw, 120px) !important;
    width: auto !important;
  }

  .main-menu-desktop {
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: clamp(16px, 2vw, 32px) !important;
  }

    .main-menu-desktop a {
        font-size: clamp(12px, 1vw, 18px) !important;       /* smaller font range */
        padding: clamp(4px, 0.5vw, 10px) clamp(8px, 1vw, 16px) !important;  /* tighter padding */
        display: inline-block !important;
        line-height: 1.3 !important;                        /* slightly tighter vertical spacing */
        white-space: nowrap !important;                     /* keep menu items on one line */
    }
}

@media (min-width: 1025px) {
  .super-header-container.grid-desktop {
    display: grid !important;
    grid-template-columns: 0.5fr 3fr 0.5fr !important; /* left | center | right */
    align-items: center !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    gap: clamp(24px, 5vw, 48px) !important;
  }

  .logo-desktop img {
    max-height: clamp(60px, 10vw, 100px) !important; /* scales but doesn’t get too big */
    max-width: 100% !important; /* don’t overflow parent */
    height: auto !important;
    width: auto !important;
    display: block !important;
}
  



  /* Scoped nav rules */
  .super-header-container.grid-desktop > .nav-left {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .super-header-container.grid-desktop > .nav-center {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* menu starts at left of center column */
    gap: clamp(16px, 2vw, 32px) !important;
  }

  .super-header-container.grid-desktop > .nav-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }
}




/* Desktop */


.banner-bg {
    position: relative !important;   /* Make overlay positioned relative to this */
    width: 100% !important;
    height: auto !important;         /* Or fixed height if needed */
    overflow: hidden !important;
}

.banner-bg img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.banner-overlay {
    position: absolute !important;   /* Overlay sits on top */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.5) !important; /* example semi-transparent overlay */
    pointer-events: none !important; /* optional: click-through */
}


/* Common defaults that cause gaps */
/* Layout for main footer row */
.footer-main {
    display: flex;
    align-items: center;
    position: relative;
}

/* New content block */
.footer-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
}

/* Nav reset */
.footer-nav-list-new {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    gap: clamp(12px, 3vw, 32px); /* scales spacing */
    list-style: none;
    padding: 0;
    margin: 0;

    flex-wrap: nowrap; /* NEVER stack */
}

.footer-nav-list-new li {
    margin: 0; /* remove vertical spacing */
}

.footer-nav-list-new a {
    text-decoration: none;
    font-size: clamp(12px, 2.5vw, 16px); /* responsive text */
    white-space: nowrap; /* prevent wrapping inside links */
}

/* Brochure */
.footer-brochure-new a {
    text-decoration: none;
}

/* Optional: Mobile stacking */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
}

.footer-content-new {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

/* MOBILE FIRST */
.services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}

/* TABLET */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .main-menu-mobile {
        background: rgba(245, 158, 11, 0.6) !important;
    }

    .main-menu-mobile .open{
        background: rgba(245, 158, 11, 0.6) !important;
    }
}

.main-menu-mobile {
    background: rgba(245, 158, 11, 0.6) !important;
}

.main-menu-mobile .open{
    background: rgba(245, 158, 11, 0.6) !important;
}

.banner-new-services {
    background-image: url('/images/slide3.png');
}

.banner-new-about {
    background-image: url('/images/slide6.png');
}

.banner-new-portfolio {
    background-image: url('/images/slide2.png');
}

.footer-brochure-new a{
    color:rgba(248, 160, 8, 0.925);
}

.service-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-summary::-webkit-details-marker {
    display: none;
}

.service-toggle {
    position: relative;
    width: 18px;
    height: 18px;
}

.service-toggle::before,
.service-toggle::after {
    content: "";
    position: absolute;
    background-color: white;
    transition: transform 0.3s ease;
}

/* Horizontal line */
.service-toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertical line */
.service-toggle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

details[open] .service-toggle::after {
    transform: translateX(-50%) scaleY(0);
}

.service-card {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
    transition: background 0.3s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.05);
}

.service-content {
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-summary::-webkit-details-marker {
    display: none;
}



.responsive-grid-container {
    padding-bottom: 3rem;
}


.swiper {
  position: relative !important;
}
