/* --- Variables & Reset --- */
:root {
    --primary-dark: #020d1c;
    --secondary-dark: #0a192f;
    --accent-gold: #fbbf24;
    --text-white: #ffffff;
    --text-grey: #94a3b8;
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: var(--text-dark);
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Buttons & Utilities --- */
.btn-gold {
    background-color: var(--accent-gold);
    color: #000;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

.btn-gold:hover {
    background-color: #eab308;
    transform: translateY(-2px);
}

.gold-underline { border-bottom: 2px solid var(--accent-gold); }
.gold-text { color: var(--accent-gold); font-weight: bold; }

/* --- Navigation --- */
header {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-menu ul li a {
    color: var(--text-white);
    font-size: 14px;
}

.nav-menu ul li a:hover {
    color: var(--accent-gold);
}

/* Mobile Menu Button (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
}

/* --- Hero Section --- */
.hero {
    background: radial-gradient(circle at center, #1e3a8a 0%, #020d1c 100%);
    min-height: 80vh; /* Changed to min-height for responsiveness */
    padding: 80px 0;
    color: var(--text-white);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('image/bg1.jpg'); 
    opacity: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 800px;
}

.hero-sub {
    color: var(--accent-gold);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-graphic {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(30, 58, 138, 0.3);
}

.hero-graphic i {
    font-size: 150px;
    color: var(--accent-gold);
}

/* --- Process Section --- */
.process {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: var(--accent-gold);
    margin-top: 5px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Allows wrapping */
     background: url('image/map.svg'); 
    opacity: 1;
    background-position: center;
    background-repeat: no-repeat;
    

}

.step {
    text-align: center;
    min-width: 100px;
}

.step .circle {
    width: 80px;
    height: 80px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 auto 10px;
    transition: 0.3s;
}

.step .circle:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.arrow {
    color: #ccc;
    font-size: 20px;
}

/* --- Why Us Section --- */
.why-us {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.why-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    border-left: 4px solid var(--accent-gold);
    padding-left: 15px;
}

.why-content .subtitle {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 30px;
    margin-left: 20px;
}

.why-content ul {
    margin-left: 20px;
}

.why-content li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.why-content li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 18px;
}

/* --- About Section --- */
.about {
    padding: 80px 0;
    background: #fff;
}

.subtitle-dark {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.name-tag {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--accent-gold);
    color: black;
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 4px;
    font-size: 14px;
}


.booking {
     display: inline-block;
    padding: 14px 28px;
    background-color: #fbbf24;
    color: #000000;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
    width: 280px;
    margin: 0px ;
}
/* --- Portfolio Section --- */
.portfolio {
    background-color: var(--secondary-dark);
    padding: 80px 0;
    color: white;
    background-image:  url('image/portfolio 123.jpg');
    background-size: cover;
    background-position: center;
    


}

.gold-title {
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 10px;
}

.portfolio-sub {
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-desc {
    color: var(--text-grey);
    font-size: 14px;
    margin-bottom: 40px;
    max-width: 600px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Clients Strip --- */
.clients {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 24px;
    color: #555;
    flex-wrap: wrap;
    gap: 20px;
}
.client-logos img{width:100%;}

/* --- CTA Section --- */
.cta-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.cta-card {
    background-color: var(--secondary-dark);
    border-radius: 20px;
    padding: 60px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-text h2 {
    font-size: 32px;
    line-height: 1.4;
}

.gold-underline-thick {
    border-bottom: 4px solid var(--accent-gold);
    padding-bottom: 2px;
}

.cta-graphic {
    font-size: 100px;
    color: rgba(251, 191, 36, 0.1);
    transform: rotate(-10deg);
}

/* --- Footer --- */
footer {
    background-color: #02060b;
    color: #8892b0;
    padding: 50px 0 20px;
    font-size: 13px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 30px;
}

.footer-col h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    color: #475569;
}

/* =========================================
   RESPONSIVE & MOBILE NAV CSS
   ========================================= */

@media (max-width: 992px) {
    /* Tablet Adjustments */
    .hero h1 { font-size: 40px; }
    .hero-graphic { width: 300px; height: 300px; }
    .hero-graphic i { font-size: 100px; }

}

@media (max-width: 768px) {
    /* --- Mobile Navigation --- */
    .menu-toggle {
        display: flex;
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        position: absolute;
        top: 60px; /* Below the header */
        left: -100%; /* Hidden by default */
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: 0.3s ease-in-out;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu.active {
        left: 0; /* Slide in */
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    /* --- Hero Section Mobile --- */
    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero h1 { font-size: 32px; }
    
    .hero-graphic {
        opacity: 0.1; /* Fade out graphic on mobile so text is readable */
        width: 250px;
        height: 250px;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        border: none;
    }

      .booking { margin:0px auto; }
    /* --- Process Section Mobile --- */
    .process-steps { flex-direction: column; gap: 10px; }
    .arrow { transform: rotate(90deg); margin: 10px 0; }

    /* --- About Section Mobile --- */
    .about-grid { grid-template-columns: 1fr; }
    .name-tag { right: 10px; }

    /* --- CTA Section Mobile --- */
    .cta-card { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
        padding: 40px 20px;
    }
    .cta-text h2 { font-size: 24px; }
    
    /* --- Footer Mobile --- */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .contact-info p { justify-content: center; }
    .copyright { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .client-logos span { font-size: 18px; }
    .booking { margin:0px auto; }
}