/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
}
/* ===== Topbar Style ===== */
.topbar {
    background:#BF1D1D;
    padding: 5px 0;
    color: #BF1D1D;
    font-size: 14px;
}

/* ONLY THESE TWO NEW CLASSES */
.phone-text {
    color: #ffffff;
}

.email-text {
    color: #ffffff;
}

/* ===== Container ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== Left Section ===== */
.left-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.info-box i {
    background:white;
    padding: 8px;
    border-radius: 50%;
    font-size: 12px;
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-3px);
}

.info-box:hover i {
    background: #00c6ff;
}

.divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.3);
}

/* ===== Right Social Section ===== */
.right-section {
    display: flex;
    gap: 12px;
}

.social {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 100%;
    left: 0;
    transition: 0.4s ease;
    z-index: 0;
}

.social:hover::before {
    top: 0;
}

.social i {
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.social:hover i {
    color: #111;
    transform: rotate(360deg);
}

.fb:hover::before { background: #1877f2; }
.tw:hover::before { background: #1da1f2; }
.ig:hover::before { background: #e1306c; }
.yt:hover::before { background: #ff0000; }

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .left-section {
        flex-direction: column;
        gap: 10px;
    }

    .divider {
        display: none;
    }
}


/* --- The Header Bar --- */

/* --- Header (Placed inside Slider Section) --- */
.ultra-header {
    position: absolute; /* Keeps header on top of the slider */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-wrapper {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

/* --- Logo Animation --- */
.logo-box .main-logo {
  width: 320px;
    margin-top: -37px;
    height: 107px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    animation: logoReveal 1s ease-out forwards;
}

@keyframes logoReveal {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* --- Navigation & Staggered Animation --- */
.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-top: -42px;
}

.nav-list li {
    opacity: 0;
    transform: translateY(20px);
    animation: navItemFade 0.6s ease forwards;
    animation-delay: calc(var(--d) * 0.15s + 0.5s);
}

@keyframes navItemFade {
    to { opacity: 1; transform: translateY(0); }
}

.nav-list li a {
    text-decoration: none;
    color: white;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-list li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list li a:hover { color: var(--gold); }
.nav-list li a:hover::before { width: 100%; left: 0; }

/* --- Gold Pill Button --- */
.gold-pill {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s;
    overflow: hidden;
    display: inline-block;
}

.gold-pill:hover {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.pill-glow {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.gold-pill:hover .pill-glow { left: 100%; }

/* --- Slider Section --- */
.slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.slide {
    position: absolute;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active { opacity: 1; z-index: 10; }

.slide img {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.shape-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: -1;
}

/* --- Content Animations --- */
.slide-content {
    max-width: 800px;
    padding: 20px;
    color: #fff;
    z-index: 20;
}

.slide-content h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 20px;
    transform: translateY(50px);
    opacity: 0;
    transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.slide-content p {
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 40px;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s 0.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.slide.active .slide-content h1,
.slide.active .slide-content p {
    transform: translateY(0);
    opacity: 1;
}

/* --- Interactive Explore Button --- */
.explore-btn {
    display: inline-block;
    padding: 18px 45px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    border: 1px solid #fff;
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

.explore-btn span {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: #fff;
    z-index: -1;
    transition: 0.4s;
}

.explore-btn:hover { color: #000; }
.explore-btn:hover span { left: 0; }

/* --- Navigation Controls --- */
.nav-controls {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
}

.nav-icon {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.1);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .slide-content h1 { font-size: 2.5rem; }
    .shape-overlay { clip-path: none; }
}