/* ======================================================== */
/* GLOBAL RESET & SMOOTH SCROLL SYSTEM                      */
/* ======================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
    overflow-y: auto !important; 
    height: auto !important;
    min-height: 100vh !important;
    scroll-behavior: smooth;
    background-color: #ffffff; /* مین باڈی کا بیک گراؤنڈ اب سفید رہے گا */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: none;
}

/* ڈاٹس والا کینوس پورے پیج پر فکس رہے گا */
#particle-canvas {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* یہ بیک گراؤنڈ میں رہے گا */
    pointer-events: none;
}

#main-site {
    position: relative;
    width: 100%;
    height: auto !important; 
    z-index: 2;
}

/* کسٹم کرسر */
#custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(225, 29, 72, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: #E11D48;
    border-radius: 50%;
}

/* ======================================================== */
/* BRAND PRELOADER                                          */
/* ======================================================== */
#centered-loader-box {
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
    z-index: 100;
}

#brand-logo {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    line-height: 1;
}

.text-red { color: #E11D48; }
.text-dark-blue { color: #103D4B; }

.progress-frame {
    width: 240px;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.1); 
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

#loading-bar {
    width: 0%; 
    height: 100%;
    background-color: #E11D48; 
}

/* ======================================================== */
/* HERO LAYOUT                                              */
/* ======================================================== */
#hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    overflow: hidden; 
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    padding-bottom: 60px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(271deg 3.11% 3.96% / 95%) 0%, hsl(0deg 0% 0.92% / 87.8%) 100%);
    z-index: 2;
}

/* ======================================================== */
/* HEADER MENU & LINKS INTERACTION                          */
/* ======================================================== */
.main-header {
    position: relative; 
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 0 40px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff; 
    border-radius: 100px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 35px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-block {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 48px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 600;
    color: #032B53; 
    transition: color 0.3s ease;
}

.nav-item:hover, .nav-item.active {
    color: #E11D48 !important; 
}

.header-right-action {
    display: flex;
    align-items: center;
    gap: 25px;
}

.call-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-icon-circle {
    width: 42px;
    height: 42px;
    background-color: #333;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-icon-circle svg {
    width: 18px;
    height: 18px;
}

.call-text {
    display: flex;
    flex-direction: column;
}

.call-lbl {
    font-size: 0.8rem;
    color: #6B7280;
    font-weight: 500;
}

.call-num {
    font-size: 1rem;
    color: #032B53;
    font-weight: 700;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #032B53; 
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 6px 6px 25px;
    border-radius: 50px;
    height: 55px;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

.cta-arrow-circle {
    width: 42px;
    height: 42px;
    background-color: #d32525; 
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

.cta-arrow-circle svg {
    width: 22px;
    height: 22px;
}

.header-cta-btn:hover {
    background-color: #E11D48; 
    transform: translateY(-2px);
}

.header-cta-btn:hover .cta-arrow-circle {
    background-color: #ffffff;
    color: #E11D48;
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #032B53;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ======================================================== */
/* HERO CONTENT                                             */
/* ======================================================== */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
    margin-top: 80px; 
    margin-bottom: auto;
}

.hero-main-heading {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-sub-desc {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 850px;
    margin: 0 auto 35px auto;
}

.hero-features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.feature-item {
    font-size: 1.15rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #c52222;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

/* ======================================================== */
/* HERO MAIN ACTION BUTTONS GROUP                           */
/* ======================================================== */
.hero-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.exact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 6px 6px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    min-width: 230px;
    height: 60px;
    transition: background-color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border: none;
    color: #ffffff;
}

.exact-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    transition: transform 0.3s ease, background-color 0.4s ease, color 0.4s ease;
}

.exact-arrow-circle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.btn-blue-style {
    background-color: #032B53;
    box-shadow: 0 4px 15px rgba(3, 43, 83, 0.3);
}
.inner-green-circle {
    background-color: #ba1414;
}

.btn-green-style {
    background-color:#E11D48;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3);
}
.inner-blue-circle {
    background-color: #032B53 ;
}

.exact-btn:hover {
    background-color: #E11D48 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.5) !important;
}

.exact-btn:hover .exact-arrow-circle {
    background-color: #ffffff !important;
    color: #E11D48 !important;
    transform: translateX(3px);
}

/* ======================================================== */
/* NEW SECTIONS STYLE TYPOGRAPHY (یہاں نئے سیکشنز کی سیٹنگ ہے) */
/* ======================================================== */
.new-section-box {
    position: relative;
    width: 100%;
    padding: 60px 40px;
    background-color: rgba(255, 255, 255, 0.85); /* ٹرانسپیرنٹ وائٹ تاکہ نیچے سے ڈاٹس دیکھیں */
    color: #032B53; /* ڈارک بلو ٹیکسٹ کلر */
    z-index: 5;
}

/* ======================================================== */
/* RESPONSIVE MOBILE MENU LAYOUT SYSTEM                     */
/* ======================================================== */
@media (max-width: 1024px) {
    .main-header {
        position: absolute; 
        padding: 0 20px;
    }
    
    .hero-content {
        margin-top: 140px; 
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 100;
    }

    .nav-links {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-radius: 20px;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease;
    }

    .nav-links.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        z-index: 99;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
    }

    .header-right-action {
        gap: 15px;
    }

    .call-text {
        display: none; 
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px 0 20px;
    }
    .brand-logo-img {
        height: 38px;
    }
    .header-cta-btn span {
        display: none; 
    }
    .header-cta-btn {
        padding: 6px;
        width: 55px;
        justify-content: center;
    }
}//* ======================================================== */
/* SLEEK & AESTHETIC ABOUT US LAYOUT                        */
/* ======================================================== */
.about-layout-sec {
    max-width: 1200px; /* سائز کم کر دیا تاکہ زیادہ پھیلا ہوا نہ لگے */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px; /* گیپ کم کیا */
    padding: 60px 24px !important; /* ایکسٹرا پیڈنگ کم کی */
}

.about-main-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* Badge Tag */
.about-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(3, 43, 83, 0.06); /* ہلکا اور فینسی بیک گراؤنڈ */
    color: #032B53;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
}

.badge-line {
    width: 6px;
    height: 6px;
    background-color: #E11D48;
    border-radius: 50%; /* لائن کی جگہ فینسی ڈاٹ */
}

.about-heading {
    font-size: clamp(2rem, 3.5vw, 3rem); /* ہیڈنگ کا سائز چھوٹا کیا */
    font-weight: 800;
    color: #032B53;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.text-red-highlight {
    color: #E11D48;
}

/* Description Text */
.about-description-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #556270;
    font-size: 0.98rem; /* ٹیکسٹ سائز کم کیا */
    line-height: 1.6;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #032B53;
    line-height: 1.5;
}

/* Image Column - Smaller Smart Sizes */
.about-image-col {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-animation-frame {
    position: relative;
    width: 100%;
    max-width: 360px; /* امیج فریم چھوٹا کر دیا */
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(3, 43, 83, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.about-display-img {
    width: 100%;
    height: 380px; /* ہائٹ کم کر دی تاکہ خوبصورت لگے */
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #ffffff;
    position: relative;
    z-index: 3;
}

.red-dots-pattern {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 150px;
    background-image: radial-gradient(#E11D48 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    z-index: 1;
    opacity: 0.7;
}

.image-animation-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(3, 43, 83, 0.12);
}

/* ======================================================== */
/* MINI CARDS GRID WITH SLEEK TEXT                          */
/* ======================================================== */
.about-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid rgba(3, 43, 83, 0.08);
    padding-top: 35px;
    margin-top: 15px;
}

.about-card-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5); /* ہلکا فینسی گلاس ایفیکٹ */
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.about-card-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
}

.card-icon-wrap {
    color: #032B53;
    transition: color 0.3s ease, transform 0.3s ease;
}

.card-icon-wrap svg {
    width: 32px; /* آئیکنز کا سائز چھوٹا اور اسمارٹ کر دیا */
    height: 32px;
}

.about-card-item h3 {
    font-size: 1.05rem; /* ہیڈنگز چھوٹی کر دیں */
    font-weight: 700;
    color: #032B53;
}

.about-card-item p {
    font-size: 0.88rem; /* کارڈ ڈسکرپشن سائز کم کیا */
    color: #6B7280;
    line-height: 1.4;
}

.about-card-item:hover .card-icon-wrap {
    color: #E11D48;
    transform: scale(1.05);
}

/* Responsive Grid fixes */
@media (max-width: 1024px) {
    .about-main-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-features-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-image-col {
        order: -1;
    }
}

@media (max-width: 640px) {
    .about-features-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}/* ======================================================== */
/* RESPONSIVE DESIGN FOR ABOUT SECTION                      */
/* ======================================================== */
@media (max-width: 1024px) {
    .about-main-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    /* ٹیبلٹ اسکرین پر دو کارڈز ایک ساتھ */
    .about-features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-image-col {
        order: -1; /* تصویر ٹیکسٹ سے اوپر چلی جائے گی */
    }
}

@media (max-width: 640px) {
    .about-layout-sec {
        padding: 40px 15px !important; /* موبائل پر سائیڈ اسپیپنگ سیٹ کی */
        gap: 40px;
    }

    /* فورس فکس: موبائل پر بھی ہر حال میں دو کارڈز ایک لائن میں رہیں گے */
    .about-features-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px; /* موبائل کے حساب سے متناسب فاصلہ */
        padding-top: 25px;
    }

    .about-card-item {
        padding: 12px 10px;
        gap: 8px;
        align-items: center; /* ٹیکسٹ اور آئیکن موبائل پر سینٹر الائن */
        text-align: center;
    }

    .card-icon-wrap svg {
        width: 28px; /* موبائل پر آئیکن کا سائز اسمارٹ کر دیا */
        height: 28px;
    }

    .about-card-item h3 {
        font-size: 0.95rem; /* ہیڈنگ کا سائز پرفیکٹ ایڈجسٹ کیا */
        line-height: 1.2;
    }

    .about-card-item p {
        font-size: 0.78rem; /* ڈسکرپشن موبائل پر چھوٹی اور کلین دکھے گی */
        line-height: 1.3;
    }
}/* ======================================================== */
/* RESPONSIVE DESIGN FOR ABOUT SECTION                      */
/* ======================================================== */
@media (max-width: 1024px) {
    .about-main-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    /* ٹیبلٹ اسکرین پر دو کارڈز ایک ساتھ */
    .about-features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-image-col {
        order: -1; /* تصویر ٹیکسٹ سے اوپر چلی جائے گی */
    }
}

@media (max-width: 640px) {
    .about-layout-sec {
        padding: 40px 15px !important; /* موبائل پر سائیڈ اسپیپنگ سیٹ کی */
        gap: 40px;
    }

    /* فورس فکس: موبائل پر بھی ہر حال میں دو کارڈز ایک لائن میں رہیں گے */
    .about-features-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px; /* موبائل کے حساب سے متناسب فاصلہ */
        padding-top: 25px;
    }

    .about-card-item {
        padding: 12px 10px;
        gap: 8px;
        align-items: center; /* ٹیکسٹ اور آئیکن موبائل پر سینٹر الائن */
        text-align: center;
    }

    .card-icon-wrap svg {
        width: 28px; /* موبائل پر آئیکن کا سائز اسمارٹ کر دیا */
        height: 28px;
    }

    .about-card-item h3 {
        font-size: 0.95rem; /* ہیڈنگ کا سائز پرفیکٹ ایڈجسٹ کیا */
        line-height: 1.2;
    }

    .about-card-item p {
        font-size: 0.78rem; /* ڈسکرپشن موبائل پر چھوٹی اور کلین دکھے گی */
        line-height: 1.3;
    }
}
/* سیکشن کی سیٹنگ */
.service-highlight-sec { padding: 80px 20px; background-color: rgba(252, 252, 252, 0.85); }
.service-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; align-items: center; }

/* Image Stack Design */
.image-stack { position: relative; width: 500px; height: 400px; }
.image-stack img { position: absolute; width: 320px; height: 240px; border-radius: 8px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); transition: 0.5s ease; object-fit: cover; }

.img-bottom { bottom: 0; left: 0; z-index: 1; }
.img-top { top: 0; right: 0; z-index: 2; }

/* تصاویر پر اینیمیشن */
.image-stack:hover .img-top { transform: scale(1.03); }
.image-stack:hover .img-bottom { transform: scale(0.97); }

/* Doha, Qatar Box */
.location-tag-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background: #032B53;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.4s;
    cursor: pointer;
}
.location-tag-box:hover { background: #E11D48; }

/* Right Content */
.text-blue { color: #032B53; }
.service-heading { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.2; }
.service-content p { color: #666; line-height: 1.7; margin-bottom: 20px; }

/* بٹن اور ہاٹ لائن */
.service-footer { display: flex; align-items: center; gap: 30px; margin-top: 30px; }
.icon-circle { background: #E11D48; color: white; padding: 12px; border-radius: 50%; width: 45px; height: 45px; }
.hotline-text { display: flex; flex-direction: column; }
.hotline-text strong { font-size: 1.2rem; color: #032B53; }

.process-btn {
    background-color: #032B53;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.4s;
}
.process-btn:hover { background-color: #E11D48; }

/* موبائل رسپانس */
@media (max-width: 900px) {
    .service-container { grid-template-columns: 1fr; }
    .image-stack { width: 100%; height: 300px; }
}.why-container { max-width: 1000px; margin: auto; padding: 40px 20px; }
.top-layout { display: flex; align-items: center; gap: 40px; margin-bottom: 50px; }
.why-image img { width: 400px; height: 300px; object-fit: cover; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Grid: 2 columns */
.features-grid { 
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; 
    border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; padding: 40px 0; 
}
.feature-item { display: flex; align-items: flex-start; gap: 15px; }
.icon-box { 
    width: 50px; height: 50px; border: 2px solid #032B53; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #032B53; transition: 0.3s; flex-shrink: 0;
}
.feature-item:hover .icon-box { border-color: #E11D48; color: #E11D48; }

/* Aesthetic Box */
.aesthetic-bottom-box {
    margin-top: 40px; padding: 25px; background: #032B53; color: white;
    border-radius: 10px; display: flex; align-items: center; gap: 20px;
    transition: 0.4s;
}
.aesthetic-bottom-box:hover { background: #E11D48; }

/* Mobile View: 2 columns fixed */
@media (max-width: 768px) {
    .top-layout { flex-direction: column; text-align: center; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .feature-item { flex-direction: column; text-align: center; }
}.why-container { max-width: 1200px; margin: auto; padding: 50px 20px; }
.top-layout { display: flex; align-items: center; gap: 50px; margin-bottom: 60px; }
.why-image img { width: 450px; height: 320px; object-fit: cover; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

/* Desktop Grid: 4 columns */
.features-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; 
    border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; padding: 40px 0; 
}
.feature-item { display: flex; flex-direction: column; gap: 12px; }
.icon-box { 
    width: 50px; height: 50px; border: 2px solid #032B53; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #032B53; transition: 0.3s;
}
.feature-item:hover .icon-box { border-color: #E11D48; color: #E11D48; }

/* Aesthetic Box */
.aesthetic-bottom-box {
    margin-top: 40px; padding: 25px; background: #032B53; color: white;
    border-radius: 12px; display: flex; align-items: center; gap: 20px;
}

/* Mobile View: 2 columns */
@media (max-width: 768px) {
    .top-layout { flex-direction: column; text-align: center; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
/* سیکشن کا مین کنٹینر - سائز کو کنٹرول کرنے کے لیے */
.why-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 60px 20px; 
    overflow: hidden; /* تاکہ ڈیٹا باہر نہ نکلے */
}

/* پیراگراف اور ٹیکسٹ سائز کو سیٹ کرنا */
.why-text p {
    font-size: 16px; /* پیراگراف کا مناسب سائز */
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
    max-width: 600px; /* ٹیکسٹ بہت زیادہ نہ پھیلے */
}

/* کارڈز کا سائز سیٹ کرنا */
.features-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; /* کارڈز کے درمیان فاصلہ */
    padding: 40px 0; 
}

.feature-item { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start;
}

.feature-item h3 {
    font-size: 18px; /* ہیڈنگ کا سائز */
    margin: 15px 0 10px 0;
    color: #032B53;
}

.feature-item p {
    font-size: 14px; /* کارڈ والے پیرا کا سائز */
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* موبائل کے لیے سیٹنگ */
@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); } /* ٹیبلٹ پر 2 کالم */
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; } /* موبائل پر 1 کالم */
    .top-layout { flex-direction: column; text-align: center; }
}/* ہیڈنگ کو بڑا اور کلر فل بنانے کے لیے */
/* ہیڈنگ اور پیراگراف کا سیکشن */
.why-header {
    margin-bottom: 40px;
}

/* بڑی اور بولڈ ہیڈنگ */
.why-header h2 { 
    font-size: 3.8rem; 
    line-height: 1; 
    color: #032B53; /* ڈارک بلو */
    font-weight: 900; 
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

/* AL REHAAB کے لیے ریڈ کلر */
.why-header h2 .red-text { 
    color: #E11D48; 
    display: block; 
    font-size: 4.2rem; 
    margin-top: 5px;
}

/* پیراگراف کی سیٹنگ */
.why-text p.commitment {
    font-size: 1.4rem;
    font-weight: 700;
    color: #032B53;
    margin-bottom: 15px;
}

.why-text p {
    font-size: 18px; 
    line-height: 1.7;
    color: #4b5563; /* سوفٹ گرے */
    max-width: 650px;
    margin-bottom: 25px;
}
.why-container { max-width: 1200px; margin: auto; padding: 50px 20px; }
.top-layout { display: flex; align-items: center; gap: 50px; margin-bottom: 60px; }
.why-image img { width: 450px; height: 320px; object-fit: cover; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

/* Desktop Grid: 4 columns */
.features-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; 
    border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; padding: 40px 0; 
}
.feature-item { display: flex; flex-direction: column; gap: 12px; }
.icon-box { 
    width: 50px; height: 50px; border: 2px solid #032B53; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #032B53; transition: 0.3s;
}
.feature-item:hover .icon-box { border-color: #E11D48; color: #E11D48; }

/* Aesthetic Box */
.aesthetic-bottom-box {
    margin-top: 40px; padding: 25px; background: #032B53; color: white;
    border-radius: 12px; display: flex; align-items: center; gap: 20px;
}

/* Mobile View: 2 columns */
@media (max-width: 768px) {
    .top-layout { flex-direction: column; text-align: center; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.qatar-container { max-width: 1000px; margin: auto; padding: 40px 20px; }
.qatar-header { margin-bottom: 40px; }
.qatar-header h2 { font-size: 3rem; color: #032B53; margin: 0; }
.red-text { color: #E11D48; }
.red-line { width: 50px; height: 4px; background: #E11D48; margin-top: 10px; }

/* Grid */
.qatar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

/* Real Icon Style */
.icon-box { 
    width: 45px; height: 45px; margin-bottom: 15px;
    color: #032B53; /* Blue Color */
    transition: 0.3s ease;
}
.qatar-card:hover .icon-box { color: #E11D48; } /* Red on Hover */

.qatar-card h3 { font-size: 1.1rem; color: #032B53; margin: 0 0 10px 0; font-weight: 700; }
.qatar-card p { font-size: 0.85rem; color: #555; line-height: 1.6; margin: 0; }

/* Mobile View: 2 Cards per row */
@media (max-width: 768px) {
    .qatar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .qatar-header h2 { font-size: 2.2rem; }
}
.visa-container { display: flex; gap: 60px; max-width: 1200px; margin: auto; padding: 40px 20px; }

/* تصویریں اب بڑی ہیں (55% width) */
.visa-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 55%; }
.grid-box img { width: 100%; height: 230px; object-fit: cover; border-radius: 8px; }
.grid-box span { position: absolute; bottom: 15px; left: 15px; color: white; font-size: 0.85rem; font-weight: bold; }

/* ٹیکسٹ سائیڈ (45% width + تھوڑی زیادہ پیڈنگ) */
.visa-details { width: 45%; padding-left: 30px; background: transparent !important; }

/* آئیکنز اور ٹیکسٹ */
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 30px; }
.item { display: flex; align-items: flex-start; gap: 15px; color: #032B53; transition: 0.3s; }
.item svg { width: 35px; color: #032B53; transition: 0.3s; }
.item:hover svg { color: #E11D48; }

/* موبائل ویو */
@media (max-width: 768px) {
    .visa-container { flex-direction: column; }
    .visa-images, .visa-details { width: 100%; padding-left: 0; }
}.visa-container { 
    display: flex; 
    gap: 40px; 
    max-width: 1200px; 
    margin: auto; 
    padding: 40px 20px; 
    align-items: center; /* عمودی طور پر بھی برابر */
}

/* 50% - 50% Width */
.visa-images, .visa-details { 
    width: 50%; 
}

/* امیج گرڈ سائزنگ */
.visa-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-box img { width: 100%; height: 220px; object-fit: cover; border-radius: 8px; }

/* ٹیکسٹ سائیڈ */
.visa-details { background: transparent !important; }
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }

/* موبائل پر بھی سیٹ */
@media (max-width: 768px) {
    .visa-container { flex-direction: column; }
    .visa-images, .visa-details { width: 100%; }
}
/* 4 کارڈز ایک لائن میں */
<style>
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); /* ایک لائن میں 4 کارڈز */
    gap: 20px; 
    padding: 20px;
}

.service-card { 
    padding: 20px; border: 2px solid #032B53; border-radius: 12px;
    text-align: center; transition: 0.4s; background: white;
}
.service-card img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; }

/* کارڈ کا اینیمیشن (Blue to Red) */
.service-card:hover { background-color: #E11D48; border-color: #E11D48; color: white; }
.detail-btn { background: #032B53; color: white; border: none; padding: 8px 15px; cursor: pointer; border-radius: 5px; transition: 0.3s; }
.service-card:hover .detail-btn { background: white; color: #E11D48; }

/* موبائل ویو (2 کارڈز) */
@media (max-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Modal باکس */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1000; }
.modal-content { background: white; width: 350px; margin: 15% auto; padding: 25px; border-radius: 10px; color: #333; }
.close { float: right; cursor: pointer; font-size: 20px; }
/* ڈیسک ٹاپ کے لیے 4 کالم */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}

/* موبائل کے لیے 3 کالم (Media Query) */
@media (max-width: 768px) {
    .services-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
}
</style>

/* 4 کالم ڈیسک ٹاپ، 3 کالم موبائل */
<style>
/* ہیڈنگ کو سینٹر کرنے کے لیے */
.section-header {
    text-align: center;      /* ٹیکسٹ کو بالکل درمیان میں لانے کے لیے */
    margin-bottom: 40px;
    width: 100%;             /* تاکہ یہ پوری اسکرین پر سینٹر رہے */
}

/* 4 کالم ڈیسک ٹاپ، 3 کالم موبائل */
section-header {
    text-align: center !important; /* !important اسے اوور رائٹ کر دے گا */
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

/* باقی ڈیزائن وہی رہے گا */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}

@media (max-width: 768px) { 
    .services-grid { grid-template-columns: repeat(3, 1fr); } 
}

.service-card { 
    padding: 20px; 
    border: 2px solid #032B53; 
    border-radius: 12px; 
    text-align: center; 
    transition: 0.4s; 
    background: white; 
}

.service-card:hover { 
    background-color: #E11D48; 
    border-color: #E11D48; 
    color: white; 
}
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* کارڈ کا سٹائل */
.service-card { padding: 20px; border: 2px solid #032B53; border-radius: 12px; text-align: center; transition: 0.4s; background: white; }
.service-card:hover { background-color: #E11D48; border-color: #E11D48; color: white; }
.service-card img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; margin-bottom: 10px; }
.detail-btn { background: #032B53; color: white; border: none; padding: 10px 20px; cursor: pointer; border-radius: 5px; transition: 0.3s; }
.service-card:hover .detail-btn { background: white; color: #E11D48; }

/* Modal سٹائل */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1000; }
.modal-content { background: white; width: 350px; margin: 15% auto; padding: 25px; border-radius: 10px; color: black; position: relative; }
.close { position: absolute; top: 10px; right: 20px; cursor: pointer; font-size: 25px; }
</style>
<style>
/* ہیڈنگ کو مکمل طور پر سینٹر کرنے کا طریقہ */
.section-header {
    text-align: center !important; /* !important اسے اوور رائٹ کر دے گا */
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

/* باقی ڈیزائن وہی رہے گا */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}

@media (max-width: 768px) { 
    .services-grid { grid-template-columns: repeat(3, 1fr); } 
}

.service-card { 
    padding: 20px; 
    border: 2px solid #032B53; 
    border-radius: 12px; 
    text-align: center; 
    transition: 0.4s; 
    background: white; 
}

.service-card:hover { 
    background-color: #E11D48; 
    border-color: #E11D48; 
    color: white; 
}
</style>
<style>
/* ڈیسک ٹاپ پر یہ Row ہے */
.process-container { 
    display: flex; 
    justify-content: space-around; 
    align-items: flex-start;
    max-width: 1100px; 
    margin: 40px auto; 
}

.step { text-align: center; width: 15%; }

/* موبائل پر یہ Column بن جائے گا */
@media (max-width: 768px) {
    .process-container { 
        flex-direction: column; /* یہاں ہم نے Row سے Column کر دیا */
        align-items: center; 
        gap: 30px; 
    }
    .step { width: 100%; } /* موبائل پر پورا حصہ لے گا */
}

/* سرکل اور دیگر اسٹائل */
.circle { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 15px; border: 4px solid; transition: 0.4s; }
.blue { border-color: #032B53; color: #032B53; }
.blue:hover { background: #032B53; color: white; }
.red { border-color: #E11D48; color: #E11D48; }
.red:hover { background: #E11D48; color: white; }
</style>
<style>
.step { text-align: center; width: 150px; } /* فکسڈ چوڑائی تاکہ لائن سیدھی رہے */
.circle { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 15px; border: 4px solid; transition: 0.4s; }

.blue { border-color: #032B53; color: #032B53; }
.blue:hover { background: #032B53; color: white; }
.red { border-color: #E11D48; color: #E11D48; }
.red:hover { background: #E11D48; color: white; }

/* موبائل ویو */
@media (max-width: 768px) {
    .step { width: 40%; } /* موبائل پر یہ خود بخود ایک کے نیچے ایک (کالم) آ جائیں گے */
}
</style>
<style>
.fm-section { padding: 60px 20px; font-family: sans-serif; max-width: 1100px; margin: auto; }
.fm-header { text-align: left; margin-bottom: 40px; }
.fm-header h1 { font-size: 3.5rem; margin: 0; }
.subtitle { font-weight: bold; font-size: 1.2rem; color: #333; margin: 10px 0; }
.desc { color: #666; max-width: 600px; line-height: 1.6; }

/* کارڈز گرڈ */
.fm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; border: 2px solid #eee; padding: 30px; border-radius: 20px; }
.fm-card { text-align: center; padding: 10px; }
.fm-card i { font-size: 40px; color: #E11D48; margin-bottom: 15px; }
.fm-card h3 { color: #032B53; margin-bottom: 10px; }
.fm-card p { font-size: 0.9rem; color: #555; line-height: 1.4; }

/* موبائل ویو */
@media (max-width: 768px) {
    .fm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .fm-grid { grid-template-columns: 1fr; }
}
</style>
<style>
    .faq-section { padding: 80px 20px; max-width: 1100px; margin: 0 auto; font-family: 'Segoe UI', sans-serif; }
    .faq-title { text-align: center; color: #032B53; margin-bottom: 50px; font-size: 2.2rem; font-weight: 800; }

    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }

    /* کارڈ سٹائل */
    .faq-item { 
        background: #ffffff; 
        border: 1px solid #e0e0e0; 
        border-radius: 12px; 
        margin-bottom: 15px; 
        overflow: hidden; 
        transition: all 0.4s ease; /* ہموار اینیمیشن */
    }

    /* ماؤس لے جانے پر اثر */
    .faq-item:hover { 
        background: #032B53; /* گہرا نیلا */
        border-color: #032B53;
        transform: translateY(-3px); /* ہلکا سا اوپر اٹھنا */
    }

    .faq-question {
        width: 100%; padding: 22px; background: none; border: none;
        text-align: left; font-size: 1.05rem; color: #032B53; font-weight: 700;
        cursor: pointer; display: flex; justify-content: space-between;
        transition: all 0.3s ease;
    }

    /* ہوور پر ٹیکسٹ کا رنگ تبدیل ہونا */
    .faq-item:hover .faq-question { color: #ffffff; }

    .faq-answer { max-height: 0; transition: max-height 0.3s ease-out; background: #ffffff; }
    .faq-answer p { padding: 0 22px 20px; color: #555; font-size: 0.95rem; line-height: 1.6; }

    .faq-item.active .faq-answer { max-height: 150px; }
    .faq-item.active .faq-question span { color: #E11D48; }

    /* موبائل کے لیے */
    @media (max-width: 768px) {
        .faq-grid { grid-template-columns: 1fr; }
    }
</style>
