:root {
    --primary: #d11b3d;
    --secondary: #1a2c4e;
    --white: #ffffff;
    --light-bg: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Cairo', sans-serif;
}

body {
    direction: rtl;
    text-align: right;
    color: var(--secondary);
    overflow-x: hidden;
}

.container {
    width: 88%;
    margin: auto;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

/* Top Bar */
.top-bar {
    background: var(--secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: #e2e8f0;
    font-size: 0.85rem;
    text-decoration: none;
    margin-left: 20px;
}

.top-bar i {
    color: var(--primary);
    margin-left: 5px;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 15px 0;
    position: static;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

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

.logo img {
    height: 74px;
}

.logo .abbr {
    display: block;
    font-weight: 900;
    font-size: 3.8rem;
    color: #d11b3d;
    line-height: 1;
}

.logo .full {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-cta {
    background: var(--primary);
    color: white !important;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cta:hover {
    background: var(--secondary);
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('https://images.unsplash.com/photo-1454165833767-027ffea9e78b?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    width: 65%;
}

.hero h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    border-right: 4px solid var(--primary);
    padding-right: 15px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns .btn {
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    margin-left: 15px;
}

.btn.primary {
    background: var(--primary);
    color: white;
}

.btn.secondary {
    border: 2px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
}

/* Pillars */
.pillars {
    padding: 80px 0;
    background: var(--white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pillar-item .icon-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--primary);
    transition: 0.4s;
}

.pillar-item:hover .icon-circle {
    background: var(--primary);
    color: white;
}

/* Services Section */
.services-bg {
    background: var(--light-bg);
    padding: 100px 0;
}

.sub-head {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.sec-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-box {
    background: white;
    padding: 50px 30px;
    border-radius: 8px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.service-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.service-box h3 {
    margin-bottom: 15px;
    font-weight: 800;
}

.service-box p {
    color: #64748b;
    line-height: 1.7;
}

.service-box:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Why SSH */
.why-ssh {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.why-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: -20px 20px 0 var(--primary);
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-item i {
    font-size: 2rem;
    color: var(--primary);
}

.counters {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.counter-box h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
}

.footer-info .social-f {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-f a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.f-location h3,
.f-contact h3 {
    color: white;
    margin-bottom: 25px;
    font-weight: 800;
}

.footer-grid p {
    color: #94a3b8;
    margin-bottom: 10px;
}

.copy {
    background: #0f172a;
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h4 {
        border-right: none;
        padding-right: 0;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .why-img {
        order: 2;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.nav-links.active {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: var(--secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.nav-links.active a {
    color: white;
    font-size: 1.5rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    z-index: 3000;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}


/* --- Clients Section Styling --- */
.clients-section {
    padding: 100px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.red-line-short {
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    vertical-align: middle;
    margin-right: 10px;
}

.clients-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.clients-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 40px 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.clients-container::-webkit-scrollbar {
    display: none;
}

.client-diamond {
    min-width: 180px;
    height: 180px;
    background: #fff;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin: 30px;
    transition: 0.4s;
    cursor: pointer;
}

.client-diamond:hover {
    transform: rotate(45deg) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.diamond-content {
    transform: rotate(-45deg);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-content img {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.7;
    transition: 0.3s;
}

.client-diamond:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-arrow {
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: #333;
    cursor: pointer;
    padding: 0 20px;
    transition: 0.3s;
    z-index: 10;
}

.client-arrow:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .client-diamond {
        min-width: 130px;
        height: 130px;
    }

    .diamond-content {
        width: 70px;
    }

    .client-arrow {
        display: none;
    }

}


.hero-slider-wrapper {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 85%;
    margin: auto;
    text-align: right;
}

.slider-dots {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.hero-slide.active h1 {
    animation: fadeInUp 1s both 0.5s;
}

.hero-slide.active .sub-heading {
    animation: fadeInRight 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-slider-wrapper {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    background-color: #1a2c4e;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 85%;
    margin: auto;
    text-align: right;
    color: #ffffff;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 768px) {

    .top-bar {
        padding: 5px 0;
    }

    .top-bar .container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        gap: 8px;
    }

    .top-bar a {
        font-size: 0.65rem !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    .top-bar i {
        margin-left: 2px !important;
    }

    .top-bar .social-icons {
        display: none !important;
    }

    .hero-slider-wrapper {
        height: 100vh;
    }

    .hero-content {
        width: 90% !important;
        text-align: center !important;
        padding: 0 10px;
    }

    .sub-heading {
        justify-content: center !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 25px;
    }

    .hero-btns .btn {
        width: 100% !important;
        margin: 0 !important;
        padding: 12px !important;
    }

    .slider-dots {
        left: 10px !important;
        gap: 10px;
    }

    .logo img {
        height: 60px !important;
    }

    .logo .abbr {
        font-size: 1.2rem !important;
    }

    .logo .full {
        display: none;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .f-about,
    .f-location,
    .f-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .social-f {
        justify-content: center;
        margin-top: 15px;
    }

    .f-location h3::after,
    .f-contact h3::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }

    .f-location p i,
    .f-contact p i {
        margin-left: 5px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }

    .clients-section .section-head {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sub-head {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .red-line-short {
        margin: 0 !important;
        width: 50px;
    }

    .clients-wrapper {
        margin-top: 40px;
    }

    .clients-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px 0;
    }

    .client-diamond {
        min-width: 100px !important;
        height: 100px !important;
        margin: 15px !important;
        transform: rotate(45deg);
    }

    .diamond-content {
        width: 60px !important;
        height: 60px !important;
        transform: rotate(-45deg);
    }

    .diamond-content img {
        max-width: 100%;
        height: auto;
    }
}

html {
    scroll-behavior: smooth;
}



.company-intro {
    padding: 100px 0 60px;
    background-color: #fff;
}

.intro-header {
    margin-bottom: 50px;
}

.sub-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.sub-label .red-line {
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.main-intro-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--secondary); 
}

.highlight-blue {
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.highlight-red {
    color: var(--primary);
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 2.1;
    color: #334155;
    margin-bottom: 30px;
    font-weight: 600;
    max-width: 90%;
}

.cta-text {
    font-weight: 900 !important;
    font-size: 1.3rem !important;
    color: #1e293b !important;
}

.cta-text a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 2px dashed transparent;
}

.cta-text a:hover {
    border-bottom-color: var(--primary);
}

@media (max-width: 768px) {
    .main-intro-title {
        font-size: 2.2rem;
    }
    .intro-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    .company-intro {
        padding: 60px 20px;
    }
}

.company-intro {
    padding: 100px 0;
    background: #fff;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 2.2;
    color: #2d3748;
    margin-bottom: 25px;
    text-align: justify; 
}

.intro-content strong {
    color: var(--secondary);
    font-weight: 800;
}

.vision-2030-box {
    background: #f8fafc;
    border-right: 5px solid var(--primary);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 10px 10px 0;
}

.vision-2030-box p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--secondary);
    font-weight: 700;
}

.cta-text-large {
    font-size: 1.4rem !important;
    color: var(--secondary) !important;
    font-weight: 900 !important;
    margin-top: 40px;
}

.cta-btn-link {
    display: inline-block;
    background: var(--primary);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 15px;
    font-size: 1.1rem;
    transition: 0.3s;
    margin-top: 20px;
}

.cta-btn-link:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .intro-content p {
        text-align: right;
        font-size: 1rem;
    }
    .vision-2030-box {
        padding: 20px;
    }
}

.main-footer {
    background-color: #1a2c4e;
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr; 
    gap: 40px;
    padding-bottom: 60px;
}

.f-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e0;
    margin-bottom: 15px;
}

.f-red-line {
    width: 35px;
    height: 2px;
    background-color: #d11b3d;
}

.f-title-red {
    color: #d11b3d;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.f-contact-list {
    list-style: none;
    padding: 0;
}

.f-contact-list li {
    margin-bottom: 15px;
    text-align: left; 
}

.f-contact-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    gap: 12px;
    transition: 0.3s;
}

.f-contact-list a:hover {
    color: #d11b3d;
}

.f-contact-list i {
    font-size: 1.2rem;
    color: #fff;
}

.map-bg-wrapper {
    position: relative;
    text-align: center;
}

.f-map-dots {
    width: 100%;
    max-width: 400px;
    opacity: 0.2; 
    margin-bottom: 20px;
}

.location-details p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #e2e8f0;
}

.location-details i {
    color: #d11b3d;
    margin-left: 8px;
}

.country-name {
    font-weight: 800;
    color: #fff !important;
    margin-top: 15px;
}

.f-social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.s-icon {
    width: 45px;
    height: 45px;
    background-color: #d11b3d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.4s ease;
}

.s-icon:hover {
    transform: translateY(-5px);
    background-color: #fff;
    color: #d11b3d;
}

.footer-bottom-bar {
    background-color: #13213a;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-bar p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .f-head { justify-content: center; }
    .f-contact-list a { justify-content: center; }
    .f-social-icons { justify-content: center; }
}

.main-footer {
    background-color: #1a2c4e;
    color: #ffffff;
    padding: 40px 0 0; 
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; 
    gap: 20px; 
    padding-bottom: 30px; 
}

.f-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #cbd5e0;
    margin-bottom: 8px; 
}

.f-red-line {
    width: 25px; 
    height: 2px;
    background-color: #d11b3d;
}

.f-title-red {
    color: #d11b3d;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px; 
}

.f-contact-list li {
    margin-bottom: 8px;
}

.f-contact-list a {
    font-size: 0.95rem;
    gap: 10px;
}

.f-map-dots {
    max-width: 280px;
    opacity: 0.15;
    margin-bottom: 10px;
}

.location-details p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.s-icon {
    width: 35px; 
    height: 35px;
    font-size: 1rem;
}

.footer-bottom-bar {
    padding: 15px 0;
}

.footer-bottom-bar p {
    font-size: 0.75rem;
}

@media (max-width: 992px) {
    .footer-grid {
        gap: 30px;
        padding-bottom: 40px;
    }
    .f-title-red {
        margin-bottom: 15px;
    }
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-label {
    color: #e9d02d;
    font-size: 0.9rem;
    font-family: 'Montserrat', 'Cairo', sans-serif;
    margin-left: 10px; 
    font-weight: 500;
}

.social-icons a i {
    color: #d11b3d;
    font-size: 1rem;
    transition: 0.3s ease;
}

.social-icons a:hover i {
    color: var(--secondary); 
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .social-label {
        display: none;
    }
}

.page-banner {
    background: linear-gradient(rgba(26, 44, 78, 0.9), rgba(26, 44, 78, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.page-banner p {
    font-weight: 600;
    color: #cbd5e0;
}

.page-banner a {
    color: var(--primary);
    text-decoration: none;
}

.contact-full-area {
    padding-bottom: 100px;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

/* Sidebar Info */
.contact-sidebar {
    background: #f8fafc;
    padding: 40px;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.icon-box {
    font-size: 2rem;
    color: var(--primary);
}

.text-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.text-box p {
    color: #4a5568;
    line-height: 1.6;
    font-weight: 600;
}

/* Form Styles */
.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-container input, 
.contact-form-container textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    background: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.contact-form-container input:focus, 
.contact-form-container textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(209, 27, 61, 0.1);
}

.submit-btn-contact {
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    width: fit-content;
}

.submit-btn-contact:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Map */
.map-frame {
    line-height: 0;
    filter: grayscale(100%) invert(90%) contrast(90%); 
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .submit-btn-contact {
        width: 100%;
    }
}

.blog-list-area { padding: 80px 0; background: #f9fafb; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.blog-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.blog-card:hover { transform: translateY(-10px); }
.blog-img img { width: 100%; height: 230px; object-fit: cover; }
.blog-info { padding: 25px; }
.blog-info h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 15px; color: var(--secondary); line-height: 1.4; }
.blog-info p { color: #64748b; font-size: 0.95rem; margin-bottom: 20px; height: 60px; overflow: hidden; }
.read-more { color: var(--primary); font-weight: 800; text-decoration: none; }

.post-detail-container { padding: 120px 0 80px; }
.detail-title { font-size: 2.8rem; font-weight: 900; color: var(--secondary); margin-bottom: 20px; line-height: 1.2; }
.post-meta { margin-bottom: 40px; color: #94a3b8; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.content-body p { font-size: 1.15rem; line-height: 2; color: #334155; margin-bottom: 25px; text-align: justify; }
.content-body h3 { font-size: 1.7rem; color: var(--secondary); margin: 40px 0 20px; font-weight: 800; }
.content-body ul { margin-right: 25px; margin-bottom: 30px; }
.content-body li { margin-bottom: 12px; font-size: 1.1rem; color: #475569; }

.advice-box { 
    background: #fff5f6; 
    border-right: 6px solid var(--primary); 
    padding: 30px; 
    margin: 40px 0; 
    border-radius: 5px; 
}
.advice-box h4 { color: var(--primary); font-weight: 900; margin-bottom: 10px; }

.blog-detail-section {
    padding: 120px 0 80px;
    background: #fff;
}

.featured-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px 0;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.3;
}

.post-meta {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.post-meta span { margin-left: 20px; }

.post-body-content p {
    font-size: 1.15rem;
    line-height: 2.1;
    color: #334155;
    margin-bottom: 25px;
    text-align: justify;
}

.post-body-content h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin: 40px 0 20px;
    font-weight: 800;
}

.post-body-content ul, .post-body-content ol {
    margin-right: 30px;
    margin-bottom: 30px;
}

.post-body-content li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #475569;
}

.advice-box {
    background: #fffafa;
    border-right: 6px solid var(--primary);
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.advice-box h4 {
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-section-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.comment-form-custom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.comment-form-custom input, .comment-form-custom textarea {
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #f8fafc;
    outline: none;
}

.comment-form-custom .input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-red-blog {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 800;
    width: fit-content;
    cursor: pointer;
    transition: 0.3s;
}

.btn-red-blog:hover { background: var(--secondary); }

@media (max-width: 768px) {
    .featured-image { height: 250px; }
    .post-title { font-size: 1.8rem; }
    .comment-form-custom .input-grid { grid-template-columns: 1fr; }
}
@media (max-width: 992px) {
    .main-footer {
        padding: 40px 0 0;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
        padding: 0 20px 40px;
    }

    .f-head {
        justify-content: center;
        margin-bottom: 10px;
    }

    .f-title-red {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .f-contact-list a {
        justify-content: center; 
        flex-direction: row-reverse;
        gap: 10px;
        font-size: 1rem;
    }

    .f-contact-list li {
        text-align: center;
    }

    .map-bg-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .f-map-dots {
        max-width: 250px; 
        margin-bottom: 15px;
    }

    .location-details p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .f-social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .s-icon {
        width: 40px;
        height: 40px;
    }

    .footer-bottom-bar {
        padding: 20px 0;
    }

    .footer-bottom-bar p {
        font-size: 0.8rem;
    }
}
.contact-section-asb {
    padding: 100px 0;
    background-color: #fff;
    color: #1a2c4e;
}

.contact-grid-asb {
    display: grid;
    grid-template-columns: 1.2fr 1fr; 
    gap: 80px;
    align-items: start;
}

.head-asb {
    margin-bottom: 30px;
    text-align: right;
}

.sub-label {
    color: #64748b;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.head-asb h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.text-red { color: #d11b3d; }

.head-asb .desc {
    color: #64748b;
    line-height: 1.8;
    max-width: 500px;
}

.asb-form-actual {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.asb-form-actual input, 
.asb-form-actual textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background-color: #f8fafc;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.asb-form-actual input:focus, 
.asb-form-actual textarea:focus {
    border-color: #d11b3d;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(209, 27, 61, 0.1);
}

.form-footer {
    text-align: left; 
}

.btn-asb-red {
    background: #d11b3d;
    color: white;
    border: none;
    padding: 12px 50px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-asb-red:hover {
    background: #1a2c4e;
    transform: translateY(-2px);
}

.info-blocks-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.info-group-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-red-box {
    font-size: 2.2rem;
    color: #d11b3d;
    width: 50px;
}

.info-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.info-content p {
    color: #475569;
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-grid-asb {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .head-asb h2 { font-size: 2rem; }
    .form-footer { text-align: center; }
}


.advice-box {
    background: #fff5f6;
    border-right: 6px solid #d11b3d; 
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}
.advice-box h4 {
    color: #d11b3d;
    font-weight: 900;
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.detail-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a2c4e;
    line-height: 1.2;
}


.post-details { padding-top: 150px; background: #fff; }
.post-header-area { text-align: center; margin-bottom: 50px; }
.post-featured-img { width: 100%; height: 500px; object-fit: cover; border-radius: 10px; margin-top: 30px; }
.post-main-title { font-size: 3rem; font-weight: 900; color: #1a2c4e; line-height: 1.2; }
.post-meta-data { margin-top: 15px; color: #94a3b8; font-size: 0.9rem; }
.post-meta-data span { margin-left: 20px; }

.post-content-body { max-width: 900px; margin: auto; }
.post-content-body p { font-size: 1.15rem; line-height: 2.2; color: #334155; margin-bottom: 25px; text-align: justify; }
.stat-highlight-box p { font-size: 1.15rem; line-height: 2.2; color: white; margin-bottom: 25px; text-align: justify; }
.post-content-body h3 { font-size: 1.8rem; font-weight: 800; color: #1a2c4e; margin: 40px 0 20px; }
.post-content-body ul { margin-right: 30px; margin-bottom: 30px; }
.post-content-body li { margin-bottom: 15px; color: #475569; font-size: 1.1rem; }

.share-opinion-area { margin-top: 100px; padding-top: 50px; border-top: 1px solid #eee; max-width: 900px; margin-left: auto; margin-right: auto; }
.opinion-title { font-size: 1.8rem; font-weight: 900; color: #1a2c4e; text-align: center; }
.opinion-subtitle { text-align: center; color: #64748b; margin-bottom: 40px; font-family: 'Montserrat', 'Cairo', sans-serif; font-size: 0.9rem; }

.opinion-form { display: flex; flex-direction: column; gap: 20px; }
.field-group { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.field-group label { font-weight: 800; color: #1a2c4e; font-size: 0.95rem; }
.field-group input, .field-group textarea { width: 100%; padding: 15px; border: 1px solid #e2e8f0; border-radius: 4px; outline: none; transition: 0.3s; }
.field-group input:focus, .field-group textarea:focus { border-color: #d11b3d; }

.form-submit-container { text-align: left; margin-top: 20px; }
.submit-opinion-btn { background: #d11b3d; color: white; border: none; padding: 15px 40px; font-weight: 900; cursor: pointer; border-radius: 4px; font-size: 1.1rem; }
.submit-opinion-btn:hover { background: #1a2c4e; transform: translateY(-3px); }

@media (max-width: 768px) {
    .post-main-title { font-size: 1.8rem; }
    .post-featured-img { height: 250px; }
    .form-submit-container { text-align: center; }
}


.premium-footer {
    background-color: #1a2c4e; 
    color: #ffffff;
    padding: 60px 0 0;
    font-family: 'Cairo', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr; 
    gap: 30px;
    padding-bottom: 50px;
}

.f-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.f-red-line {
    width: 30px;
    height: 2px;
    background-color: #d11b3d;
}

.f-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #cbd5e0;
}

.f-main-title {
    color: #d11b3d;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 25px;
}

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

.s-btn {
    width: 40px;
    height: 40px;
    background-color: #d11b3d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
}

.s-btn:hover {
    background-color: #fff;
    color: #d11b3d;
    transform: translateY(-3px);
}

.map-wrapper {
    position: relative;
    text-align: center;
}

.map-dots-img {
    max-width: 100%;
    opacity: 0.15;
    margin-bottom: 20px;
}

.loc-list p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.loc-list i {
    color: #d11b3d;
}

.country-text {
    font-weight: 900 !important;
    font-size: 1.1rem !important;
    margin-top: 10px;
}

.f-contact-details {
    list-style: none;
    padding: 0;
}

.f-contact-details li {
    margin-bottom: 15px;
}

.f-contact-details a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    transition: 0.3s;
}

.f-contact-details a:hover {
    color: #d11b3d;
}

.f-contact-details i {
    color: #fff;
    font-size: 1.1rem;
}

.footer-copyright {
    background-color: #12213a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copyright p {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .f-head { justify-content: center; }
    .f-social-icons { justify-content: center; }
    .f-contact-details a { justify-content: center; }
}



.premium-footer {
    background-color: #1a2c4e;
    color: #ffffff;
    padding: 30px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr; 
    gap: 40px;
    padding-bottom: 30px;
}

.map-content-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03); 
    padding: 15px;
    border-radius: 8px;
}

.map-dots-mini {
    width: 180px;
    height: auto;
    opacity: 0.2;
}

.loc-list {
    text-align: right;
    flex: 1;
}

.loc-list p {
    font-size: 0.9rem;
    margin-bottom: 6px;
    white-space: nowrap; 
}

.f-main-title {
    font-size: 1.4rem; 
    margin-bottom: 15px;
}

.f-contact-details li {
    margin-bottom: 10px;
}

.f-contact-details a {
    font-size: 0.95rem;
}

.s-btn {
    width: 35px; 
    height: 35px;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .map-content-horizontal {
        flex-direction: column-reverse;
        text-align: center;
    }
    .loc-list { text-align: center; }
    .map-dots-mini { width: 150px; }
    .footer-grid { grid-template-columns: 1fr; }
}


[dir="ltr"] body {
    text-align: left;
}

[dir="ltr"] .sub-label .red-line, 
[dir="ltr"] .sub-heading .red-line {
    margin-left: 0;
    margin-right: 15px;
}

[dir="ltr"] .right-logo-box {
    right: auto;
    left: 40px;
}

[dir="ltr"] .diagonal-bg {
    right: auto;
    left: 0;
    clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 0% 100%);
}

[dir="ltr"] .article-list {
    padding-right: 0;
    padding-left: 20px;
}
[dir="ltr"] .article-list li {
    padding-right: 0;
    padding-left: 25px;
}
[dir="ltr"] .article-list li::before {
    right: auto;
    left: 0;
}

[dir="ltr"] .f-red-line {
    margin-right: 0;
    margin-left: 10px;
}



[dir="ltr"] body {
    text-align: left; 
}

[dir="ltr"] .contact-info {
    flex-direction: row;
}

[dir="ltr"] .social-label {
    margin-left: 0;
    margin-right: 10px; 
}

[dir="ltr"] .logo-text {
    text-align: left;
    padding-left: 12px;
    padding-right: 0;
    border-left: 2px solid #eee; 
    border-right: none;
}

[dir="ltr"] .hero-content {
    text-align: left !important; 
}

[dir="ltr"] .sub-heading {
    justify-content: flex-start !important;
}

[dir="ltr"] .sub-heading .red-line {
    margin-right: 10px; 
    margin-left: 0;
}

[dir="ltr"] .hero-btns {
    justify-content: flex-start !important;
}

[dir="ltr"] .hero-btns .btn {
    margin-right: 15px; 
    margin-left: 0;
}

[dir="ltr"] .company-intro {
    text-align: left;
}

[dir="ltr"] .intro-header .sub-label {
    justify-content: flex-start;
}

[dir="ltr"] .intro-content p {
    text-align: left; 
}

[dir="ltr"] .vision-2030-box {
    border-left: 5px solid var(--primary); 
    border-right: none;
    padding-left: 30px;
    padding-right: 20px;
}

[dir="ltr"] .cta-btn-link {
    margin-left: 15px;
    margin-right: 0;
}

[dir="ltr"] .service-box {
    text-align: left;
}

[dir="ltr"] .section-head {
    text-align: left;
}

[dir="ltr"] .f-contact-list a {
    justify-content: flex-start;
    flex-direction: row; 
}

[dir="ltr"] .f-head {
    justify-content: flex-start;
}

[dir="ltr"] .loc-list p i {
    margin-right: 8px;
    margin-left: 0;
}

[dir="ltr"] .map-content-horizontal {
    flex-direction: row; 
}

.lang-float {
    position: fixed;
    bottom: 110px;
    left: 30px;
    background-color: #e3c74b;
    color: #fff;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 10000;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.lang-float i {
    font-size: 20px;
}

.lang-float .lang-text {
    font-size: 10px;
    font-weight: 700;
    margin-top: 2px;
}

.lang-float:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

[dir="ltr"] .whatsapp-float {
    left: 30px;
    right: auto;
}

html[dir="ltr"], 
html[dir="ltr"] body, 
html[dir="ltr"] .post-details, 
html[dir="ltr"] .post-content-body {
    direction: ltr !important;
    text-align: left !important;
}

html[dir="ltr"] .article-list {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-left: 20px !important;
}

html[dir="ltr"] .article-list li {
    text-align: left !important;
    padding-right: 0 !important;
    padding-left: 25px !important; 
}

html[dir="ltr"] .article-list li::before {
    right: auto !important; 
    left: 0 !important;
    content: "•" !important;
}

html[dir="ltr"] .advice-box {
    text-align: left !important;
    border-right: none !important; 
    border-left: 6px solid #d11b3d !important;
    padding: 25px 30px !important;
}

html[dir="ltr"] .advice-box h4 {
    text-align: left !important;
    justify-content: flex-start !important; 
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

html[dir="ltr"] p, 
html[dir="ltr"] h1, 
html[dir="ltr"] h2, 
html[dir="ltr"] h3 {
    direction: ltr !important;
    text-align: left !important;
}

html[dir="ltr"] .post-content-body h3 {
    display: block !important;
    unicode-bidi: isolate !important;
}

.service-img-icon {
    width: 70px;          
    height: 70px;
    object-fit: contain;  
    margin-bottom: 25px;  
    display: inline-block;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.service-box:hover .service-img-icon {
    transform: scale(1.1);
}

.stat-highlight-box {
    background: #1a2c4e;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-right: 5px solid #d11b3d;
}
.stat-highlight-box i {
    color: #d11b3d;
    font-size: 1.5rem;
    margin-left: 10px;
}
.stat-highlight-box strong {
    font-size: 1.3rem;
    color: #fff;
}

.table-container {
    overflow-x: auto;
    margin: 40px 0;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.comparison-table th {
    background: var(--secondary);
    color: #fff;
    padding: 15px;
    text-align: right;
}
.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #475569;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) { background: #f8fafc; }

.category-tag {
    display: inline-block;
    background: #fff5f6;
    color: #d11b3d;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 10px;
    border: 1px solid rgba(209, 27, 61, 0.1);
}

/* AI Chat Widget Stylings */
.ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    font-family: 'Montserrat', 'Cairo', sans-serif;
}

.ai-chat-bubble {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1a2c4e 0%, #d11b3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(26, 44, 78, 0.3);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.ai-chat-bubble:hover {
    transform: scale(1.1) rotate(5deg);
}

.ai-chat-bubble .notification-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: #e3c74b;
    border: 2px solid white;
    border-radius: 50%;
}

.ai-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.ai-chat-window.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ai-chat-header {
    background: #1a2c4e;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-avatar {
    width: 40px;
    height: 40px;
    background: white;
    color: #1a2c4e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ai-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.ai-info span {
    font-size: 12px;
    opacity: 0.7;
}

.close-chat {
    cursor: pointer;
    font-size: 20px;
    opacity: 0.7;
    transition: 0.3s;
}

.close-chat:hover {
    opacity: 1;
}

.ai-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.msg.ai {
    background: white;
    color: #1a2c4e;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.msg.user {
    background: #d11b3d;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 15px;
    outline: none;
    font-size: 14px;
}

.send-msg-btn {
    width: 40px;
    height: 40px;
    background: #1a2c4e;
    color: white;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.send-msg-btn:hover {
    background: #d11b3d;
}

@media (max-width: 480px) {
    .ai-chat-window {
        width: calc(100vw - 40px);
        right: -10px;
        height: 80vh;
    }
}