﻿.partners-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-item {
    flex: 0 0 auto;
    width: 140px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding: 15px;
}

.logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.logo-item img {
    max-width: 95%;
    max-height: 65px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    width: auto !important;
    display: flex;
    justify-content: center;
}

.logo-item {
    width: 140px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding: 15px;
}

.partners-container::before,
.partners-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.partners-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

@media (max-width: 1200px) {
    .logo-item {
        width: 130px;
        height: 85px;
    }
}

@media (max-width: 992px) {
    .logo-item {
        width: 120px;
        height: 80px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .logo-item {
        width: 110px;
        height: 75px;
    }


    .partners-container::before,
    .partners-container::after {
        width: 60px;
    }
}

@media (max-width: 576px) {
    .logo-item {
        width: 100px;
        height: 70px;
        padding: 10px;
    }

    .partners-container::before,
    .partners-container::after {
        width: 40px;
    }
}


:root {
    --primary-color: #00339e;
    --dark-color: #202124;
    --light-color: #f8f9fa;
    --gray-color: #5f6368;
    --border-color: #dadce0;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

.about-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.about-hero {
    padding: 60px 0;
    background: linear-gradient(to left, #f5f7fa, #e4e8f0);
}

    .about-hero .container {
        display: flex;
        align-items: center;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.hero-heading-section {
    flex: 1;
    text-align: right;
    padding-right: 20px;
}

.hero-heading {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
}

    .about-text strong {
        color: var(--primary-color);
    }

.partners-section {
    padding: 60px 0;
    background: white;
}

.csg-w-8 {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.feature-title__large {
    display: block;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.services-intro {
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ourpres {
    padding: 60px 0;
    background: #f7fafc;
}

.csg-w-10 {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.map-wrapper {
    position: relative;
    background: white;
    margin: 0 auto 40px;
    height: 500px;
    
}

.map-img {
    width: 100%;
    height: 100%;
        display: block;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.map-wrapper {
    width: 100%;
    margin: auto;
}




.map-pin {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, -100%);
}

.pin-icon {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.map-pin:hover .pin-icon {
    color: var(--dark-red);
    transform: scale(1.3);
}

.map-pin.active .pin-icon {
    color: var(--dark-red);
    transform: scale(1.3);
    text-shadow: 0 0 10px rgba(52,168,83,0.6);
}

.pin-popup {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 150px;
    display: none;
    z-index: 20;
    text-align: center;
}

.map-pin:hover .pin-popup {
    display: block;
    animation: fadeIn 0.3s ease;
}

.pin-popup h4 {
    margin: 0 0 5px 0;
    color: var(--dark-color);
    font-size: 16px;
}

.pin-popup p {
    margin: 0;
    color: var(--gray-color);
    font-size: 14px;
}

.close-popup {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--gray-color);
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-dubai {
    top: 41%;
    left: 59%;
}

.pin-riyadh {
    top: 42%;
    left: 56%;
}

.pin-toronto {
    top: 24%;
    left: 30.5%;
}

.pin-noida {
    top: 47%;
    left: 64%;
}

.pin-amman {
    top: 35%;
    left: 54.5%;
}

.pin-manama {
    top: 40%;
    left: 57.5%;
}

.pin-muscat {
    top: 46%;
    left: 58.5%;
}

.pin-cairo {
    top: 40%;
    left: 53%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}


@media (max-width: 1399.5px) {
    #csg-map .pin-icon {
        font-size: 25px;
    }

    .pin-toronto {
        top: 24%;
        left: 27%;
    }

    .pin-manama {
        top: 40%;
        left: 58%;
    }

    .pin-riyadh {
        top: 42.5%;
        left: 57%;
    }

    .pin-dubai {
        top: 41%;
        left: 60%;
    }

    .pin-muscat {
        top: 45%;
        left: 59.5%;
    }

    .pin-noida {
        top: 47%;
        left: 66%;
    }

    .pin-cairo {
        top: 40%;
        left: 53.5%;
    }

    .pin-amman {
        top: 35.5%;
        left: 55%;
    }
}

@media (max-width: 1180px) {
    #csg-map .pin-icon {
        font-size: 22px;
    }

    .pin-toronto {
        top: 24%;
        left: 26%;
    }

    .pin-manama {
        top: 40%;
        left: 59%;
    }

    .pin-riyadh {
        top: 42.5%;
        left: 58%;
    }

    .pin-dubai {
        top: 41%;
        left: 61%;
    }

    .pin-muscat {
        top: 45%;
        left: 60.5%;
    }

    .pin-noida {
        top: 47%;
        left: 68%;
    }

    .pin-cairo {
        top: 40%;
        left: 54%;
    }

    .pin-amman {
        top: 35.5%;
        left: 55.5%;
    }
}
@media (max-width: 1100px) {
    #csg-map .pin-icon {
        font-size: 22px;
    }

    .pin-toronto {
        top: 24%;
        left: 24%;
    }

    .pin-manama {
        top: 40%;
        left: 60%;
    }

    .pin-riyadh {
        top: 44%;
        left: 59%;
    }

    .pin-dubai {
        top: 41.5%;
        left: 62%;
    }

    .pin-muscat {
        top: 46.5%;
        left: 61.5%;
    }

    .pin-noida {
        top: 47%;
        left: 69%;
    }

    .pin-cairo {
        top: 40%;
        left: 54%;
    }

    .pin-amman {
        top: 35.5%;
        left: 56%;
    }
}


@media (max-width: 992px) {
    #csg-map .pin-icon {
        font-size: 18px;
    }

    .pin-toronto {
        top: 24%;
        left: 28%;
    }

    .pin-manama {
        top: 41%;
        left: 58.5%;
    }

    .pin-riyadh {
        top: 44%;
        left: 58%;
    }

    .pin-dubai {
        top: 42%;
        left: 60.5%;
    }

    .pin-muscat {
        top: 47%;
        left: 60%;
    }

    .pin-noida {
        top: 49%;
        left: 66.5%;
    }

    .pin-cairo {
        top: 42%;
        left: 55%;
    }

    .pin-amman {
        top: 36%;
        left: 55%;
    }
}

@media (max-width: 767px) {
    #csg-map .pin-icon {
        font-size: 14px;
    }

    .pin-toronto {
        top: 26%;
        left: 24%;
    }

    .pin-manama {
        top: 43%;
        left: 60%;
    }

    .pin-riyadh {
        top: 46%;
        left: 58.5%;
    }

    .pin-dubai {
        top: 44%;
        left: 62.5%;
    }

    .pin-muscat {
        top: 48%;
        left: 61.5%;
    }

    .pin-noida {
        top: 50%;
        left: 69%;
    }

    .pin-cairo {
        top: 41%;
        left: 54.5%;
    }

    .pin-amman {
        top: 38%;
        left: 56%;
    }
}

@media (max-width: 574px) {
    #csg-map .pin-icon {
        font-size: 12px;
    }

    .pin-toronto {
        top: 29%;
        left: 24%;
    }

    .pin-manama {
        top: 43%;
        left: 60.5%;
    }

    .pin-riyadh {
        top: 46%;
        left: 59%;
    }

    .pin-dubai {
        top: 44%;
        left: 62.5%;
    }

    .pin-muscat {
        top: 48%;
        left: 61.5%;
    }

    .pin-noida {
        top: 50%;
        left: 69.5%;
    }

    .pin-cairo {
        top: 43%;
        left: 54%;
    }

    .pin-amman {
        top: 38%;
        left: 56%;
    }
}
@media (max-width: 450px) {
    #csg-map .pin-icon {
        font-size: 12px;
    }

    .pin-toronto {
        top: 36%;
        left: 24%;
    }

    .pin-manama {
        top: 45%;
        left: 60.5%;
    }

    .pin-riyadh {
        top: 46%;
        left: 59%;
    }

    .pin-dubai {
        top: 46%;
        left: 62.5%;
    }

    .pin-muscat {
        top: 49%;
        left: 61.5%;
    }

    .pin-noida {
        top: 50%;
        left: 69.5%;
    }

    .pin-cairo {
        top: 45%;
        left: 54%;
    }

    .pin-amman {
        top: 42%;
        left: 56%;
    }
}
.map-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

    .map-nav li {
        background: white;
        padding: 8px 20px;
        border-radius: 20px;
        cursor: pointer;
        transition: var(--transition);
        font-weight: 500;
        font-size: 14px;
    }

        .map-nav li:hover {
            background: var(--dark-red);
            color: white;
        }

        .map-nav li.active {
            background: var(--dark-red);
            color: white;
        }

#about-services {
    background-color: #001a50;
    color: #fff !important;
    margin-bottom: -3rem;
    padding-top: 0;
}


    #about-services .services-text h5 {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.75;
        margin-bottom: 0.5rem;
        animation: fadeInUp 0.6s ease-out 0.2s forwards;
    }

    #about-services .services-text h2 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin: 0.25rem 0 1rem;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out 0.4s forwards;
    }

    #about-services .services-text p {
        max-width: 500px;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out 0.6s forwards;
    }

.btn-teal {
    background-color: #33a89f;
    color: #fff;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.services-text {
    flex: 1;
    min-width: 300px;
    text-align: right;
    padding-right: 30px;
}




.btn-teal:hover {
    background-color: #28ada3;
    transform: translateY(-2px);
}

#about-services .services-icons {
    gap: 2rem;
}

#about-services .service-item:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

#about-services .service-item:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 1.2s forwards;
}

#about-services .service-item:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 1.4s forwards;
}

#about-services .service-item {
    text-align: center;
    flex: 1 1 100px;
    opacity: 0;
    transform: translateY(30px);
}


svg:not(:host).svg-inline--fa, svg:not(:root).svg-inline--fa {
    overflow: visible;
    box-sizing: content-box;
}

.svg-inline--fa {
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}


.icon-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

    .icon-circle::before {
        content: "";
        position: absolute;
        inset: 0;
        border: 3px dashed #fff;
        border-radius: 50%;
        animation: rotate 8s linear infinite;
        z-index: 0;
    }

@keyframes rotate {

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#about-services .service-item p {
    margin: 0;
    font-size: 0.95rem;
}


.service-item {
    text-align: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

    .icon-circle i {
        font-size: 1.8rem;
        color: var(--primary-color);
    }

.service-item:hover .icon-circle {
    transform: scale(1.1);
}

    .service-item:hover .icon-circle i {
        color: white;
    }

.service-item p {
    font-weight: 500;
}




.csg-contact-section {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    overflow: hidden;
}

.csg-card {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
}

.csg-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.csg-icon {
    width: 60px;
    height: 60px;
}

.csg-title h2 {
    font-size: 1.8rem;
    margin: 0;
}

.csg-title h3 {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

.csg-info {
    margin-bottom: 30px;
}

.csg-info-inner p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.csg-info-inner a {
    color: white;
    text-decoration: none;
}

.csg-info-inner strong {
    opacity: 1;
}

.csg-map {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

    .csg-map iframe {
        width: 100%;
        height: 250px;
        border: none;
    }

.csg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.csg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: opacity 1s ease;
}

    .csg-slide.active {
        opacity: 0.3;
    }

.csg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
/* Map */
.csg-map {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}




.csg-slide.active {
    opacity: 1;
}

.csg-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(1.1) grayscale(100%);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}


.csg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -2;
}

.csg-card {
    background: rgba(0, 25, 69, 0.4);
    padding: 2.5rem 3rem;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    animation: slideInLeft 1s ease-out;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.csg-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .csg-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0;
        font-family: 'Poppins', sans-serif;
    }

    .csg-title h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin: 0.2rem 0 0;
        text-transform: uppercase;
        color: #fff;
        font-family: 'Poppins', sans-serif;
    }

/*.csg-icon {
    width: 48px;
    height: 48px;
}*/

img, svg {
    vertical-align: middle;
}

@media (min-width: 992px) {
    .csg-info-inner {
        padding-left: 60px;
    }
}

.csg-info p {
    margin: 0.5rem 0;
    font-size: inherit;
    font-family: inherit;
    white-space: normal;
}

.csg-info-inner {
    padding-left: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.csg-map iframe {
    width: 100%;
    height: 240px;
    border: 0;
    filter: grayscale(100%) brightness(0.8);
}

.csg-map::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.csg-contact-section {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    max-height: 90vh;
    font-family: 'Poppins', sans-serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -6.5rem;
    padding-bottom: 10rem;
    padding-top: 10rem;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-top: 40px;   
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;    
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 1rem;
}

.hero-features li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.15);
    border-color: var(--accent-light);
}

.hero-features span {
    font-size: 1rem;
    font-weight: 500;
}

.hero-features i {
    color: var(--primary-red);
    font-size: 1.3rem;
    width: 20px;
}

@media (max-width: 992px) {
    .about-hero .container {
        flex-direction: column;
    }

    .hero-heading-section {
        text-align: center;
        padding-right: 0;
    }

    .row {
        flex-direction: column;
    }

    .services-text {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .logo-item {
        width: 100px;
        height: 70px;
        margin: 0 10px;
    }

    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem;
    }

    .feature-title__large {
        font-size: 1.8rem;
    }

    .services-text h2 {
        font-size: 1.8rem;
    }

    .services-icons {
        flex-direction: column;
        gap: 20px;
    }

    .map-nav {
        gap: 8px;
    }

        .map-nav li {
            padding: 6px 15px;
            font-size: 0.9rem;
        }

    .csg-card {
        padding: 30px 20px;
    }

    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .about-hero, .partners-section, .ourpres, #csg-map, #about-services, .csg-contact-section {
        padding: 40px 0;
    }

    .hero-heading {
        font-size: 1.8rem;
    }

    .about-text,
    .services-intro {
        font-size: 1rem;
    }

    .logo-item {
        width: 90px;
        height: 60px;
        margin: 0 8px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

        .icon-circle i {
            font-size: 1.5rem;
        }

    .map-wrapper {
        height: 300px;
    }

    .pin-icon {
        font-size: 22px;
    }

    .map-nav li {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}

/* ===== Top Search Bar Styles ===== */
.top-search-bar {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

    .top-search-bar::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 30s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.search-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.search-header {
    text-align: center;
    margin-bottom: 30px;
}

.search-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 15px;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

    .quick-link:hover {
        background: rgba(255,255,255,0.2);
        color: white;
        transform: translateY(-2px);
    }

.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    position: relative;
}

.search-icon {
    color: #667eea;
    font-size: 1.2rem;
    position: absolute;
    right: 25px;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}


.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 60px ;
    font-size: 1rem;
    color: #333;
    outline: none;
    width: 100%;
}


.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b4c 100%);
    border: none;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    margin-left: 5px;
}

.about-page[dir="rtl"] .search-btn {
    margin-left: 0;
    margin-right: 5px;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.search-btn i {
    transition: transform 0.3s ease;
}

.search-btn:hover i {
    transform: translateX(5px);
}

.about-page[dir="rtl"] .search-btn:hover i {
    transform: translateX(-5px);
}

.search-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.suggestion-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

    .suggestion-item:hover {
        background: rgba(255,255,255,0.15);
        transform: translateY(-3px);
        border-color: rgba(255,255,255,0.3);
    }

    .suggestion-item i {
        font-size: 2rem;
        color: white;
        opacity: 0.9;
    }

.suggestion-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.suggestion-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-search-bar {
        padding: 30px 0;
    }

    .search-title {
        font-size: 1.8rem;
    }

    .quick-links {
        gap: 10px;
    }

    .quick-link {
        font-size: 0.9rem;
        padding: 4px 12px;
    }

    .search-container {
        flex-wrap: wrap;
    }

    .search-input {
        padding: 15px 45px 15px 20px;
    }

    .about-page[dir="rtl"] .search-input {
        padding: 15px 20px 15px 45px;
    }

    .search-btn {
        width: calc(100% - 10px);
        margin: 0 5px 10px;
        justify-content: center;
    }

    .search-icon {
        right: 20px;
    }

    .about-page[dir="rtl"] .search-icon {
        right: auto;
        left: 20px;
    }

    .search-suggestions {
        grid-template-columns: 1fr;
    }
}

/* Animation for search bar */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-search-bar {
    animation: slideDown 0.6s ease-out forwards;
}

