
:root {
    --gold:      #c9a84c;
    --gold-light:#e2c06a;
    --navy:      #0d1f3c;
    --black:     #0a0a0a;
    --white:     #ffffff;
    --off-white: #f7f8fc;
    --grey:      #555555;
    --light-grey:#888888;
    --card-bg:   #ffffff;
    --surface:   #f0f2f7;
    --text:      #1a1a2e;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--text);
}

/* =========================================
   TOP BAR
========================================= */

.top-bar{
    width: 100%;
    background: #0f172a;
    color: #fff;

    padding: 10px 30px;

    font-size: 14px;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    box-sizing: border-box;   /* IMPORTANT */
    overflow: hidden;
}

.top-bar-left{
    display:flex;
    align-items:center;
    gap:30px;
}

.top-bar-left a{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.top-bar-left a:hover{
    color:#38bdf8;
}

.top-bar-left i{
    font-size:13px;
}

/* mobile */

@media(max-width:768px){

    .top-bar{
        padding:10px 0px;
        justify-content:center;
    }

    .top-bar-left{
        flex-direction:column;
        align-items:center;
        gap:8px;
    }

}
/* =========================================
   NAVBAR
========================================= */

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 0px;
    background: #f5f5f5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* LOGO — left column */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
    justify-self: start;
}

.logo img {
    width: 70px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
}

.logo span {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navy);
    white-space: nowrap;
}

.logo span strong {
    color: var(--gold);
}

/* NAV LINKS — center column, always truly centered */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-self: center;
}

/* LINKS */
.nav-links a {
    text-decoration: none;
    color: #304030;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a.active {
    color: var(--gold);

    font-weight: 900;

    font-style: italic;

    font-size: 18px;

    transform: scale(1.05);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* CONTACT ICON — right column */
.contact-icon {
    justify-self: end;
}

.contact-icon a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-icon a i {
    font-size: 18px;
    color: var(--navy);
}

.contact-icon a:hover {
    transform: scale(1.08);
    background: var(--navy);
}

.contact-icon a:hover i {
    color: var(--gold);
}

/* HAMBURGER — hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================
   MOBILE NAV  ≤ 900px
========================================= */
/* =========================================
   MOBILE NAV  ≤ 900px
========================================= */
@media(max-width:900px) {

    /* hide contact details top bar */
    .top-bar { display: none; }

    /* NAVBAR */
    .navbar{
        display:flex;
        align-items:center;
        justify-content:space-between;

        padding:10px 1%;

        position:sticky;
        top:0;

        width:100%;

        background:#f5f5f5;

        z-index:9999;

        overflow:visible;
    }

    /* LOGO */
    .logo{
        display:flex;
        align-items:center;
        gap:6px;

        max-width:75%;
        flex:1;
        min-width:0;
    }

    .logo img{
        width:30px;
        height:30px;
        object-fit:contain;
        flex-shrink:0;
    }

    .logo span{
        font-size:12px;
        font-weight:700;
        letter-spacing:0;
        line-height:1.1;

        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    /* HAMBURGER */
    .hamburger{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;

        gap:5px;

        background:transparent;
        border:none;

        cursor:pointer;

        padding:4px;

        z-index:10001;

        flex-shrink:0;
    }

    .hamburger span{
        width:22px;
        height:3px;

        background:var(--navy);

        border-radius:10px;

        transition:0.3s ease;
    }

    .hamburger.open span:nth-child(1){
        transform:translateY(8px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2){
        opacity:0;
    }

    .hamburger.open span:nth-child(3){
        transform:translateY(-8px) rotate(-45deg);
    }

    /* MOBILE MENU */
    .nav-links{
        position:absolute;

        top:100%;
        left:0;

        width:100%;

        background:#fff;

        display:none;
        flex-direction:column;

        padding:10px 0;

        box-shadow:0 10px 30px rgba(0,0,0,0.08);

        z-index:10000;

        border-top:1px solid #eee;
    }

    .nav-links.open{
        display:flex;
    }

    .nav-links a{
        width:100%;
        padding:14px 20px;

        box-sizing:border-box;

        font-size:15px;
        font-weight:600;

        color:var(--navy);

        border-bottom:1px solid #f1f1f1;

        text-decoration:none;
    }

    .nav-links a::after{
        display:none;
    }

    /* show the round contact icon on mobile */
    .contact-icon{
        display:flex;
        flex-shrink:0;
        margin-left:10px;
    }

    /* hide the text contact entry in dropdown — icon handles it */
    .mobile-contact-link{
        display:none !important;
    }
}

/* EXTRA SMALL DEVICES */

@media(max-width:480px){

    .logo img{
        width:26px;
        height:26px;
    }

    .logo span{
        font-size:10px;
    }

    .navbar{
        padding:8px 3%;
    }

    .nav-links a{
        font-size:14px;
        padding:13px 18px;
    }
}

/* hide mobile-only contact link on desktop */
/* .mobile-contact-link {
    display: none !important;
} */
/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 55px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.85);
}

.hero-content button {
    padding: 14px 38px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
}

.hero-content button:hover {
    background: var(--gold);
    color: var(--white);
}
/* hide mobile contact on desktop */
.mobile-contact-link {
    display: none;
}
@media(max-width:768px) {
    .hero { height: 80vh; }
    .hero-content h1 { font-size: 34px; }
    .hero-content p { font-size: 16px; }
}

/* =========================================
   FOOTER
========================================= */

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 50px 10%;
    border-top: 2px solid rgba(201,168,76,0.3);
}

.footer-top {
    text-align: center;
    margin-bottom: 35px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.footer h3 {
    margin-bottom: 15px;
    color: var(--gold);
    letter-spacing: 1px;
    font-size: 15px;
    text-transform: uppercase;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--gold);
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
}

.social-icons a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: 0.3s;
    filter: brightness(0.8);
}

.social-icons a img:hover {
    transform: scale(1.2);
    filter: brightness(1.2) sepia(1) saturate(3) hue-rotate(5deg);
}

.social-icons a:nth-child(1) img {
    width: 40px;
    height: 36px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: var(--card-bg);
    font-size: 13px;
}

@media(max-width:768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .top-bar { display: none; }
}

/* =========================================
   SERVICES SECTION (index.html tabs)
========================================= */

.section {
    padding: 30px 10%;
    max-width: 1350px;
    margin: auto;
}

.section h1 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 55px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
}
/* INITIAL STATE */
.footer-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* ACTIVE (when visible) */
.footer-item.show {
    opacity: 1;
    transform: translateY(0);
}
/* TABS */
/* .tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab {
    padding: 8px 18px;
    cursor: pointer;
    color: var(--grey);
    font-weight: 500;
    position: relative;
    transition: 0.3s;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 15px;
}

.tab:hover { color: var(--gold); }

.tab.active { color: var(--gold); } */
.tabs{
    display: flex;
    gap: 14px;
    margin-bottom: 45px;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;

    padding-bottom: 8px;

    scrollbar-width: none;
}

.tabs::-webkit-scrollbar{
    display: none;
}
.tab{
    flex: 0 0 auto;

    padding: 12px 24px;

    border-radius: 40px;

    background: #f4f6fb;

    border: 1px solid rgba(201,168,76,0.15);

    cursor: pointer;

    transition: 0.3s ease;

    font-size: 15px;

    font-weight: 600;

    color: var(--grey);
}
.tab.active{

    background: var(--gold);

    color: white;

    box-shadow: 0 10px 24px rgba(201,168,76,0.28);
}
/* .tab.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 5px;
} */

/* DEFAULT LAYOUT */
.default-layout {
    display: flex;
    gap: 55px;
    align-items: center;
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}

.default-layout img {
    width: 50%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

.default-layout .text { width: 45%; }

.default-layout h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: var(--navy);
    font-weight: 700;
}

.default-layout p {
    line-height: 2;
    font-size: 16px;
    color: var(--grey);
}

/* ALT LAYOUT */
.alt-layout {
    display: flex;
    gap: 35px;
    align-items: stretch;
}

.left-menu {
    width: 28%;
    display: flex;
    flex-direction: column;
}

.left-menu div {
    padding: 16px 18px;
    margin-bottom: 12px;
    cursor: pointer;
    border-radius: 14px;
    transition: 0.3s ease;
    color: var(--grey);
    font-weight: 600;
    background: var(--off-white);
    border: 1px solid #e0e4ef;
}

.left-menu div:hover {
    background: rgba(201,168,76,0.08);
    color: var(--gold);
    transform: translateX(4px);
}

.left-menu div.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(201,168,76,0.25);
}

.right-content {
    width: 68%;
    min-height: 420px;
    background: var(--white);
    padding: 38px;
    border-radius: 24px;
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.right-content h2 {
    font-size: 30px;
    margin-bottom: 22px;
    color: var(--navy);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.right-content h2::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 70px;
    height: 3px;
    border-radius: 4px;
    background: var(--gold);
}

.right-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--grey);
}

.right-content div {
    line-height: 1.8;
    font-size: 16px;
    color: var(--grey);
}

.right-content ul { padding-left: 22px; margin-top: 10px; }

.right-content li {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--grey);
    font-size: 16px;
}

.right-content strong { color: var(--navy); }

/* MOBILE */
@media(max-width:992px) {
    .alt-layout, .default-layout { flex-direction: column; }
    .default-layout img, .default-layout .text, .left-menu, .right-content { width: 100%; }
    .default-layout img { height: 320px; }
    .right-content { min-height: auto; }
}

@media(max-width:768px) {
    .section { padding: 30px 20px; }
    .section h1 { font-size: 34px; margin-bottom: 40px; }
    .tabs { gap: 12px; }
    .tab { padding: 10px 18px; font-size: 14px; }
    .default-layout, .right-content { padding: 25px; }
    .default-layout h2, .right-content h2 { font-size: 24px; }
    .default-layout p, .right-content p, .right-content li { font-size: 16px; line-height: 1.8; }
    .left-menu div { padding: 14px; }
}

/* =========================================
   TESTIMONIAL / ABOUT SLIDER SECTION
========================================= */

.testimonial-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 8%;
    min-height: 80vh;
    background: var(--off-white);
    color: var(--text);
    flex-wrap: wrap;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.left-content { flex: 1; min-width: 320px; }

.left-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--navy);
}

.left-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--grey);
    max-width: 700px;
}

.main-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.main-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* SLIDER BOX */
.slider-box {
    flex: 1;
    min-width: 420px;
    position: relative;
    z-index: 5;
}

.slides {
    display: none;
    background: var(--white);
    padding: 35px;
    border-radius: 22px;
    border: 1px solid rgba(201,168,76,0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.slides.active { display: block; }

.slide-text h3 {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 22px;
    color: var(--navy);
    font-weight: 500;
}

.slide-text span {
    font-size: 14px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* =========================================
   FULL COVER DIAGONAL FILL + TEXT SWITCH
========================================= */

.slides {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* overlay */
/* overlay */
.slides::before {
    content: "";
    position: absolute;
    top: -150%;
    right: -150%;
    width: 300%;
    height: 300%;

    background: var(--gold); /* or var(--navy) */

    transform: rotate(45deg) translate(0, 0);
    transition: transform 0.7s ease;
    z-index: 1;
}

/* hover */
.slides:hover::before {
    transform: rotate(45deg) translate(-50%, 50%);
}

/* content above overlay */
.slide-text {
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

/* 👉 TEXT COLOR CHANGE (BLACK) */
.slides:hover .slide-text h3,
.slides:hover .slide-text span {
    color: var(--black);
}
/* CONTROLS */
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-top: 28px;
}

.controls button {
    width: 48px;
    height: 48px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    background: transparent;
    color: var(--gold);
    transition: 0.3s;
}

.controls button:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.05);
}

.dots { display: flex; align-items: center; gap: 12px; }

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201,168,76,0.25);
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid var(--gold);
}

.dot:hover { transform: scale(1.2); }

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* MOBILE */
@media(max-width:992px) {
    .testimonial-section { flex-direction: column; align-items: flex-start; }
    .slider-box { width: 100%; min-width: 100%; }
    .left-content h1 { font-size: 42px; }
    .left-content p { font-size: 16px; }
    .slide-text h3 { font-size: 20px; }
}

@media(max-width:768px) {
    .testimonial-section { padding: 55px 20px; }
    .left-content h1 { font-size: 34px; }
    .left-content p { font-size: 16px; }
    .main-btn { padding: 12px 26px; font-size: 15px; }
    .slides { padding: 25px; }
    .slide-text h3 { font-size: 18px; }
    .slide-text span { font-size: 14px; }
    .controls { gap: 18px; }
    .controls button { width: 42px; height: 42px; font-size: 16px; }
    .dot { width: 10px; height: 10px; }
}
/* =========================================
   CONTACT CTA SECTION
========================================= */

.contact-cta {
    padding: 90px 10%;

    text-align: center;
    background:var(--white);
    /* background: linear-gradient(
        135deg,
        var(--gold),
        #eaebec
    ); */

    color: var(--navy);

    position: relative;

    overflow: hidden;
}

/* GOLD GLOW */
.contact-cta::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(201,168,76,0.08);

    border-radius: 50%;

    top: -120px;
    right: -100px;
}

/* TITLE */
.contact-cta h2 {
    font-size: 46px;

    margin-bottom: 22px;

    font-weight: 800;

    line-height: 1.3;

    position: relative;

    z-index: 2;
}

/* TEXT */
.contact-cta p {
    max-width: 850px;

    margin: auto;

    font-size: 17px;

    line-height: 1.9;

    color: var(--black);

    margin-bottom: 40px;

    position: relative;

    z-index: 2;
}

/* BUTTON */
.contact-cta-btn {
    display: inline-block;

    padding: 16px 42px;

    background: var(--gold);

    color: var(--navy);

    text-decoration: none;

    border-radius: 40px;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.35s ease;

    border: 2px solid var(--gold);

    position: relative;

    z-index: 2;
}

/* HOVER */
.contact-cta-btn:hover {
    background: transparent;

    color: var(--gold);

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(201,168,76,0.25);
}

/* MOBILE */
@media(max-width:768px) {
    .contact-cta {
        padding: 70px 25px;
    }

    .contact-cta h2 {
        font-size: 32px;
    }

    .contact-cta p {
        font-size: 15px;
    }

    .contact-cta-btn {
        padding: 14px 32px;
    }
}
/* RIGHT CONTACT ICON */
.contact-icon {
    justify-self: end;
    z-index: 2;
}

.contact-icon a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-icon a i {
    color: var(--navy);
    font-size: 18px;
    display: block;
}

.contact-icon a:hover {
    transform: scale(1.08);
    background: var(--navy);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-icon a:hover i {
    color: var(--gold);
}
.navbar{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    padding:14px 6%;
}

/* CONTACT AREA */
.contact-wrapper{
    display:flex;
    align-items:center;
    justify-self:end;
    gap:6px;
}

.contact-details{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:2px;
}

.contact-details a{
    text-decoration:none;
    color:var(--navy);
    font-size:13px;
    font-weight:600;
    line-height:1.8;
    margin:0;
    transition:all 0.3s ease;
}

.contact-details a:hover{
    color:var(--gold);
}

.contact-details a:hover i{
    color:var(--navy);
}

.contact-details i{
    color:var(--gold);
    margin-right:4px;
    font-size:11px;
}
contact{
color:#D4B160;
}