/* --- MISE GLOBAL PREMIUM THEME --- */
/* Ye section aapke brand colors define karta hai */
:root {
    --primary-navy: #002147; 
    --luxury-gold: #C5A059;  
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --text-light: #ffffff;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

body { background-color: var(--bg-light); color: var(--text-dark); }

/* --- PREMIUM NAVBAR --- */
nav {
    background: var(--primary-navy);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.logo { color: var(--text-light); font-size: 24px; font-weight: bold; letter-spacing: 2px; }
.logo span { color: var(--luxury-gold); }

.nav-links { display: flex; gap: 30px; }
.nav-links a { 
    color: var(--text-light); 
    text-decoration: none; 
    font-weight: 500; 
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease; 
}
.nav-links a:hover { color: var(--luxury-gold); }

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0, 33, 71, 0.8), rgba(0, 33, 71, 0.9)), url('assets/hero-bg.jpg') center/cover;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
}

.hero h1 { font-size: 4rem; margin-bottom: 10px; letter-spacing: 3px; text-transform: uppercase; }
.hero p { font-size: 1.2rem; max-width: 700px; margin-bottom: 30px; color: #ddd; }

.btn-gold {
    padding: 15px 40px;
    background: transparent;
    color: var(--luxury-gold);
    border: 2px solid var(--luxury-gold);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--luxury-gold);
    color: var(--primary-navy);
}

/* --- SECTIONS & GRIDS --- */
.section-padding { padding: 80px 5%; }
.section-title { text-align: center; font-size: 2.5rem; color: var(--primary-navy); margin-bottom: 40px; }
.section-title span { color: var(--luxury-gold); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.portfolio-card:hover { transform: translateY(-10px); }
.portfolio-card img { width: 100%; height: 250px; object-fit: cover; }
.portfolio-info { padding: 25px; text-align: center; }
.portfolio-info h3 { color: var(--primary-navy); margin-bottom: 10px; }

/* --- SOCIAL MEDIA SECTION --- */
.social-section {
    text-align: center;
    padding: 60px 5%;
    background: #fff;
    border-top: 1px solid #eee;
}

.social-section h3 {
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--luxury-gold);
    color: var(--primary-navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
}
/* --- PREMIUM CONTACT FORM BOX (ALIGNED) --- */
.contact-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 33, 71, 0.1); 
    border-top: 5px solid var(--luxury-gold); 
    text-align: left; 
}

.contact-box h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group { 
    margin-bottom: 20px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: var(--primary-navy); 
    font-size: 0.95rem; 
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%; 
    padding: 14px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--luxury-gold);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-navy);
    color: var(--text-light);
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn-submit:hover { 
    background: var(--luxury-gold); 
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}
/* --- PREMIUM PAGE HEADER (LET'S CONNECT) --- */
.page-header {
    background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 33, 71, 0.95)), url('assets/contact-bg.jpg') center/cover;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

/* Heading ke niche Premium Gold Line */
.page-header h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--luxury-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    letter-spacing: 1px;
    font-weight: 300;
}

/* --- PREMIUM CONTACT INFO (GET IN TOUCH) --- */
.premium-heading {
    color: var(--primary-navy);
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Heading ke aage Gold Line */
.premium-heading::before {
    content: '';
    width: 40px;
    height: 4px;
    background: var(--luxury-gold);
    display: inline-block;
}

.premium-subtext {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Premium Icon Boxes */
.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    border-left: 4px solid var(--luxury-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

/* Hover Animation (Mouse le jane par effect) */
.detail-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    background: rgba(197, 160, 89, 0.1);
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-item strong {
    display: block;
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-item p, .detail-item a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.detail-item a:hover {
    color: var(--luxury-gold);
}
/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Official WhatsApp Green Color */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999; /* Ye ensure karega ki button hamesha sabse upar dikhe */
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effect (Jab mouse icon par jayega) */
.floating-whatsapp:hover {
    transform: scale(1.15) translateY(-5px); /* Thoda bada hoga aur upar uthega */
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

/* Mobile Screen ke liye thoda chota */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}
/* --- SERVICES PAGE STYLES --- */
.services-header {
    background: linear-gradient(rgba(0, 33, 71, 0.8), rgba(0, 33, 71, 0.9)), url('assets/hero-bg.jpg') center/cover;
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--luxury-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--luxury-gold);
    box-shadow: 0 15px 40px rgba(0, 33, 71, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--luxury-gold);
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}
/* --- PREMIUM SIDEBAR MENU --- */
/* --- WHITE MENU BUTTON FOR DARK HEADERS --- */
.menu-btn {
    color: #ffffff !important; /* Forces the color to white */
    font-size: 26px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-btn:hover {
    color: var(--luxury-gold) !important;
}

/* Purane horizontal links ko hide karna */
nav .nav-links { display: none; } 

/* Sidebar ka Dark Overlay (Background) */
.menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0, 33, 71, 0.85); /* Premium Navy Blur */
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

/* Slide-in Sidebar Box */
.side-menu {
    position: fixed;
    top: 0; left: -350px; /* Shuru me screen ke bahar chupa rahega */
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 1002;
    padding: 60px 40px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.2);
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

/* Close (X) Button */
.close-btn {
    position: absolute;
    top: 25px; right: 25px;
    font-size: 30px;
    color: var(--primary-navy);
    cursor: pointer;
    transition: 0.3s;
}
.close-btn:hover { color: var(--luxury-gold); transform: rotate(90deg); }

/* Sidebar ke andar ke Links */
.side-menu a {
    color: var(--primary-navy);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.side-menu a:hover {
    color: var(--luxury-gold);
    padding-left: 10px; /* Hover karne par text thoda aage khiskega */
    border-bottom-color: var(--luxury-gold);
}
/* About Logo Alignment */
.about-logo-space {
    display: flex;
    justify-content: flex-start;
}

/* About Content Text Adjustments */
.about-content h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.about-content p {
    margin-bottom: 20px;
    text-align: justify; /* Professional text look */
}

/* Responsive fix for Logo */
@media (max-width: 768px) {
    .about-logo-space {
        justify-content: center;
    }
    .about-content h2 {
        text-align: center;
    }
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* --- CREATIVE ABOUT US PAGE UPGRADES --- */
.about-section-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #fdfdfd;
}

/* Giant Faint Watermark */
.watermark-bg {
    position: absolute;
    top: 50px;
    left: -20px;
    font-size: 14rem;
    color: rgba(0, 33, 71, 0.03); /* Very faint navy blue */
    font-weight: 900;
    letter-spacing: 15px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Ensure text stays above watermark */
.about-container {
    position: relative;
    z-index: 1; 
}

/* Creative Leaf-Cut Image Style */
.creative-image-wrapper img {
    border-radius: 0px 60px 0px 60px; /* Stylish opposite corners */
    box-shadow: 25px 25px 0px rgba(197, 160, 89, 0.2); /* Offset Gold Shadow */
    transition: all 0.4s ease;
    width: 100%;
}

.creative-image-wrapper:hover img {
    transform: translate(-5px, -5px);
    box-shadow: 30px 30px 0px rgba(197, 160, 89, 0.4);
}

/* Trust Stats Ribbon */
.stats-ribbon {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: var(--primary-navy);
    padding: 50px 5%;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    color: var(--text-light);
    margin: 15px;
    padding: 10px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--luxury-gold);
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-text {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .watermark-bg { font-size: 6rem; top: 20px; }
    .stat-box { border-right: none; width: 45%; }
}
/* --- CREATIVE ABOUT US PAGE UPGRADES --- */
.about-section-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #fdfdfd;
}

/* Giant Faint Watermark */
.watermark-bg {
    position: absolute;
    top: 50px;
    left: -20px;
    font-size: 14rem;
    color: rgba(0, 33, 71, 0.03); /* Very faint navy blue */
    font-weight: 900;
    letter-spacing: 15px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Ensure text stays above watermark */
.about-container {
    position: relative;
    z-index: 1; 
}

/* Creative Leaf-Cut Image Style */
.creative-image-wrapper img {
    border-radius: 0px 60px 0px 60px; /* Stylish opposite corners */
    box-shadow: 25px 25px 0px rgba(197, 160, 89, 0.2); /* Offset Gold Shadow */
    transition: all 0.4s ease;
    width: 100%;
}

.creative-image-wrapper:hover img {
    transform: translate(-5px, -5px);
    box-shadow: 30px 30px 0px rgba(197, 160, 89, 0.4);
}

/* Trust Stats Ribbon */
.stats-ribbon {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: var(--primary-navy);
    padding: 50px 5%;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    color: var(--text-light);
    margin: 15px;
    padding: 10px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--luxury-gold);
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-text {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .watermark-bg { font-size: 6rem; top: 20px; }
    .stat-box { border-right: none; width: 45%; }
}
/* --- PREMIUM PHILOSOPHY SECTION --- */
.philosophy-wrapper {
    padding: 100px 10%;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

/* Subtle Branding Watermark in Background */
.philosophy-wrapper::before {
    content: 'PRECISION';
    position: absolute;
    bottom: 20px;
    right: 50px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 33, 71, 0.02);
    letter-spacing: 20px;
    pointer-events: none;
}

.philosophy-text { flex: 1; }

.philosophy-logo {
    width: 120px;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.philosophy-text h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.philosophy-text h2 span {
    color: var(--luxury-gold);
    display: block;
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

/* Luxury Image Frame */
.philosophy-image {
    flex: 1;
    position: relative;
    padding: 20px;
}

.philosophy-image img {
    width: 100%;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.philosophy-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 90%;
    border: 2px solid var(--luxury-gold);
    z-index: 1;
}

@media (max-width: 992px) {
    .philosophy-wrapper { flex-direction: column; padding: 60px 5%; text-align: center; }
    .philosophy-text p { text-align: center; }
    .philosophy-image::after { display: none; }
}/* --- UPDATED HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0, 33, 71, 0.7), rgba(0, 33, 71, 0.8)), url('assets/hero-bg.jpg') center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
}

.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.hero p { font-size: 1.3rem; max-width: 800px; margin-bottom: 40px; font-weight: 300; }

.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

/* --- PREMIUM FOOTER --- */
footer {
    background: #0a192f;
    color: #fff;
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img { width: 150px; margin-bottom: 20px; }

.footer-links h3 { color: var(--luxury-gold); margin-bottom: 20px; text-transform: uppercase; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #cbd5e1; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--luxury-gold); padding-left: 5px; }

.social-footer { display: flex; gap: 15px; margin-top: 20px; }
.social-footer a { 
    width: 40px; height: 40px; background: rgba(255,255,255,0.1); 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; color: #fff; transition: 0.3s; 
}
.social-footer a:hover { background: var(--luxury-gold); color: var(--primary-navy); }

.copyright-bar {
    text-align: center;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #8892b0;
}
/* --- DESKTOP DROPDOWN LOGIC --- */
.nav-item {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none; /* Shuru mein chhupa rahega */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 3px solid var(--luxury-gold);
    border-radius: 0 0 8px 8px;
}

.dropdown-content a {
    color: var(--primary-navy) !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--luxury-gold) !important;
    padding-left: 20px;
}

/* Mouse le jate hi Dropdown dikhega (Hover Effect) */
.nav-item:hover .dropdown-content {
    display: block;
}

/* Mobile par 3 dots hamesha dikhenge */
.menu-btn {
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-navy);
}
/* --- PROFESSIONAL CONTACT LAYOUT --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h3 {
    color: var(--primary-navy);
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background: var(--luxury-gold);
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Iconic Contact List */
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: 0.3s;
}

.info-item:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateX(10px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.info-item div strong {
    display: block;
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item div p {
    margin-bottom: 0;
    color: #555;
}

/* Responsive fix for Mobile */
@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
}
/* --- 1. VIDEO HERO SECTION --- */
.hero-video-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

#bg-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.5); /* Video ko dark rakha hai taaki text dikhe */
}

/* --- 2. LIVE STATS COUNTER --- */
.stats-container {
    display: flex;
    justify-content: space-around;
    padding: 80px 5%;
    background: var(--primary-navy);
    color: white;
    text-align: center;
}
.stat-item h2 { font-size: 3rem; color: var(--luxury-gold); }
.stat-item p { text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }

/* --- 3. PROCESS SECTION --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 60px 5%;
    text-align: center;
}
.process-step { position: relative; padding: 20px; }
.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 33, 71, 0.05);
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
}

/* --- 4. LOGO SLIDER (Grayscale to Color) --- */
.logo-slider {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.5s;
}
.logo-slider:hover { filter: grayscale(0%); opacity: 1; }
.logo-slider img { height: 60px; }

/* --- 5. SPECIALIZATION ICONS --- */
.spec-box {
    padding: 40px;
    border: 1px solid #eee;
    transition: 0.3s;
    text-align: center;
}
.spec-box:hover { border-color: var(--luxury-gold); transform: translateY(-10px); }
.spec-box i { font-size: 3rem; color: var(--primary-navy); margin-bottom: 20px; }

/* Sticky Consultation Button */
.sticky-consult {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--primary-navy);
    color: var(--luxury-gold);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* STATS STYLING */
.stats-container {
    background: var(--primary-navy);
    display: flex;
    justify-content: space-around;
    padding: 80px 5%;
    color: white;
    text-align: center;
    border-bottom: 3px solid var(--luxury-gold);
}

.stat-item {
    cursor: default;
    transition: 0.3s;
}

.stat-item h2 {
    display: inline-block;
    color: var(--luxury-gold);
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
}

.plus {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    font-weight: bold;
}

.stat-item p {
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Cursor Hover Effect on Stats */
.stat-item:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}

.stat-item:hover p {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 50px;
        padding: 60px 5%;
    }
}
/* --- HEADER & NAVIGATION --- */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: rgba(0, 33, 71, 0.98);
    position: fixed;
    width: 100%;
    z-index: 2000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.header-logo {
    height: 55px;
    border-radius: 5px;
    transition: 0.3s;
}

.menu-container {
    position: relative;
    display: inline-block;
}

.menu-btn {
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Hover effect for Menu Dropdown */
.hover-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 10px 0;
}

.menu-container:hover .hover-menu {
    display: block;
}

.hover-menu a {
    display: block;
    padding: 12px 20px;
    color: #002147;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.hover-menu a:hover {
    background: #f4f4f4;
    color: #c5a059;
}

/* --- HERO BUTTONS --- */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary {
    padding: 15px 35px;
    background: #c5a059;
    color: #002147;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.4s;
    border: 2px solid #c5a059;
}

.btn-primary.outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-primary.outline:hover {
    background: white;
    color: #002147;
}

/* --- INDUSTRY EXPERTISE GRID (3x2) --- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns on Desktop */
    gap: 30px;
    padding: 40px 5%;
}

.spec-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #eee;
}

.spec-box:hover {
    background: #002147;
    color: white;
    transform: translateY(-10px);
}

.spec-box i {
    font-size: 3rem;
    color: #c5a059;
    margin-bottom: 20px;
}

/* --- FOOTER SYNC --- */
.main-footer {
    background: #0a192f;
    color: white;
    padding: 80px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.footer-links a:hover { color: #c5a059; }

/* Responsive for Mobile */
@media (max-width: 992px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .expertise-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
}
/* --- HERO BUTTONS ALIGNMENT --- */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

/* Primary Button (Gold) */
.btn-primary {
    padding: 16px 35px;
    background: #c5a059;
    color: #002147;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.4s all ease;
    border: 2px solid #c5a059;
    min-width: 200px; /* Dono buttons ki width same rakhega */
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Outline Button (Transparent to White) */
.btn-primary.outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

/* Hover Effects */
.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
    background: #d4b477;
    border-color: #d4b477;
}

.btn-primary.outline:hover {
    background: #ffffff;
    color: #002147;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    .btn-primary {
        width: 100%;
        min-width: unset;
    }
}
/* --- SOBER ABOUT PAGE STYLES --- */

/* Minimalist Page Header */
.sober-page-header {
    background: #002147;
    padding: 150px 5% 80px; /* Top padding zyada rakhi hai nav bar ki wajah se */
    text-align: center;
    color: white;
    border-bottom: 3px solid #c5a059;
}

.sober-page-header h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.sober-page-header p {
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

/* Elegant Text & Image Layout */
.about-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image-content img {
    width: 100%;
    border-radius: 4px;
    box-shadow: -15px 15px 0 rgba(197, 160, 89, 0.2); /* Sober gold shadow effect */
}

/* Core Values Grid */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #eaeaea;
    border-top: 4px solid #c5a059;
    border-radius: 4px;
    transition: 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: #002147;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #002147;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-main-wrapper {
        grid-template-columns: 1fr;
    }
    .sober-page-header {
        padding: 120px 5% 60px;
    }
}