/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body {
    background: #111;
    color: #eee;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER (STICKY) */
header {
    background: #000;
    padding: 15px 20px;
    border-bottom: 2px solid #ff6f00;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    color: #ff6f00;
    font-size: 22px;
}
/* BACKGROUND IMAGE SYSTEM */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}

/* HOME */
.home-page::before {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920');
}

/* ABOUT */
.about-page::before {
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1920');
}

/* SERVICES */
.services-page::before {
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1920');
}

/* CONTACT */
.contact-page::before {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920');
}
.contact-page .section {
    flex: unset; /* 👈 removes forced stretching */
}

/* MENU */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #ff6f00;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #ff6f00;
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.hero div {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 42px;
    color: #ff6f00;
}

.hero p {
    margin: 15px 0;
    color: #ddd;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ff6f00;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;

    transition: all 0.3s ease;
}
/* 🔥 HOVER EFFECT */
.cta-btn:hover {
    background: #ff8500; /* slightly brighter */
    transform: translateY(-3px); /* 👈 lift effect */
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.4); /* glow */
}
.cta-btn:active {
    transform: translateY(0); /* press effect */
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.3);
}

/* SECTION */
.section {
    padding: 60px 30px;
    text-align: center;
    flex: 1;
}

.section-title {
    color: #ff6f00;
    margin-bottom: 30px;
    font-size: 28px;
}

/* CARDS GENERAL */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========================= */
/* 👨‍💼 ABOUT PAGE */
/* ========================= */

.expert-card {
    background: #1c1c1c;
    border: 1px solid #ff6f00;
    border-radius: 12px;
    padding: 25px;
    margin: 15px;
    width: 320px;
    text-align: left;
    transition: 0.3s;
}

.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255,111,0,0.2);
}

.expert-card h3 {
    color: #ff6f00;
    margin-bottom: 15px;
}
.expert-img {
    width: 160px;        /* smaller width */
    height: 200px;       /* portrait ratio */

    object-fit: cover;

    border-radius: 10px;
    margin: 0 auto 15px;
    display: block;

    border: 2px solid rgba(255,111,0,0.3);
}
.expert-card:hover .expert-img {
    transform: scale(1.05);
    transition: 0.3s;
}
.label {
    font-weight: 600;
    color: #ff6f00;
}

.expert-card p {
    margin: 8px 0;
    line-height: 1.5;
}

/* ========================= */
/* 🛠 SERVICES PAGE */
/* ========================= */

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: #1c1c1c;
    border: 1px solid #ff6f00;
    border-radius: 12px;
    padding: 25px;
    width: 280px;
    text-align: center;
    transition: all 0.4s ease;

    /* animation default hidden */
    opacity: 0;
    transform: translateY(30px);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ff6f00;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 20px rgba(255,111,0,0.3);
}

/* ========================= */
/* 📞 CONTACT PAGE */
/* ========================= */

/* CONTAINER */
.contact-container {
    display: flex;
    gap: 30px;
    align-items: flex-start; 
    justify-content: center;
    flex-wrap: wrap;
}


.contact-card {
    display: flex;
    flex-direction: column;
}

/* CARDS */
.contact-card {
    background: rgba(0,0,0,0.6);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,111,0,0.2);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}


/* HEADINGS */
.contact-block h3,
.map-section h3 {
    color: #ff6f00;
    margin-bottom: 10px;
}

/* LINKS */
.contact-block a {
    color: #fff;
    text-decoration: none;
}

.contact-block a:hover {
    color: #ff6f00;
}
.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.contact-left .cta-btn {
    margin-top: 10px;
    margin-bottom: 0;
}

.contact-block {
    text-align: left; /* 👈 fix text alignment */
    margin-bottom: 18px;
}
.contact-left,
.contact-right {
    height: 100%;
}

/* MAP */
.map iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    border: none;
}

/* MAP BUTTON */
.map-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff6f00;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.map-btn:hover {
    background: #ff8500;
}

/* MOBILE */
@media(max-width:768px){
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
}
@media(max-width:768px){
    .contact-card {
        width: 100%;
    }
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #000;
    margin-top: auto;
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */

@media(max-width:768px){

    .menu-toggle {
        display: block;
    }

    nav ul {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    nav ul.active {
        max-height: 300px;
    }

    nav ul li {
        padding: 12px 0;
        border-top: 1px solid #222;
        text-align: center;
    }

    .hero {
        height: 80vh;
    }

    .hero h2 {
        font-size: 26px;
    }

    .section {
        padding: 40px 20px;
    }

    .card, .expert-card, .service-card {
        width: 100%;
        max-width: 320px;
    }
}
.hero-subtext {
    margin-top: 50px;

    max-width: 1100px; /* 👈 Increase Width of the text box */
    margin-left: auto;
    margin-right: auto;

    padding: 25px 30px;

    background: rgba(0, 0, 0, 0.5); /* 👈 premium card */
    border-radius: 12px;

    color: #ddd;
    font-size: 15px;
    line-height: 1.8;

    text-align: center;

    backdrop-filter: blur(6px); /* 👈 glass effect */
}
.hero-subtext {
    border: 1px solid rgba(255,111,0,0.2);
}
/* TRUSTED BRANDS SECTION */
.trusted-brands {
    margin-top: 20px;
}

.trusted-title {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* LOGO ROW */
.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* LOGOS */
.brand-logos img {
    height: 35px;
    opacity: 0.7;
    transition: 0.3s;
}

/* HOVER EFFECT */
.brand-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}
@media (max-width: 768px) {

    .hero {
        height: auto;              /* 👈 allow content to expand */
        padding: 80px 20px 40px;   /* 👈 adds top + bottom space */
    }

    .hero-content {
        justify-content: center;
    }

}