﻿/* =========================
   ROOT VARIABLES (PREMIUM THEME)
========================= */
:root {
    --gold: #d4af37;
    --gold-light: #f5e6a7;
    --dark: #0b0b0b;
    --text-muted: #777;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-strong: 0 20px 60px rgba(0,0,0,0.18);
    --radius: 14px;
}

/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* =========================
   NAVBAR (GLASS + PREMIUM)
========================= */
.navbar-custom {
    /* background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s;*/

    background: rgba(0, 0, 0, 0.92) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.navbar-scrolled {
    /*    background: rgba(0,0,0,0.95);*/
    background: rgba(0, 0, 0, 0.92) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.logo-text {
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--gold) !important;
}

/* NAV LINKS */
.nav-link {
    color: white !important;
    margin: 0 10px;
    position: relative;
}

    .nav-link::after {
        content: "";
        width: 0%;
        height: 2px;
        background: var(--gold);
        position: absolute;
        left: 0;
        bottom: 0;
        transition: 0.3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* =========================
   DROPDOWN
========================= */
.dropdown-menu {
    background: rgba(0,0,0,0.95);
    border: none;
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: 0.3s;
    display: block;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-item {
    color: #ccc;
    padding: 10px 18px;
    font-size: 14px;
    transition: 0.3s;
}

    .dropdown-item:hover {
        background: var(--gold);
        color: black;
        padding-left: 25px;
    }

/* =========================
   SUBMENU
========================= */
.dropdown-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: #111;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    padding: 5px 0;
}

.dropdown-submenu:hover .submenu {
    display: block;
}

/* =========================
   BUTTONS (GRADIENT GOLD)
========================= */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: black;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(212,175,55,0.4);
    }

.btn-gold-sm {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: black;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* =========================
   HERO (PREMIUM OVERLAY)
========================= */
.company-hero {
    position: relative;
    padding: 140px 0;
    background: url('/images/hero1.jpg') center/cover;
    color: white;
}

    .company-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    }

    .company-hero .container {
        position: relative;
        z-index: 2;
    }

/* =========================
   SECTIONS
========================= */
.projects-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* =========================
   PROJECT CARD
========================= */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

    .project-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: 0.6s;
    }

    .project-card:hover img {
        transform: scale(1.1);
    }

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: 0.4s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* =========================
   ICON BOX (ELEMENTOR STYLE)
========================= */
.icon-box {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 25px 15px;
    text-align: center;
    transition: 0.3s;
}

    .icon-box i {
        font-size: 28px;
        margin-bottom: 10px;
        background: linear-gradient(45deg, var(--gold), var(--gold-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .icon-box:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: var(--shadow-strong);
    }

/* =========================
   GALLERY
========================= */
.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

    .gallery-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: 0.6s;
    }

    .gallery-card:hover img {
        transform: scale(1.15);
    }

/* =========================
   MAP
========================= */
.map-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.map-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius);
}

    .map-info h5 {
        color: var(--gold);
    }

/* =========================
   STICKY PANEL (GLASS)
========================= */
.sticky-box {
    position: sticky;
    top: 100px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

/* =========================
   SLIDER
========================= */
.slider-img {
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* =========================
   WHATSAPP FLOAT (ANIMATED)
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 999;
    box-shadow: var(--shadow-strong);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* =========================
   FOOTER
========================= */
.footer-modern {
    background: #0b0b0b;
    color: #ccc;
    padding: 60px 0 20px;
}

    .footer-modern h5,
    .footer-modern h6 {
        color: var(--gold);
    }

.footer-links a:hover {
    color: var(--gold);
}


a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Elegant hover */
a:hover {
    color: var(--gold);
}

/* Premium underline animation */
.link-underline {
    position: relative;
}

.link-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: 0.4s;
}

.link-underline:hover::after {
    width: 100%;
}

/* =========================
   PREMIUM TYPOGRAPHY SYSTEM
========================= */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

/* =========================
   H1 (HERO TITLE)
========================= */
h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

/* =========================
   H2 (SECTION TITLE)
========================= */
h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}

/* =========================
   H3 (SUB SECTION TITLE)
========================= */
h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================
   H4
========================= */
h4 {
    font-size: 22px;
    font-weight: 600;
}

/* =========================
   H5
========================= */
h5 {
    font-size: 18px;
    font-weight: 600;
}

/* =========================
   H6
========================= */
h6 {
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

/* =========================
   PREMIUM GOLD TITLE OPTION
========================= */
.text-gold {
    color: var(--gold);
}

/* =========================
   HERO TITLE SPECIAL EFFECT
========================= */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-section .carousel-item {
    position: relative;
}

.hero-overlay {
    left: 0;
    right: 0;
}
/* MAIN TITLE */
.hero-title {
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

    /* GOLD GRADIENT WORD */
    .hero-title span {
        background: linear-gradient(135deg, #d4af37, #f5e6a7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
    }


/* SUBTITLE */
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-top: 15px;
    letter-spacing: 1px;
}

    /* SUBTLE LINE EFFECT */
    .hero-subtitle::before {
        content: "";
        display: block;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #d4af37, transparent);
        margin: 0 auto 15px auto;
    }

/* BUTTON (already good but upgraded hover) */
.btn-gold {
    margin-top: 7px;
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37, #f5e6a7);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(212,175,55,0.25);
}

    .btn-gold:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 15px 40px rgba(212,175,55,0.4);
    }

/* HERO CENTER ALIGN FIX */
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    text-align: center;
    padding: 0 20px;
}


.hero-title {
    animation: fadeUp 1.2s ease;
}

.hero-subtitle {
    animation: fadeUp 1.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   PREMIUM NAVBAR FIX (NO GREY)
========================= */
.navbar-custom {
    background: rgba(0, 0, 0, 0.15); /* ultra transparent */
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s ease;
}

    .navbar-custom:hover {
        background: rgba(0, 0, 0, 0.35);
    }

/* when scroll */
.navbar-scrolled {
    background: rgba(0, 0, 0, 0.92) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* =========================
   PREMIUM GALLERY UPGRADE
========================= */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.05);
    transform: translateZ(0);
}

    .gallery-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform 0.8s ease, filter 0.8s ease;
        filter: brightness(0.9) contrast(1.05);
    }

    /* zoom cinematic */
    .gallery-card:hover img {
        transform: scale(1.15);
        filter: brightness(0.6) contrast(1.2);
    }

/* luxury overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2), transparent );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: 0.5s ease;
}

/* show overlay */
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* text premium */
.gallery-overlay h5 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(15px);
    transition: 0.5s ease;
}

.gallery-card:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* glow effect */
.gallery-card:hover {
    box-shadow: 0 25px 70px rgba(212,175,55,0.15);
}

/* =========================
   PREMIUM SECTION SPACING + DIVIDER
========================= */

.section-padding {
    padding: 100px 0;
    position: relative;
}

/* Luxury divider line */
.section-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 30px auto;
    opacity: 0.8;
}

/* Soft background wave between sections */
.section-padding::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.03));
    pointer-events: none;
}

/* Section title upgrade */
.section-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 10px;
}

/* Subtitle premium feel */
.section-subtitle {
    font-size: 16px;
    color: #777;
    letter-spacing: 0.5px;
}

/* spacing between blocks inside sections */
.section-header {
    margin-bottom: 50px;
}

/* =========================
   HERO CAROUSEL FIX (FINAL)
========================= */

.hero-section .carousel-item {
    height: 500px;
    position: relative;
    overflow: hidden;
}

    /* IMAGE FIX (NO BLUR / NO STRETCH) */
    .hero-section .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* OPTIONAL: DARK OVERLAY FOR TEXT */
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient( to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2) );
    z-index: 2;
}

/* CONTENT ABOVE IMAGE */
.hero-content {
    position: relative;
    z-index: 3;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 768px) {
    .hero-section .carousel-item {
        height: 320px;
    }
}

.logo-tagline {
    font-size: 12px;
    font-weight: 700; /* 🔥 bold */
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
}

    /* GOLD HIGHLIGHT EFFECT (optional premium) */
    .logo-tagline span {
        background: linear-gradient(135deg, #d4af37, #f5e6a7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* RESPONSIVE (IMPORTANT) */
@media (max-width: 768px) {
    .logo-tagline {
        display: none; /* hide on mobile */
    }
}



.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(212,175,55,0.9);
    border-radius: 50%;
    padding: 22px;
}


/* allow carousel arrows above overlay */
.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
    pointer-events: auto;
}

/* ensure button is always clickable */
.hero-content a,
.hero-content .btn-gold {
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

.hero-overlay {
    pointer-events: auto;
}