:root {
    --primary-overlay: rgba(30, 60, 100, 0.92);
    --gold-color: #b08d55;
    /* Darkened for better contrast (was #c5a065) */
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: #f0f0f0;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Removed background-attachment: fixed to prevent forced reflows */
}

.slide-1 {
    background-image: url('/images/inner-hero-bg.jpg');
}

.slide-2 {
    background-image: url('/images/HID.jpg');
    animation: crossFade 5s infinite alternate ease-in-out;
}

.slide-3 {
    background-image: url('/images/account.jpg');
    animation: crossFade 10s infinite alternate ease-in-out;
}

.slide-4 {
    background-image: url('/images/computer.jpg');
    animation: crossFade 15s infinite alternate ease-in-out;
}

.slide-5 {
    background-image: url('/images/slider-5.jpg');
    animation: crossFade 17s infinite alternate ease-in-out;
}

@keyframes crossFade {

    0%,
    45% {
        opacity: 0;
    }

    55%,
    100% {
        opacity: 1;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(20 45 85 / 66%), rgba(35, 75, 125, 0.9));
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    color: var(--text-white);
}

.main-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgb(197 165 114 / var(--tw-bg-opacity, 1));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Actions */
.actions-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.action-btn.secondary {
    background-color: var(--gold-color);
    color: #1a3a60;
    /* Dark blue text for contrast */
}

.action-btn.secondary:hover {
    background-color: #d4b075;
    transform: translateY(-2px);
}

.action-btn.primary.white-btn {
    background-color: white;
    color: #1a3a60;
}

.action-btn.primary.white-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .actions-container {
        flex-direction: column;
        width: 100%;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }
}



.instruction-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 2.5rem 0;
}

.instruction-card {
    background: white;
    color: #333;
    border-radius: 50px 15px 50px 15px;
    padding: 25px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex: 1;
    min-width: 150px;
    box-shadow: 0 8px 25px rgba(26, 91, 124, 0.1);
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.instruction-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #1a5b7c, #28a745);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.instruction-card i {
    display: block;
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a5b7c, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instruction-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(26, 91, 124, 0.2);
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}


/* Hero */
.hero-section {
    position: relative;
    height: 217px;
    min-height: 618px;
    overflow: hidden
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    text-align: right;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content .container {
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 40px;
}

.hero-buttons .btn {
    margin-left: 15px;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary {
    background-color: rgb(197 165 114 / var(--tw-bg-opacity, 1));
    border-color: rgb(197 165 114 / var(--tw-bg-opacity, 1));
}

.btn-primary:hover {
    background-color: #0A1363;
    border-color: var(--primary-color);
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/*  Map */
.logistics-map {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatAnimation 3s ease-in-out infinite;
    /*    right: -270px;*/
}

.logistics-map img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Customer Rating */
.customer-rating {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: fit-content;
}

.rating-images {
    display: flex;
    margin-left: 20px;
}

.rating-images img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -15px;
}

.rating-text h3 {
    font-size: 1.1rem;
    margin: 0;
}

.rating-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Statistics */
.statistics-section {
    background: #0a136380;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    color: white;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 15px;
}

/* Solutions */
.solutions-section {
    padding: 100px 0;
    background-color: white;
    direction: rtl;
}

.section-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-right: 15px;
}

.content-block h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0A1363;
    margin-bottom: 25px;
    line-height: 1.2;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Services */
.services-grid {
    margin-top: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item i {
    width: 24px;
    height: 24px;
    background-color: #0A1363;
    color: white;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.service-item span {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Image */
.image-block {
    position: relative;
    padding-right: 30px;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Transport Services */
.transport-services {
    padding: 100px 0;
    background-color: white;
    direction: rtl;
}

.section-header {
    margin-bottom: 50px;
}

.service-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0A1363;
}

/* Services Gallery */
.services-gallery {
    display: flex;
    width: 100%;
    height: 400px;
    gap: 10px;
}

.service-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    transition: opacity 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgb(197 165 114 / var(--tw-bg-opacity, 1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin: 0;
}

.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.know-more-btn i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

/* ??? hover ????? ??????? ????????? */
.know-more-btn:hover {
    color: transparent;
}

.know-more-btn:hover i {
    opacity: 0;
}


/* Hover */
.service-card:hover {
    flex: 2;
    filter: grayscale(100%);
}

.service-card:hover .service-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.service-card:hover .service-content p {
    opacity: 1;
    max-height: 200px;
    margin: 10px 0;
}

/* Workflow */
.workflow-section {
    padding: 100px 0;
    background-color: white;
    direction: rtl;
}

.workflow-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0A1363;
    margin-bottom: 50px;
    line-height: 1.2;
}

/* Workflow Steps */
.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.workflow-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

/* Step Icon */
.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.icon-circle {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 30px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Step Arrow */
.step-arrow {
    color: var(--secondary-color);
    font-size: 20px;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 100px;
    height: 2px;
    background-color: #eee;
    transform: translate(50%, -50%);
    z-index: -1;
}

/* Content */
.workflow-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.workflow-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

/* Hover Effects */
.workflow-item:hover .icon-circle {
    /*    background-color: var(--secondary-color);*/
    transform: scale(1.2);
}

/*.workflow-item:hover .icon-circle i {
    color: white;
}*/

/* Container Types Section */
.container-types-section {
    padding: 80px 0;
    position: relative;
    background-image: url('https://images.pexels.com/photos/1427541/pexels-photo-1427541.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.container-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(var(--gold-color, #c5a065), rgba(0, 0, 0, 0.85));
}

.container-types-section .container {
    position: relative;
    z-index: 1;
}

.container-types-section .section-header h2 {
    color: white;
}

.container-types-section .section-tag {
    /*    background: rgba(255, 255, 255, 0.1);*/
    color: white;
}

.container-card-wrapper {
    position: relative;
    height: 100%;
    padding: 15px;
}

.container-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 5px;
    opacity: 0.5;
    transform: rotate(-4deg);
    transition: all 0.3s ease;
}

.container-card-wrapper:hover .container-card-bg {
    transform: rotate(-5deg) scale(1.02);
    opacity: 0.20;
}

.container-card {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 5px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: right;
}

.container-card:hover {
    /*    transform: translateY(-5px);*/
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.container-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.container-icon i {
    font-size: 24px;
    color: white;
}

.container-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.container-card .description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.container-specs {
    /*    background: rgba(2, 95, 112, 0.05);*/
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.container-specs h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

.spec-item span {
    font-size: 0.9rem;
    color: #444;
}

.capacity-info {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.capacity-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.capacity-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

.capacity-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
}

.container-features {
    margin-bottom: 25px;
}

.container-features h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.container-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #444;
}

.container-features li i {
    color: var(--secondary-color);
    font-size: 14px;
}

.container-card .book-now {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    margin-top: auto;
}

/* Responsive Container */
@media (max-width: 1200px) {
    .container-card {
        padding: 25px;
    }

    .container-card-wrapper {
        padding: 12px;
    }
}

@media (max-width: 991px) {
    .container-types-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .container-card {
        margin-bottom: 30px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container-card-wrapper {
        padding: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container-types-section {
        padding: 40px 0;
    }

    .container-card {
        padding: 20px;
    }

    .specs-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .capacity-info {
        flex-direction: column;
        gap: 10px;
    }

    .container-card-wrapper {
        padding: 8px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .logistics-map {
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-content .container {
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .logistics-map {
        margin: 40px 0;
    }

    .logistics-map img {
        max-width: 80%;
        margin: 0 auto;
    }

    .statistics-section {
        margin: 30px 0;
        padding: 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .solutions-section {
        padding: 70px 0;
    }

    .content-block h2 {
        font-size: 2.3rem;
    }

    .image-block {
        margin-top: 50px;
        padding-right: 0;
    }

    .image-block::before {
        display: none;
    }

    .transport-services {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

    .services-gallery {
        height: 350px;
    }

    .workflow-section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

    .workflow-steps {
        gap: 15px;
    }

    .step-arrow::before {
        width: 60px;
    }
}

/* Hide know-more-btn on screens smaller than 900px */
@media (max-width: 900px) {
    .know-more-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 53%;
        margin: -2px 112px 10px 0;
    }

    .customer-rating {
        flex-direction: column;
        text-align: center;
    }

    .rating-images {
        margin: 0 0 15px 0;
        justify-content: center;
    }

    .logistics-map {
        margin: 30px 0;
    }

    .logistics-map img {
        max-width: 100%;
    }

    .statistics-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        flex: 0 0 40%;
    }

    .stat-divider {
        display: none;
    }

    .content-block h2 {
        font-size: 2rem;
    }

    .service-item {
        padding: 12px;
    }

    .service-item span {
        font-size: 0.9rem;
    }

    .services-gallery {
        flex-direction: column;
        height: auto;
    }

    .service-card {
        height: 250px;
        flex: none;
    }

    .service-content {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }

    .service-icon {
        transform: translateY(0);
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        opacity: 0;
        max-height: 0;
    }

    .service-card:hover .service-content p {
        opacity: 1;
        max-height: 200px;
    }

    .service-content {
        padding: 20px;
        gap: 10px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .know-more-btn {
        font-size: 0.8rem;
        display: none;
    }

    .workflow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .workflow-item {
        width: 100%;
        max-width: 300px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .step-arrow::before {
        width: 40px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
    }

    .contact-info a {
        margin-left: 10px;
    }

    .social-links a {
        margin-right: 10px;
    }

    .hero-content .container {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .statistics-section {
        padding: 15px;
    }

    .stat-item {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .stat-item:last-child {
        margin-bottom: 0;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .solutions-section {
        padding: 50px 0;
    }

    .content-block h2 {
        font-size: 1.8rem;
    }

    .service-item {
        padding: 10px;
    }

    .transport-services {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        height: 200px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .workflow-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 24px;
    }

    .workflow-item h3 {
        font-size: 1.1rem;
    }
}

/* Airplane Path Animation */
.airplane-path {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 200px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.path-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.path-line {
    fill: none;
    stroke: #eee;
    stroke-width: 2;
    stroke-dasharray: 8 4;
}

.moving-airplane {
    position: absolute;
    top: 100px;
    right: 0;
    transform: translateY(-50%) rotate(-10deg);
    animation: flyPlane 8s linear infinite;
}

.moving-airplane i {
    font-size: 24px;
    color: var(--secondary-color);
    transform: rotate(180deg);
}

@keyframes flyPlane {
    0% {
        right: -50px;
        transform: translateY(-50%) rotate(-10deg);
    }

    5% {
        transform: translateY(50%) rotate(-10deg);
    }

    10% {
        transform: translateY(20%) rotate(-10deg);
    }

    20% {
        transform: translateY(10%) rotate(-10deg);
    }

    30% {
        transform: translateY(-100%) rotate(-10deg);
    }

    45% {
        transform: translateY(-50%) rotate(-10deg);
    }

    50% {
        transform: translateY(-50%) rotate(-20deg);
    }

    55% {
        transform: translateY(-50%) rotate(-10deg);
    }

    70% {
        transform: translateY(50%) rotate(-10deg);
    }

    100% {
        right: calc(100% + 50px);
        transform: translateY(-50%) rotate(-10deg);
    }
}

.workflow-item {
    /*    background-color: rgba(255, 255, 255, 0.9);*/
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
    position: relative;
}

/* Responsive path */
@media (max-width: 768px) {
    .airplane-path {
        display: none;
    }
}

/* Values */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.value-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    background-color: #0A1363;
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.2);
}

.value-card:hover .value-content h3,
.value-card:hover .value-content p {
    color: white;
}

.value-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgb(197 165 114 / var(--tw-bg-opacity, 1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 32px;
    color: white;
}

.value-content {
    position: relative;
    z-index: 1;
}

.value-content h3 {
    color: #0A1363;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.value-bg-icon {
    position: absolute;
    left: -20px;
    bottom: -20px;
    font-size: 120px;
    color: rgba(2, 95, 112, 0.03);
    transform: rotate(-15deg);
    transition: all 0.3s ease;
}

.value-card:hover .value-bg-icon {
    transform: rotate(0deg) scale(1.1);
    color: rgba(2, 95, 112, 0.05);
}

.value-card:hover .icon-wrapper {
    transform: rotate(360deg);
}

/* Responsive Values Section */
@media (max-width: 1200px) {
    .values-grid {
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }

    .values-grid {
        gap: 15px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper i {
        font-size: 28px;
    }

    .value-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 25px 20px;
    }
}

/* Help Section */
.help-section {
    position: relative;
    padding: 60px 0;
    background-image: url('https://images.pexels.com/photos/1554646/pexels-photo-1554646.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.help-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 26, 46, 0.95) 0%, rgba(0, 26, 46, 0.85) 100%);
    z-index: 1;
}

.help-section .container {
    position: relative;
    z-index: 2;
}

.support-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-circle {
    width: 220px;
    height: 220px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.badge-circle h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: white;
}

.badge-circle p {
    font-size: 1.1rem;
    margin: 10px 0 0;
    line-height: 1.4;
    color: white;
}

.help-content {
    position: relative;
    padding: 30px;
}

.help-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.help-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-btn {
    background-color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #e67604;
    transform: translateX(-5px);
}

.contact-btn i {
    position: relative;
    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }
}

/* Responsive animations */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 20px;
        left: 20px;
    }

    .icon-item {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    min-height: 700px;
}

.contact-wrapper {
    display: flex;
    min-height: 700px;
}

.contact-form-side {
    width: 50%;
    padding: 60px;
    display: flex;
    align-items: center;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.form-container h2 {
    color: #0A1363;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #0A1363;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(2, 95, 112, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    position: relative;
    width: 100%;
    padding: 16px 30px;
    background: #0A1363;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    opacity: .9;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

/* Map Side */
.contact-map-side {
    width: 50%;
    position: relative;
}

.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-info-overlay {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 10;
    width: 400px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #0A1363;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    color: white;
    font-size: 1.2rem;
}

.info-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p,
.info-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.info-content a:hover {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-form-side {
        padding: 60px;
    }

    .contact-info-overlay {
        width: 350px;
        right: 30px;
    }
}

@media (max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form-side,
    .contact-map-side {
        width: 100%;
    }

    .contact-map-side {
        height: 500px;
    }

    .contact-info-overlay {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        transform: translateY(40px);
        top: 0;
    }
}

@media (max-width: 768px) {
    .contact-form-side {
        padding: 40px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container h2 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-info-overlay {
        position: relative;
        transform: none;
        top: auto;
        right: auto;
        left: auto;
        margin: 20px;
    }

    .contact-map-side {
        height: 700px;
    }
}

/* Help Section Animations */
.animated-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: floatCircle 20s linear infinite;
}

.circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    left: 10%;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 400px;
    height: 400px;
    top: 40%;
    right: -200px;
    animation-delay: -5s;
}

.circle:nth-child(3) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 30%;
    animation-delay: -10s;
}

@keyframes floatCircle {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(100px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.floating-icons {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    display: flex;
    gap: 20px;
}

.icon-item {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: floatIcon 3s ease-in-out infinite;
}

.icon-item:nth-child(2) {
    animation-delay: -1s;
}

.icon-item:nth-child(3) {
    animation-delay: -2s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.help-section {
    overflow: hidden;
}

.help-content {
    position: relative;
    padding: 10px;
}

.contact-btn i {
    position: relative;
    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }
}

/* Responsive animations */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 20px;
        left: 20px;
    }

    .icon-item {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: var(--light-color);
}

.news-section .section-tag {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.news-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.3;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    /*    background: white;*/
    border-radius: 5px;
    overflow: hidden;
    /*    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);*/
    transition: all 0.3s ease;
}

/* Removed empty hover ruleset */

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.hover-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-card:hover .hover-arrow {
    opacity: 1;
}

.news-content {
    padding: 25px;
}

.news-tag {
    display: inline-block;
    padding: 6px 15px;
    /*    background: var(--primary-color);*/
    border: 1px solid var(--gold-color);
    color: var(--gold-color);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.news-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 2.8em;
}

.news-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: var(--secondary-color);
}

/* Responsive News Section */
@media (max-width: 1200px) {
    .news-grid {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }

    .news-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-section h2 {
        font-size: 1.8rem;
    }

    .news-content {
        padding: 20px;
    }
}



.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 5px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 25px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input[type="radio"]:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: #ffc107;
}



/* ????? ?????? ?????? ???? ??????? ????? ?? 800px */
@media (max-width: 800px) {

    /* ????? ???? ?????? ??? ?????? */
    .service-card:hover {
        flex: 1 !important;
        filter: none !important;
    }

    /* ????? ????? ??????? ??? ?????? */
    .service-card:hover .service-overlay {
        background-color: rgba(0, 0, 0, 0.4) !important;
    }

    /* ??? ???? ?????? */
    .service-content p {
        opacity: 1 !important;
        max-height: none !important;
        margin: 10px 0 !important;
    }

    /* ????? ?? ????? ???? ??? ??????? */
    .service-content h3 {
        transform: translateY(0) !important;
    }

    /* ??? ??? flex ?? ?????? */
    .services-gallery {
        height: auto;
    }

    .service-card {
        height: 300px;
    }
}



/* overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    z-index: 1000;
}

/* popup box */
.popup-content {
    background: #fff;
    width: 90%;
    max-width: 900px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: fadeIn .3s ease;
}

.large-popup {
    max-width: 1100px;
}

.popup-header h2 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
}

/* close button */
.popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 37px;
    height: 38px;
    background-color: #6c757d;
    color: #fff;
    border: none;
    border-radius: 26%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); */
    transition: all 0.3s ease;
}



/* fieldset */
.form-fieldset {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
}

.form-fieldset legend {
    padding: 0 10px;
    font-weight: bold;
}

/* grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* inputs */
.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 8px;
}

.add-btn {
    background: #eee;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0A1363;
    border-color: var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ????? ????? */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ????? ????? ?? */
.popup-content {
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* ?? ??????? */
.close-popup-btn {
    background: red;
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 5px 12px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== ???? ????? ???? ????? ===== */
:root {
    --primary-blue: #0A1363;
    --secondary-gold: #cda34f;
    --accent-blue: #3498db;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* ===== ????? ????????? ????? ????? ????? ===== */
.team-carousel-section {
    padding: 14px 0;
    overflow: hidden;
    direction: rtl;
    /* ????? ??????? ??????? ???? ????? */
    overflow-y: visible !important;
}

.team-carousel-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.team-carousel-section .section-header h2 {
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.team-carousel-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 120px;
    height: 4px;
    border-radius: 2px;
}

.team-carousel-section .section-header p {
    color: var(--dark-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ????? ????????? ??????? */
.team-carousel {
    --items: 6;
    --carousel-duration: 40s;
    --carousel-width: min(90vw, 1200px);
    --carousel-item-width: 300px;
    --carousel-item-height: 385px;
    --carousel-item-gap: 2rem;
    --clr-cta: var(--secondary-gold);
    position: relative;
    width: var(--carousel-width);
    height: var(--carousel-item-height);
    margin: 0 auto;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10% 70%, transparent);
}

/* ===== ????? ??????? (mask) ===== */
/* ?? ????? ??? ?????: */
/* .team-carousel[mask] {
    mask-image: linear-gradient( to right, transparent, black 10% 90%, transparent );
} */

/* ??? ??????? ??????? */
.team-carousel:hover .team-carousel-item {
    animation-play-state: paused;
}

/* ????? ????? ????????? */
.team-carousel-item {
    position: absolute;
    top: 0;
    left: calc(100% + var(--carousel-item-gap));
    width: var(--carousel-item-width);
    height: var(--carousel-item-height);
    display: grid;
    grid-template-rows: 200px auto 1fr auto;
    gap: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding-block-end: 1.5rem;
    border-radius: 20px;
    background: var(--white);
    color: var(--dark-gray);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.team-carousel-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-gold);
}

/* ???? ????? */
.team-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: transform 0.8s ease;
    filter: grayscale(20%);
}

.team-carousel-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* ??????? ????? */
.team-carousel-item>*:not(img) {
    padding: 0 1.5rem;
}

.team-carousel-info {
    grid-row: span 2;
    display: grid;
    grid-template-rows: subgrid;
}

.team-carousel-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    padding-block: 1rem 0.5rem;
    margin: 0;
    color: var(--primary-blue);
    text-align: center;
}

.team-carousel-role {
    color: var(--secondary-gold);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
}

.team-carousel-item p {
    margin: 0;
    line-height: 1.7;
    color: var(--dark-gray);
    font-size: 0.95rem;
    text-align: right;
    padding: 0 0.5rem;
    text-align: center;
}

/* ??????? ?????????? */
.team-carousel-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 1.5rem;
}

.team-carousel-social a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--primary-blue);
    transition: var(--transition);
    font-size: 1.2rem;
}

.team-carousel-social a:hover {
    background: var(--secondary-gold);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
}

@keyframes teamMarquee {
    100% {
        transform: translateX(calc((var(--items) * (var(--carousel-item-width) + var(--carousel-item-gap))) * -1));
    }
}

/* ????? ?????? ??? ??????? */
.team-carousel-item:nth-child(1) {
    --i: 0;
}

.team-carousel-item:nth-child(2) {
    --i: 1;
}

.team-carousel-item:nth-child(3) {
    --i: 2;
}

.team-carousel-item:nth-child(4) {
    --i: 3;
}

.team-carousel-item:nth-child(5) {
    --i: 4;
}

.team-carousel-item:nth-child(6) {
    --i: 5;
}

.team-carousel-item {
    will-change: transform;
    animation-name: teamMarquee;
    animation-duration: var(--carousel-duration);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-delay: calc(var(--carousel-duration) / var(--items) * 1 * var(--i) * -1);
}

/* ?? ??? ?????? */
.team-view-more {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.team-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(10, 19, 99, 0.2);
}

.team-view-more-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 19, 99, 0.3);
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
}

.team-view-more-btn i {
    transition: transform 0.3s ease;
}

.team-view-more-btn:hover i {
    transform: translateX(-5px);
}

/* ????? ?????? */
.team-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.team-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-gold), transparent);
    opacity: 0.1;
}

.team-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.team-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    background: linear-gradient(135deg, var(--accent-blue), transparent);
}

/* ????? ?????? */
.team-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.team-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.team-control-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.team-control-btn:active {
    transform: scale(0.95);
}

/* ??????? ?? ??????? ???????? */
@media (max-width: 1200px) {
    .team-carousel {
        --carousel-width: min(95vw, 1000px);
        --carousel-item-width: 280px;
        --carousel-item-height: 385px;
    }
}

@media (max-width: 992px) {
    .team-carousel-section {
        padding: 80px 0;
    }

    .team-carousel-section .section-header h2 {
        font-size: 2.5rem;
    }

    .team-carousel {
        --carousel-duration: 50s;
        --carousel-item-width: 260px;
        --carousel-item-height: 385px;
    }
}

@media (max-width: 768px) {
    .team-carousel-section {
        padding: 60px 0;
    }

    .team-carousel-section .section-header h2 {
        font-size: 2.2rem;
    }

    .team-carousel {
        --carousel-duration: 60s;
        --carousel-item-width: 340px;
        --carousel-item-height: 385px;
        --carousel-item-gap: 1.5rem;
    }

    .team-carousel-item h3 {
        font-size: 1.3rem;
    }

    .team-carousel-role {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .team-carousel {
        --carousel-item-width: 320px;
        --carousel-item-height: 385px;
        --carousel-item-gap: 1rem;
    }

    .team-carousel-item {
        grid-template-rows: 180px auto 1fr auto;
    }

    .team-controls {
        display: none;
    }
}

/* ??????? ?????? */
.team-carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-carousel-item:hover::before {
    opacity: 1;
}

/* ?????? ?????? */
.team-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.team-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(10, 19, 99, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.team-indicator.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.team-indicator:hover {
    background: var(--secondary-gold);
}

/* ===== ????? CSS ???? ??????? ????? ????? ?? ===== */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

.team-carousel-section {
    overflow: visible !important;
}


body {
    font-family: 'Cairo', sans-serif;
    background-color: white;
}

/* Partners Marquee Consolidated */
.partners-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 30px 0;
    white-space: nowrap;
    background: white;
}

.partners-track {
    display: inline-flex !important;
    gap: 60px;
    width: max-content;
    animation: scroll-partners-infinite 40s linear infinite;
    direction: ltr !important;
    /* Force LTR for consistent animation math */
}

.partner-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin: 0 10px;
}

.partner-logo:hover {
    transform: scale(1.1);
}

@keyframes scroll-partners-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}





/* ??????? ??? ???? ????? */
.our-team {
    padding: 80px 0;
    position: relative;
}

.our-team .section-header {
    margin-bottom: 50px;
}

.our-team .section-header h2 {
    font-size: 2.5rem;
    color: #0A1363;
    margin-bottom: 15px;
    font-weight: 700;
}

.our-team .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* ??????? ???? ?????? */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 20px 0;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: #3498db;
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-role {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
    font-size: 1rem;
}

.team-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ??????? ???????? */
.team-swiper {
    padding: 20px 0 50px;
}

.swiper-slide {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #3498db;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #3498db;
    color: white;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #bdc3c7;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #3498db;
}

/* ??????? ?? ??????? ???????? */
@media (max-width: 768px) {
    .our-team {
        padding: 60px 0;
    }

    .our-team .section-header h2 {
        font-size: 2rem;
    }

    .team-image {
        height: 250px;
    }

    .team-content {
        padding: 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .our-team .section-header h2 {
        font-size: 1.8rem;
    }

    .team-image {
        height: 220px;
    }
}





.our-goals {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a2e5f;
    font-family: 'Cairo', sans-serif;
}

/* Two-Block Goals Layout */
.goals-container-new {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    direction: rtl;
}

.goals-block {
    flex: 1;
    background: #f4f6f9;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.goal-item-alt {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    justify-content: flex-start;
    text-align: right;
}

.goal-content-alt {
    flex: 1;
}

.goal-content-alt h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0A1363;
    margin-bottom: 8px;
    line-height: 1.6;
    font-family: 'Cairo', sans-serif;
}

.goal-content-alt p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.goal-number-alt {
    width: 36px;
    height: 36px;
    background: #cda34f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Responsive side-by-side to stack */
@media (max-width: 991px) {
    .goals-container-new {
        flex-direction: column;
    }

    .goals-block {
        padding: 30px 20px;
    }
}




/* ========================================= */
/* TESTIMONIALS SECTION - PREMIUM DESIGN    */
/* ========================================= */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a065' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.testimonials-section .section-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #0A1363 0%, #1a3a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.testimonials-section .section-header h3 {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Swiper Container */
.testimonials-swiper {
    padding: 20px 10px 40px;
    position: relative;
    overflow: visible;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
    /* Stretch to have equal height cards for a more organized look */
}

.testimonials-swiper .swiper-slide {
    height: auto;
    /* Allow swiper-slide to be sized by the wrapper's stretch */
    display: flex;
}

/* Pagination Styling - Outside Container */
#testimonials-pagination {
    position: relative !important;
    bottom: auto !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    margin: 38px auto 20px !important;
    /* LARGE gap between cards and dots */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 10;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(26, 58, 95, 0.3);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 20px;
    background: linear-gradient(135deg, #c5a065 0%, #d4af37 100%);
}

/* Testimonial Card - Premium Design */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    /* Ensure all cards are the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c5a065, #d4af37, #c5a065);
    border-radius: 24px 24px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(197, 160, 101, 0.1);
}

/* Header */
.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 15px;
}

.user-info h4 {
    font-size: 1.25rem;
    color: #0A1363;
    margin-bottom: 5px;
    font-weight: 700;
}

.user-info p {
    color: #c5a065;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Quote Icon */
.quote-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #c5a065 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(197, 160, 101, 0.4);
}

.quote-icon i {
    color: #fff;
    font-size: 1.2rem;
}

/* Content */
.testimonial-content {
    flex: 1;
    margin: 15px 0;
}

.testimonial-content blockquote,
.testimonial-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Rating */
.testimonial-rating {
    text-align: left;
    direction: ltr;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 3px;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

/* CTA Button */
.testimonials-section .btn-primary {
    background: linear-gradient(135deg, #0A1363 0%, #1a3a5f 100%);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(10, 19, 99, 0.2);
}

.testimonials-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 19, 99, 0.35);
    background: linear-gradient(135deg, #1a3a5f 0%, #0A1363 100%);
}

/* ========================================= */
/* RESPONSIVE BREAKPOINTS                    */
/* ========================================= */

/* Tablets */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section .section-header h2 {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 25px;
        min-height: 280px;
    }
}

/* Large Phones */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-section .section-header h2 {
        font-size: 1.9rem;
    }

    .testimonials-section .section-header h3 {
        font-size: 1rem;
        padding: 0 15px;
    }

    .testimonial-card {
        padding: 22px;
        min-height: 260px;
        border-radius: 18px;
    }

    .user-info h4 {
        font-size: 1.1rem;
    }

    .user-info p {
        font-size: 0.85rem;
    }

    .quote-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .quote-icon i {
        font-size: 1rem;
    }

    .testimonial-content blockquote,
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        display: none;
    }
}

/* Small Phones */
@media (max-width: 576px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section .section-header h2 {
        font-size: 1.6rem;
    }

    .testimonials-section .section-header h3 {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 240px;
        border-radius: 16px;
    }

    .testimonial-header {
        flex-direction: row;
        gap: 12px;
    }

    .quote-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .quote-icon i {
        font-size: 0.9rem;
    }

    .user-info h4 {
        font-size: 1rem;
    }

    .testimonial-content blockquote,
    .testimonial-content p {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    .testimonial-rating i {
        font-size: 1rem;
    }

    .testimonials-section .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Extra Small - Down to 350px */
@media (max-width: 400px) {
    .testimonials-section {
        padding: 35px 0;
    }

    .testimonials-section .section-header {
        margin-bottom: 25px !important;
    }

    .testimonials-section .section-header h2 {
        font-size: 1.4rem;
    }

    .testimonials-section .section-header h3 {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 16px;
        min-height: 220px;
        border-radius: 14px;
    }

    .testimonial-header {
        margin-bottom: 12px;
        gap: 10px;
    }

    .quote-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .quote-icon i {
        font-size: 0.8rem;
    }

    .user-info h4 {
        font-size: 0.95rem;
    }

    .user-info p {
        font-size: 0.8rem;
    }

    .testimonial-content {
        margin: 10px 0;
    }

    .testimonial-content blockquote,
    .testimonial-content p {
        font-size: 0.85rem;
        line-height: 1.6;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    .testimonial-rating {
        margin-top: 10px;
        padding-top: 10px;
    }

    .testimonial-rating i {
        font-size: 0.9rem;
        margin: 0 2px;
    }

    .testimonials-section .btn-primary {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .testimonials-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .testimonials-swiper .swiper-pagination-bullet-active {
        width: 25px;
    }
}

/* Minimum 350px */
@media (max-width: 350px) {
    .testimonials-section {
        padding: 30px 0;
    }

    .testimonials-section .section-header h2 {
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 14px;
        min-height: 200px;
    }

    .user-info h4 {
        font-size: 0.9rem;
    }

    .testimonial-content blockquote,
    .testimonial-content p {
        font-size: 0.82rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}


/* Removed duplicate marquee styles */

.consultants-section {
    padding: 80px 0;
}

.consultants-title {
    font-size: 2rem;
    font-weight: 700;
}

.consultants-subline {
    width: 80px;
    height: 3px;
    background-color: #0d6efd;
    margin: 0.5rem auto 1rem;
    border-radius: 3px;
}

.consultant-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 3px dashed rgb(197 165 114 / var(--tw-bg-opacity, 1));
}

.consultant-avatar img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--gold-color);
}

.consultant-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.consultant-role {
    font-size: 0.95rem;
    color: rgb(197 165 114 / var(--tw-bg-opacity, 1));
    font-weight: bold;
    margin-bottom: 10px;
}


/* Pagination ??? ???????? ?????? */
.team-pagination {
    position: relative;
    /* ??? absolute */
    margin-top: 60px;
    /* ??????? ???? ?????? */
    text-align: center;
    z-index: 10;
}

.team-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #ddd;
    opacity: 1;
    margin: 0 10px;
    border-radius: 50%;
    transition: all 0.3s;
}

.team-pagination .swiper-pagination-bullet-active {
    background-color: #0d6efd;
    width: 16px;
    height: 16px;
}


/* Removed duplicate marquee styles */

.btn-gold {
    --bs-btn-bg: rgb(197 165 114 / 1);
    --bs-btn-border-color: rgb(197 165 114 / 1);
    --bs-btn-hover-bg: rgb(180 150 100 / 1);
    --bs-btn-hover-border-color: rgb(180 150 100 / 1);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
}

.btn-gold:active {
    transform: translateY(0);
}

.consultant-job-title {
    font-size: 0.88rem;
    /* ???? ?????? ?? ????? ??????? */
    color: #555;
    /* ??? ???? ???? */
    font-weight: 500;
    /* ??? ????? */
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    /* ???? ?????? */
}

/* ?? ????? */
.remove-btn {
    background-color: #e74c3c;
    /* ???? */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 0.9rem;
    align-self: flex-start;
    /* ????? ???? ?????? */
    margin-top: 5px;
    transition: background 0.2s;
}


.remove-btn:hover {
    background-color: #c0392b;
}

.inner-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #fff;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-size: 1.05rem;
    color: #fff;
}

/* Breadcrumbs in Hero */
.inner-hero .breadcrumb {
    background: transparent;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin-bottom: 20px;
    list-style: none;
    direction: rtl;
}

.inner-hero .breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.inner-hero .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-hero .breadcrumb-item a:hover {
    color: #CDA34F;
}

.inner-hero .breadcrumb-item.active {
    color: #CDA34F;
}

.inner-hero .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.5);
    padding-left: 10px;
}

/* Responsive adjust */
@media (max-width: 768px) {
    .inner-hero {
        height: 300px;
    }

    .inner-hero h1 {
        font-size: 2rem;
    }
}

/* Team Grid Styles */
.team-member-hidden {
    display: none;
}

.more-btn {
    background: #0A1363;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.more-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

/* Hero Feature Image Styling */
.hero-feature-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}