/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f9fafb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
    line-height: 1.5;
}

/* Top Bar Styles */
.top-bar {
    background-color: #1e3a8a;
    color: #ffffff;
    font-size: 12px;
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar .separator {
    margin: 0 12px;
    color: #9ca3af;
}

.top-bar i {
    color: #f59e0b;
    margin-right: 4px;
}

.top-bar-badge {
    font-weight: 600;
    background-color: #f59e0b;
    color: #ffffff;
    padding: 2px 12px;
    border-radius: 4px;
    font-size: 12px;
}

/* Header & Navbar */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: -0.5px;
}

.logo i {
    color: #f59e0b;
    margin-right: 8px;
}

.logo span {
    color: #f59e0b;
}

.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-menu a {
    text-decoration: none;
    color: #172554;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f59e0b;
}

.btn-call {
    background-color: #f59e0b;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-call:hover {
    background-color: #d97706;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../images/bannerimg.avif');
    background-size: cover;
    background-position: center;
    padding: 60px 16px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 7fr 5fr;
    }
}

.hero-text {
    color: #ffffff;
}

.hero-badge {
    background-color: #1e40af;
    color: #f59e0b;
    font-bold: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 12px;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 48px;
    }
}

.hero-text h1 span {
    color: #f59e0b;
}

.hero-text p {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border-top: 1px solid #374151;
    padding-top: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(30, 58, 138, 0.5);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 20px;
}

.badge-item h5 {
    font-size: 14px;
    font-weight: 700;
}

.badge-item p {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 0;
}

/* Quote Form Container */
.form-container {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f3f4f6;
}

.form-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: #172554;
    text-align: center;
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 16px;
}

.quote-form .form-group {
    margin-bottom: 14px;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quote-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 4px;
}

.quote-form input, .quote-form select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #ffffff;
}

.quote-form input:focus, .quote-form select:focus {
    outline: none;
    border-color: #3b82f6;
}

.btn-submit {
    width: 100%;
    background-color: #1e3a8a;
    color: #ffffff;
    font-weight: 700;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
}

.btn-submit:hover {
    background-color: #172554;
}

/* Stats Bar */
.stats-bar {
    background-color: #f59e0b;
    padding: 24px 16px;
    color: #172554;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 800;
}

.stat-item p {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Generic Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 16px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #172554;
    margin-bottom: 8px;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: #f59e0b;
    margin: 0 auto 16px auto;
}

.section-header p {
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
}

/* Services Styles */
.services-section {
    padding: 64px 16px;
    background-color: #ffffff;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
    padding: 24px;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    background-color: #f9fafb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: #dbeafe;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #172554;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 12px;
}

.service-link {
    font-size: 12px;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
}

.service-link:hover {
    color: #f59e0b;
}

/* Process Section */
.process-section {
    padding: 64px 16px;
    background-color: #f3f4f6;
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 576px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #f59e0b;
    color: #172554;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 4px solid #f3f4f6;
}

.process-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 8px;
}

.process-card p {
    font-size: 13px;
    color: #4b5563;
}

/* Why Choose Us Section */
.why-section {
    padding: 64px 16px;
    background-color: #ffffff;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .why-container { grid-template-columns: 1fr 1fr; }
}

.why-left h2 {
    font-size: 28px;
    font-weight: 700;
    color: #172554;
    margin-bottom: 8px;
}

.underline-left {
    width: 64px;
    height: 4px;
    background-color: #f59e0b;
    margin-bottom: 24px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: start;
}

.benefit-icon {
    color: #22c55e;
    font-size: 20px;
}

.benefit-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #172554;
}

.benefit-content p {
    font-size: 14px;
    color: #4b5563;
}

.call-banner {
    background-image: linear-gradient(135deg, #1e3a8a, #172554);
    color: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-bg-icon {
    position: absolute;
    right: -40px;
    bottom: -40px;
    font-size: 144px;
    color: #1e40af;
    opacity: 0.2;
}

.call-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.call-banner p {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.btn-banner-call {
    background-color: #f59e0b;
    color: #172554;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-banner-call:hover {
    background-color: #d97706;
}

/* Testimonials Section */
.testimonials-section {
    padding: 64px 16px;
    background-color: #f9fafb;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.rating-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 16px;
}

.review-author {
    font-size: 14px;
    font-weight: 700;
    color: #172554;
}

/* FAQs Section */
.faq-section {
    padding: 64px 16px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
}

.faq-question {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 15px;
    font-weight: 700;
    color: #172554;
}

.toggle-icon {
    font-size: 14px;
    color: #6b7280;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    font-size: 14px;
    color: #4b5563;
    padding-bottom: 16px;
}

/* Open State for Accordion */
.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary height to allow expansion */
    padding-top: 4px;
}

/* Footer Section */
/* .main-footer {
    background-color: #111827;
    color: #9ca3af;
    padding-top: 48px;
    padding-bottom: 24px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 576px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .footer-container { grid-template-columns: repeat(3, 1fr); }
}

.footer-container h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 12px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #f59e0b;
}

.footer-contact p {
    font-size: 12px;
    margin-bottom: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0 auto;
    padding: 24px 16px 0 16px;
    border-top: 1px solid #1f2937;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
} */

/* ==========================================================================
   PREMIUM FOOTER STYLES
   ========================================================================== */
.main-footer {
    background-color: #ffffff; /* Rich Premium Dark Blue/Grey */
    color: #000000;
    padding-top: 60px;
    font-size: 14px;
    border-top: 4px solid #f59e0b; /* Yellow brand accent strip */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Responsive Columns Grid */
@media (min-width: 576px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Custom widths for neat layout */
    }
}

/* Column Elements */
.footer-col h4 {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-underline {
    width: 40px;
    height: 3px;
    background-color: #f59e0b;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Column 1 Specifics (Brand & Social) */
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-logo i {
    color: #f59e0b;
    margin-right: 8px;
}

.footer-logo span {
    color: #f59e0b;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    background-color: #1e293b;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: #f59e0b;
    color: #0f172a;
    transform: translateY(-3px);
}

/* List Links (Columns 2 & 3) */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #000000;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: #f59e0b;
    padding-left: 5px; /* Tiny slide effect on hover */
}

.font-xs {
    font-size: 10px;
    opacity: 0.7;
}

/* Contact Column Specifics */
.contact-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-info-item i {
    color: #f59e0b;
    font-size: 16px;
    margin-top: 3px;
}

.contact-info-item p {
    line-height: 1.4;
    margin: 0;
}

.contact-info-item a {
    color: #000000;
    text-decoration: none;
}
.contact-info-item a:hover {
    color: #f59e0b;
    padding-left: 0;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #1e293b; /* Extra dark matching base */
    padding: 20px 20px;
    border-top: 1px solid #1e293b;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
}

@media (min-width: 768px) {
    .footer-bottom-container {
        flex-direction: row;
    }
}

.secure-tag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-green {
    color: #22c55e;
}



/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #22c55e;
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 50;
    transition: background-color 0.2s;
}

.whatsapp-float:hover {
    background-color: #16a34a;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* simple hide for clean presentation without bloated mobile-menu logic */
    }
}






/* About Us Section Styles */
.about-section {
    padding: 80px 16px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 1fr 1fr; /* Equal two columns for image and text */
    }
}

/* Left Side Image Container */
.about-image-side {
    position: relative;
    padding: 10px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    object-fit: cover;
    max-height: 450px;
}

/* Floating Experience Badge on Image */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: #f59e0b;
    color: #172554;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.exp-years {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Right Side Text Styles */
.about-text-side {
    padding-left: 0;
}

@media (min-width: 992px) {
    .about-text-side {
        padding-left: 20px;
    }
}

.about-subtitle {
    color: #f59e0b;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.about-title {
    font-size: 28px;
    font-weight: 800;
    color: #172554;
    line-height: 1.3;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 36px;
    }
}

.about-underline {
    width: 60px;
    height: 4px;
    background-color: #f59e0b;
    margin-bottom: 24px;
}

.about-description {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 16px;
    text-align: justify;
}

/* Core Pillars Inner Layout */
.about-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 32px;
}

@media (min-width: 576px) {
    .about-pillars {
        grid-template-columns: 1fr 1fr;
    }
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f9fafb;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.pillar-item i {
    font-size: 20px;
    color: #1e3a8a;
}

.pillar-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: #172554;
}

.pillar-item p {
    font-size: 12px;
    color: #6b7280;
}

/* About CTA Button */
.btn-about-cta {
    background-color: #1e3a8a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.2s;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(30, 58, 138, 0.15);
}

.btn-about-cta:hover {
    background-color: #172554;
}






/* ==========================================================================
   CONTACT US SECTION STYLES
   ========================================================================== */
.contact-section {
    padding: 80px 16px;
    background-color: #f3f4f6; /* Subtle grey layout separation */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 1.2fr 1fr; /* Text details take slightly more width than map */
    }
}

/* Left Side Text Content */
.contact-subtitle {
    color: #f59e0b;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 6px;
}

.contact-title {
    font-size: 28px;
    font-weight: 800;
    color: #172554;
    line-height: 1.3;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 34px;
    }
}

.contact-underline {
    width: 60px;
    height: 4px;
    background-color: #f59e0b;
    margin-bottom: 20px;
    border-radius: 2px;
}

.contact-desc {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Grid for 4 Contact Method Cards */
.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .info-cards-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 grid on medium screens */
    }
}

.info-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
}

.card-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #172554;
    margin-bottom: 6px;
}

.card-content p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
}

.card-content a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.card-content a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.text-alert {
    color: #d97706 !important;
    font-size: 11px !important;
    font-weight: 600;
    margin-top: 4px;
}

/* Right Side Map Content */
.contact-map-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.map-wrapper {
    background-color: #ffffff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    height: 350px;
}

@media (min-width: 992px) {
    .map-wrapper {
        height: 100%; /* Automatically scales up to match the height of left cards */
        min-height: 400px;
    }
}

.google-map {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.map-badge {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.map-badge i {
    color: #f59e0b;
    font-size: 16px;
}

.map-badge p {
    margin: 0;
    line-height: 1.4;
}






.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}


.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}


.footer-social-icons a i {
    color: white;
}

.footer-bottom-container p {
    color: #ffffff;
}


p.secure-tag a {
    color: #ffffff;
    text-decoration: none;
}
p.secure-tag a:hover {
    color: #f59e0b;
}

i#iconsss {
    color: #ffffff;
}





/* ================================
   CONTACT SECTION RESPONSIVE CSS
================================ */

/* Laptop */
@media (max-width: 1200px) {

    .contact-container {
        gap: 40px;
        padding: 0 20px;
    }

    .contact-title {
        font-size: 38px;
        line-height: 1.3;
    }

    .info-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* Tablet */
@media (max-width: 992px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-info-side,
    .contact-map-side {
        width: 100%;
    }

    .contact-title {
        font-size: 34px;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 450px;
    }

}


/* Mobile Large */
@media (max-width: 768px) {

    .contact-section {
        padding: 70px 15px;
    }

    .contact-title {
        font-size: 30px;
        text-align: center;
    }

    .contact-subtitle,
    .contact-desc,
    .contact-underline {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 22px;
    }

    .card-content h4 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 14px;
    }

    .map-wrapper iframe {
        height: 400px;
    }

    .map-badge {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 18px;
    }

}


/* Mobile Small */
@media (max-width: 576px) {

    .contact-section {
        padding: 60px 12px;
    }

    .contact-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .contact-desc {
        font-size: 14px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px 15px;
    }

    .card-icon {
        margin-bottom: 12px;
    }

    .card-icon i {
        font-size: 24px;
    }

    .card-content h4 {
        font-size: 17px;
    }

    .card-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .map-wrapper iframe {
        height: 320px;
    }

    .map-badge p {
        font-size: 14px;
    }

}


/* Extra Small Devices */
@media (max-width: 400px) {

    .contact-title {
        font-size: 22px;
    }

    .contact-desc {
        font-size: 13px;
    }

    .info-card {
        padding: 18px 12px;
    }

    .map-wrapper iframe {
        height: 280px;
    }

}








/* =================================
   HEADER RESPONSIVE CSS
================================= */

/* Laptop */
@media (max-width: 1200px) {

    .header-container {
        padding: 15px 25px;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 15px;
        margin: 0 10px;
    }

    .logo-img {
        height: 52px;
    }

}


/* Tablet */
@media (max-width: 992px) {

    .header-container {
        justify-content: space-between;
        padding: 15px 20px;
    }

    .nav-menu {
        display: none;
    }

    .btn-call {
        padding: 12px 18px;
        font-size: 14px;
    }

    .logo-img {
        height: 50px;
    }

}


/* Mobile Large */
@media (max-width: 768px) {

    .main-header {
        width: 100%;
    }

    .header-container {
        padding: 12px 15px;
    }

    .logo-img {
        height: 45px;
    }

    .btn-call {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 8px;
    }

    .btn-call span {
        display: none;
    }

}


/* Mobile Small */
@media (max-width: 576px) {

    .header-container {
        padding: 10px 12px;
    }

    .logo-img {
        height: 40px;
    }

    .btn-call {
        width: 42px;
        height: 42px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .btn-call i {
        font-size: 16px;
        margin: 0;
    }

}


/* Extra Small Devices */
@media (max-width: 400px) {

    .header-container {
        padding: 10px;
    }

    .logo-img {
        height: 36px;
    }

    .btn-call {
        width: 38px;
        height: 38px;
    }

    .btn-call i {
        font-size: 14px;
    }

}


/* =========================
   HEADER RIGHT
========================= */

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    z-index: 1001;
}

/* Tablet & Mobile */
@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
        gap: 20px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        width: 100%;
        font-size: 16px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

}

/* =========================
   MOBILE NAV FIX
========================= */

@media (max-width: 992px) {

    .main-header{
        position: relative;
        z-index: 9999;
    }

    .header-container{
        position: relative;
    }

    .nav-menu{
        position: absolute;   /* fixed hata do */
        top: 100%;            /* header ke niche */
        right: 0;
        width: 100%;
        height: auto;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding: 15px 20px;
        gap: 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);

        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: 0.3s ease;
    }

    .nav-menu.active{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a{
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #eee;
        font-size: 16px;
    }

}








/* ==========================================================================
   PAGE HEADER & LEGAL CONTAINER FULL FIX
   ========================================================================== */

/* 1. Banner Fix: Isse heading center ho jayegi aur pure page par sahi dikhegi */
.page-header-banner {
    /* Unsplash se direct standard premium packers-movers matching image code */
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                     url('../images/term.jpg');
    
    background-size: cover;       /* Image ko stretch hone se bachata hai aur area fit karta hai */
    background-position: center;  /* Image hamesha center mein focused rahegi */
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 65px 20px;           /* Image ka view behtar karne ke liye thoda padding badha diya hai */
    text-align: center;           /* Heading aur subtitle dono ko center rakhega */
    width: 100%;
}

.page-header-banner h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-header-banner p {
    font-size: 15px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto; /* Subtitle ko bhi center rakhega */
}

/* 2. Section Container Fix: Isse content card left-right dono taraf se center ho jayega */
.legal-content-section {
    padding: 60px 16px;
    background-color: #f8fafc; /* Puray background ka gray color */
    width: 100%;
    display: flex;
    justify-content: center; /* Isse white box screen ke center mein aayega */
}

/* 3. White Box Card Box */
.legal-container {
    width: 100%;
    max-width: 850px; /* Standard professional document width */
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.06); /* Soft premium shadow */
    border: 1px solid #e2e8f0;
}

/* Responsive Fix for Mobile Phones */
@media (max-width: 768px) {
    .page-header-banner {
        padding: 35px 16px;
    }
    .page-header-banner h1 {
        font-size: 28px;
    }
    .legal-content-section {
        padding: 30px 12px;
    }
    .legal-container {
        padding: 25px 20px;
    }
}

/* Headings inside the card */
.legal-container h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin-top: 36px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-container h2::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 20px;
    background-color: #f59e0b;
    border-radius: 4px;
}

.legal-container p {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 18px;
    text-align: justify;
}

.legal-container > p:first-of-type {
    font-size: 16px;
    color: #334155;
    font-weight: 500;
    line-height: 1.8;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e2e8f0;
    margin-bottom: 24px;
}





/* ==========================================================================
   EXCLUSIVE PRIVACY POLICY BANNER & CONTENT CSS (100% SAFE & UNIQUE)
   ========================================================================== */

/* Unique Banner Specific to Privacy Policy Page */
.page-header-banner.privacy-banner {
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                     url('../images/privacy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 65px 20px;
    text-align: center;
    width: 100%;
}

.page-header-banner.privacy-banner h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-header-banner.privacy-banner p {
    font-size: 15px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Specific Section targeting using Unique ID */
#privacy-policy-document {
    padding: 60px 16px;
    background-color: #f8fafc; /* Premium light canvas color */
    width: 100%;
    display: flex;
    justify-content: center; /* Card container center alignment */
}

/* Targeted White Box Layout */
#privacy-policy-document .legal-container {
    width: 100%;
    max-width: 850px;
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
}

/* Headings structure with unique ribbon styling */
#privacy-policy-document .legal-container h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a; /* QuickMovers Primary Blue */
    margin-top: 36px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Yellow color ribbon block inside unique element */
#privacy-policy-document .legal-container h2::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 20px;
    background-color: #f59e0b; /* Brand gold shade */
    border-radius: 4px;
}

/* Paragraph control inside targeted ID */
#privacy-policy-document .legal-container p {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 18px;
    text-align: justify;
}

/* Intro text premium styling rule */
#privacy-policy-document .legal-container > p:first-of-type {
    font-size: 16px;
    color: #334155;
    font-weight: 500;
    line-height: 1.8;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e2e8f0;
    margin-bottom: 24px;
}

/* Unique Point List custom styling (Point No. 2 Checker) */
#privacy-policy-document .legal-container ul {
    margin-left: 5px;
    margin-bottom: 24px;
    list-style: none; /* Removing old bullets safely */
}

#privacy-policy-document .legal-container li {
    font-size: 14.5px;
    color: #475569;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Automatic Checkmark inject under current block list elements */
#privacy-policy-document .legal-container li::before {
    content: "\f00c"; /* FontAwesome code for verification check mark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #f59e0b; /* Brand Golden color ticks */
    font-size: 13px;
}

/* Responsive query targeting unique elements */
@media (max-width: 768px) {
    .page-header-banner.privacy-banner {
        padding: 40px 16px;
    }
    .page-header-banner.privacy-banner h1 {
        font-size: 28px;
    }
    #privacy-policy-document {
        padding: 30px 12px;
    }
    #privacy-policy-document .legal-container {
        padding: 25px 20px;
    }
}