/* =========================================================
   SUNRISE BRAND – PREMIUM FULL WEBSITE CSS
   ========================================================= */

/* ROOT VARIABLES */
:root {
    --primary-orange: #f26522;
    --dark-brown: #3e2723;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --text-dark: #222222;

    /* Premium Shadows */
    --shadow-soft: 0 5px 20px rgba(0,0,0,0.05);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-strong: 0 15px 40px rgba(0,0,0,0.12);
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.top-bar i {
    color: var(--primary-orange);
    margin-right: 5px;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid var(--primary-orange);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-orange);
}

/* =========================================================
   HERO SECTION (HOME PAGE)
   ========================================================= */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(62, 39, 35, 0.8), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    z-index: 1;
}

.hero-text-area {
    color: var(--white);
    max-width: 600px;
}

.hero-text-area h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-orange);
}

.hero-text-area p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-features {
    display: flex;
    gap: 20px;
}

.hero-features span {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features i {
    color: var(--primary-orange);
}

/* GLASS FORM */
.glass-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    width: 400px;
    box-shadow: var(--shadow-strong);
    color: var(--white);
}

.glass-form h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.glass-form p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: #ddd;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--dark-brown);
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   STATS SECTION
   ========================================================= */
.stats-section {
    background-color: var(--white);
    padding: 60px 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 10;
    margin-top: -50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.1rem;
    color: var(--dark-brown);
    font-weight: 600;
}

/* =========================================================
   SECTION TITLES
   ========================================================= */
.section-title {
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}

.section-title h5 {
    color: var(--primary-orange);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
}

/* =========================================================
   SERVICES SECTION (HOME)
   ========================================================= */
.services-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
    max-width: 1200px;
    margin: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary-orange);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--dark-brown);
    gap: 12px;
}

/* =========================================================
   NEW UPGRADED PAGE HEADER (INNER PAGES - WITH VIDEO)
   ========================================================= */
.page-header {
    position: relative;
    height: 45vh; /* Thoda bada kiya taaki video achi dikhe */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: none !important; /* Purani static image remove karne ke liye */
}

.page-header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(62, 39, 35, 0.85), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* =========================================================
   NEW UPGRADED FOOTER (WITH BACKGROUND IMAGE)
   ========================================================= */
.footer {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1500&auto=format&fit=crop'); /* Airplane Background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect ke liye */
    color: #ddd;
    padding: 70px 20px 0;
    margin-top: 50px;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(62, 39, 35, 0.95); /* Dark overlay taaki text clearly padha jaye */
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative; /* Z-index fix for text over ::before */
    z-index: 2;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    background: white;
    padding: 5px 15px;
    border-radius: 8px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-orange);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.contact-col p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-col i {
    color: var(--primary-orange);
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #2a1a17;
    position: relative;
    z-index: 2;
}

/* =========================================================
   UPGRADED FLOATING BUTTONS
   ========================================================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.call-btn { background-color: var(--primary-orange); }
.wa-btn { background-color: #25D366; }

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Hover Tooltip Text */
.float-text {
    position: absolute;
    right: 75px;
    background: var(--dark-brown);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

.float-btn:hover .float-text {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   RESPONSIVE FIXES
   ========================================================= */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .glass-form {
        width: 100%;
        max-width: 400px;
    }

    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-text-area h1 {
        font-size: 2.5rem;
    }

    .stats-container {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */

.about-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text h5 {
    color: var(--primary-orange);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-vision {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.mv-box {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
    flex: 1;
}

.mv-box i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.mv-box h4 {
    color: var(--dark-brown);
    margin-bottom: 10px;
}

/* Director's Section */
.director-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.director-container {
    max-width: 900px;
    margin: auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(242, 101, 34, 0.2); /* Very light orange */
    position: absolute;
    top: 30px;
    left: 40px;
}

.director-text h2 {
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.director-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.director-name {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-top: 30px;
}

.director-title {
    color: #888 !important;
    font-size: 0.9rem !important;
    font-style: normal !important;
    margin-bottom: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        flex-direction: column;
    }
}

/* =========================================
   CONTACT US PAGE STYLES
   ========================================= */

.contact-page-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
}

.contact-info-area {
    flex: 1;
}

.contact-info-area h3 {
    font-size: 2.2rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.sub-text {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    background: rgba(242, 101, 34, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.info-box h4 {
    color: var(--dark-brown);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-box p {
    color: #555;
    margin: 0;
}

.map-container {
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* Contact Form Side */
.contact-form-area {
    flex: 1.2;
}

.form-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-card h3 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.form-card p {
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .input-group {
    flex: 1;
}

.contact-form-area .input-group input, 
.contact-form-area .input-group select, 
.contact-form-area .input-group textarea {
    background: var(--light-bg);
    border: 1px solid #eee;
    color: #333;
    transition: 0.3s;
}

.contact-form-area .input-group input:focus, 
.contact-form-area .input-group select:focus, 
.contact-form-area .input-group textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.contact-form-area .btn-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* =========================================
   SERVICE/COUNTRIES PAGES STYLES
   ========================================= */

.service-page-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.service-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

/* Main Content Area */
.service-main-content {
    flex: 2.5;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.service-main-content h2 {
    color: var(--dark-brown);
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-main-content h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-main-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.service-benefits li {
    margin-bottom: 15px;
    color: #444;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

/* Timeline Process */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-step {
    display: flex;
    gap: 20px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    align-items: flex-start;
    border-left: 4px solid var(--primary-orange);
}

.step-number {
    background: var(--primary-orange);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-step h4 {
    color: var(--dark-brown);
    margin-bottom: 5px;
}

/* Sidebar Area */
.service-sidebar {
    flex: 1;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    color: var(--dark-brown);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-orange);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    text-decoration: none;
    color: #555;
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
}

.sidebar-links a:hover, .sidebar-links a.active {
    background: var(--primary-orange);
    color: var(--white);
}

.contact-widget {
    background: var(--dark-brown);
    color: var(--white);
    text-align: center;
}

.contact-widget h4 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

.contact-widget p {
    color: #ddd;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.widget-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 15px;
    transition: 0.3s;
}

.widget-btn.call {
    background: var(--primary-orange);
}

.widget-btn.whatsapp {
    background: #25D366;
}

.widget-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .service-wrapper {
        flex-direction: column;
    }
}

/* =========================================
   NAVBAR DROPDOWN STYLES
   ========================================= */
.nav-links li.dropdown {
    position: relative;
    display: inline-block;
}

.nav-links li.dropdown a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dropdown Container */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    border-top: 3px solid var(--primary-orange);
    /* CSS Scroll ke liye */
    max-height: 400px;
    overflow-y: auto;
}

/* Scrollbar ko patla aur sundar banane ke liye */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 10px;
}

/* Hover effect to show menu */
.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Hover effect inside dropdown (Text slides right slightly) */
.dropdown-menu li a:hover {
    color: var(--primary-orange);
    background-color: var(--light-bg);
    padding-left: 25px; 
}

/* =========================================
   STICKY NAVBAR SMOOTH SCROLL STYLES
========================================= */
#navbar {
    padding: 15px 20px;
    transition: all 0.3s ease-in-out; /* Smooth effect ke liye */
    background-color: transparent; /* Ya jo bhi aapka navbar ka purana color ho wo likhein */
    z-index: 1000; /* Taaki navbar hamesha upar rahe */
}

/* Jab JS ye class add karega, tab ye style apply hoga */
.navbar-scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px 20px !important;
    background-color: #ffffff !important; /* Scroll hone par white background */
}

/* =========================================================
   📱 ULTIMATE MOBILE RESPONSIVE FIX (PASTE AT THE END)
   ========================================================= */

/* 1. Website ko right side bahar nikalne se rokna */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

/* 2. Mobile Screens ke liye Settings (992px se choti screens) */
@media (max-width: 992px) {
    
    /* Top Bar Fix */
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Navbar Fix (Lambe menu ko mobile par horizontally scrollable banana) */
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        width: 100%;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links::-webkit-scrollbar {
        height: 4px;
    }
    .nav-links::-webkit-scrollbar-thumb {
        background: #d4af37;
        border-radius: 10px;
    }
    .nav-links li {
        flex: 0 0 auto; 
    }
    .nav-links a {
        white-space: nowrap;
    }
    
    /* Dropdown Fix for Mobile */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        background: #f8fafc;
        box-shadow: none;
        border: 1px solid #eee;
    }
    .nav-links li.dropdown:active .dropdown-menu,
    .nav-links li.dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Hero Section Fix */
    .hero {
        height: auto !important;
        min-height: auto !important;
        padding: 130px 20px 60px !important;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-text-area {
        min-width: 100% !important;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .hero-text-area h1 {
        font-size: 2.8rem !important;
    }
    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Form Fix (Form ko screen se bahar nikalne se rokna) */
    .hero-form-area {
        min-width: 100% !important;
        max-width: 100% !important;
    }
    .glass-form {
        width: 100% !important;
        padding: 25px !important;
        box-sizing: border-box;
    }

    /* Stats & Inner Pages Services Fix */
    .stats-container {
        flex-direction: column;
        gap: 15px;
    }
    .service-wrapper {
        flex-direction: column !important;
    }
    .service-main-content, .service-sidebar {
        width: 100% !important;
        flex: none !important;
    }
    .about-intro {
        flex-direction: column;
    }
    .about-intro-text, .about-intro-img {
        min-width: 100% !important;
    }

    /* Contact Page Map & Form Fix */
    .contact-intro-container, .split-section, .input-row {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .contact-hero-box, .contact-hero-image-wrapper, .map-box, .form-box, .input-group {
        min-width: 100% !important;
        max-width: 100% !important;
    }
    .map-info, .form-box {
        padding: 30px !important;
    }

    /* Footer Fix (Center Align) */
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
    
    /* Floating Whatsapp/Call Buttons Fix */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        transform: scale(0.85);
        transform-origin: bottom right;
    }
}

/* ================= SMART VISA CALCULATOR STYLES ================= */
.floating-calc-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; 
    /* Direct Color Codes with !important to prevent overriding */
    background: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%) !important; 
    color: #002244 !important; 
    border: none !important;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5) !important;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse-glow 2s infinite;
    transition: 0.3s;
}

.floating-calc-btn:hover { 
    transform: scale(1.05); 
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Modal Overlay (Glassmorphism) */
.visa-modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 34, 68, 0.7);
    backdrop-filter: blur(10px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Modal Content Box */
.visa-modal-content {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border-top: 5px solid #d4af37 !important; 
    transform: translateY(20px);
    animation: slideUp 0.4s ease-out forwards;
}

@keyframes slideUp { to { transform: translateY(0); } }

.close-modal-btn {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    transition: 0.3s;
}
.close-modal-btn:hover { color: red; }

.calc-title { color: #002244 !important; font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 5px; text-align: center;} 
.calc-subtitle { color: #64748b; font-size: 0.9rem; text-align: center; margin-bottom: 25px; }

.calc-form-group { margin-bottom: 15px; }
.calc-form-group label { display: block; font-weight: 600; color: #002244 !important; margin-bottom: 5px; font-size: 0.9rem;} 
.calc-form-group select { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 10px; font-family: 'Poppins'; outline: none; background: #f8fafc !important; color: #334155 !important;} 
.calc-form-group select:focus { border-color: #d4af37 !important; } 

.btn-calculate {
    background: #002244 !important; color: white !important; border: none !important; width: 100%; padding: 15px; 
    border-radius: 10px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: 0.3s; margin-top: 10px;
}
.btn-calculate:hover { background: #d4af37 !important; color: #002244 !important; } 

/* Progress Bar Styles */
.progress-container { width: 100%; background: #e2e8f0; border-radius: 20px; height: 25px; margin: 20px 0; overflow: hidden; box-shadow: inset 0 2px 5px rgba(0,0,0,0.1); }
.progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, #d4af37 0%, #ffdf73 100%); border-radius: 20px; transition: width 2s cubic-bezier(0.1, 0.7, 0.1, 1); }
.percentage-text { text-align: center; font-size: 4rem; color: #002244 !important; margin: 0; line-height: 1; } 
.result-message { text-align: center; color: #333; font-size: 1.1rem; margin-top: 10px; }

.lead-magnet-box { background: #f8fafc !important; padding: 15px; border-radius: 12px; margin-top: 20px; text-align: center; border: 1px dashed #d4af37 !important; } 
.lead-magnet-box p { font-size: 0.85rem; color: #555; margin-bottom: 15px; }
.whatsapp-alt-btn { display: block; margin-top: 10px; color: #25D366; font-weight: 600; text-decoration: none; font-size: 1.1rem;}