:root {
    --primary-color: #FAB31C;
    --secondary-color: #122F2A;
    --text-dark: #2c3e50;
}

/* Default - Arabic Layout */
.rtl-layout {
    font-family: 'Cairo', sans-serif;
}

/* English Layout */
.ltr-layout {
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ==================== Top Bar ==================== */
.bottom-header{
    position: relative;
}

.bottom-header::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url(../images/curved_shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    top:100%;
}

.top-bar .container {
    color: white;
    font-size: 14px;
    background-color: var(--secondary-color);
    padding: 8px 15px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.top-bar .contact-header a i {
    color: var(--primary-color);
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    font-size: 14px;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.social-icons a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin: 0 3px;
    transition: all 0.3s ease;
    color: white;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* ==================== Bottom Header ==================== */
.header-content-wrapper .dropdown-toggle::after{
    display: none;
}
.header-content-wrapper {
    background-color: white;
    padding: 14px 0;
}

/* Logo */
.navbar-brand {
    display: inline-block;
    padding: 0;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

/* Menu Container with Background */
.menu-container {
    background-color: var(--primary-color);
    border-radius: 15px;
    padding: 5px 20px;
}

.navbar-toggler {
    border: none;
    background-color: white;
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 20px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-links li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: white;
}

/* Search Input */
/* ==================== Search Toggle ==================== */
.search-wrapper {
    position: relative;
}

/* Search Toggle Button */
.search-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    border: none;
    background: transparent;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.search-toggle-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Search Input Container - Hidden by default */
.search-input-container {
    position: absolute;
    top: 50%;
    right: 55px;
    transform: translateY(-50%);
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-input-container.active {
    display: flex;
    opacity: 1;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-50%) translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

/* RTL Animation */
.rtl-layout .search-input-container {
    right: auto;
    left: 55px;
}

.rtl-layout .search-input-container.active {
    animation: slideInRTL 0.3s ease forwards;
}

@keyframes slideInRTL {
    from {
        transform: translateY(-50%) translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

/* Search Input */
.search-input-container .search-input {
    width: 250px;
    padding: 10px 40px 10px 15px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    font-size: 14px;
    background-color: white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

.search-input-container .search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* RTL Support for Search Input */
.rtl-layout .search-input-container .search-input {
    padding: 10px 15px 10px 40px;
}

/* Search Close Button */
.search-close-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 15px;
    border: none;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.rtl-layout .search-close-btn {
    right: auto;
    left: 10px;
}

.search-close-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Responsive Search */
@media (max-width: 768px) {
    .search-input-container .search-input {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .search-input-container {
        position: fixed;
        top: 80px;
        right: 50%;
        transform: translateX(50%);
        left: auto;
        width: 90%;
        max-width: 350px;
        z-index: 1000;
    }
    
    .search-input-container.active {
        animation: slideInMobile 0.3s ease forwards;
    }
    
    @keyframes slideInMobile {
        from {
            transform: translateX(50%) translateY(-20px);
            opacity: 0;
        }
        to {
            transform: translateX(50%) translateY(0);
            opacity: 1;
        }
    }
    
    .search-input-container .search-input {
        width: 100%;
    }
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.language-btn-dropdown {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.language-btn-dropdown:hover,
.language-btn-dropdown:focus {
    background-color: var(--secondary-color);
    color: white;
}

.language-btn-dropdown .fa-chevron-down {
    font-size: 12px;
}

.dropdown-menu {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 5px;
    min-width: 140px;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.dropdown-item.active {
    background-color: var(--secondary-color);
    color: white;
}

/* ==================== Hero Section ==================== */
/* ==================== Hero Slider Section ==================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    color: white;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Background Image */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Slide Overlay with Custom Gradient */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(104.25deg, 
        rgba(12, 26, 23, 0) 1.9%, 
        rgba(9, 31, 27, 0.0754386) 37.31%, 
        rgba(9, 31, 27, 0.172779) 40.18%, 
        rgba(9, 31, 27, 0.372684) 47.05%, 
        rgba(9, 31, 27, 0.671715) 56.36%, 
        #091F1B 73.4%, 
        #091F1B 95.2%, 
        rgba(9, 31, 27, 0.905484) 103.44%);
    z-index: 2;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    animation: slideInContent 1s ease-in-out;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RTL - Arabic */

/* LTR - English */
.ltr-layout .slide-content {
    text-align: left;
}



/* Slide Content Styles */
.slide-content h1 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* .slide-underline {
    width: 150px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
} */

/* ==================== CTA Button with Arrow Animation ==================== */
.cta-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-btn i {
    transition: all 0.4s ease;
    transform: rotate(120deg);
}

.cta-btn:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(250, 179, 28, 0.4);
}

.cta-btn:hover i {
    transform: rotate(180deg);
}

.rtl-layout .cta-btn i {
    transform: rotate(45deg);
}

.rtl-layout .cta-btn:hover i {
    transform: rotate(0deg);
}

/* LTR - اتجاه السهم للإنجليزية */
.ltr-layout .cta-btn i {
    transform: rotate(45deg);
}

.ltr-layout .cta-btn:hover i {
    transform: rotate(0deg);
}

/* ==================== Curved Underline ==================== */
/* ==================== Curved Underline (Enhanced Version) ==================== */
/* .rtl-layout .slide-underline {
    width: 180px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px 0 20px auto;
    position: relative;
    border-radius: 50px 2px 50px 50px;
}

.rtl-layout .slide-underline::before {
    content: '';
    position: absolute;
    left: -25px;
    top: -8px;
    width: 40px;
    height: 20px;
    border: 4px solid var(--primary-color);
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 30px;
    transform: rotate(-15deg);
}

.rtl-layout .slide-underline::after {
    content: '';
    position: absolute;
    left: -8px;
    top: -1px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(250, 179, 28, 0.3);
} */

/* LTR - English */
/* .ltr-layout .slide-underline {
    width: 180px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px 0;
    position: relative;
    border-radius: 2px 50px 50px 50px;
}

.ltr-layout .slide-underline::before {
    content: '';
    position: absolute;
    right: -25px;
    top: -8px;
    width: 40px;
    height: 20px;
    border: 4px solid var(--primary-color);
    border-left: none;
    border-top: none;
    border-radius: 0 0 30px 0;
    transform: rotate(15deg);
}

.ltr-layout .slide-underline::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -1px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(250, 179, 28, 0.3);
} */

/* Slider Navigation Buttons */
.slider-nav-btns {
    position: absolute;
    left: 5%;
    top: 20%;
    transform: translateY(-20%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}


.ltr-layout .slider-nav-btns {
    right: 5%;
    left:auto;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.slider-nav-btn.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.slider-nav-btn:not(.active) {
    background-color: white;
    color: var(--secondary-color);
}

.slider-nav-btn:hover {
    transform: scale(1.1);
}

/* Slider Dots Indicator */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slider-nav-btns {
        right: 20px;
    }
    
    .ltr-layout .slider-nav-btns {
        left: 20px;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* ==================== Features Section ==================== */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background-color: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(250, 179, 28, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 35px;
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 15px;
}

/* ==================== Responsive ==================== */
@media (max-width: 992px) {
    .nav-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .header-content-wrapper {
        border-radius: 30px;
        padding: 15px;
    }
    
    .menu-container {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .rtl-layout .hero-nav-btns {
        right: 20px;
    }
    
    .ltr-layout .hero-nav-btns {
        left: 20px;
    }
    
    .top-bar {
        font-size: 12px;
    }
    
    .nav-links li a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .search-input {
        width: 150px;
        font-size: 13px;
    }
    
    .language-btn-dropdown {
        padding: 8px 15px;
        font-size: 13px;
    }
}


/* ==================== Vision Mission Goals Section ==================== */
.vmg-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.vmg-card {
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vmg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(250, 179, 28, 0.3) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.rtl-layout .vmg-card::before {
    transform-origin: left;
}

.vmg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.vmg-card:hover::before {
    transform: scaleX(1);
}

/* Icon */
.vmg-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(250, 179, 28, 0.1) 0%, rgba(250, 179, 28, 0.05) 100%);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.vmg-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.4s ease;
}

.vmg-card:hover .vmg-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(250, 179, 28, 0.8) 100%);
    color: white;
    transform: scale(1.1) rotate(360deg);
}

.vmg-card:hover .vmg-icon::after {
    opacity: 1;
    transform: scale(1.3);
}

/* Title */
.vmg-title {
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.vmg-title i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.vmg-card:hover .vmg-title {
    color: var(--primary-color);
}

.vmg-card:hover .vmg-title i {
    transform: scale(1.2);
}

/* Divider */
.vmg-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(250, 179, 28, 0.3) 100%);
    margin: 20px auto;
    border-radius: 50px;
    position: relative;
    transition: all 0.4s ease;
}

.vmg-divider::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.rtl-layout .vmg-divider::before {
    right: auto;
    left: -8px;
}

.vmg-card:hover .vmg-divider {
    width: 120px;
    background: var(--primary-color);
}

.vmg-card:hover .vmg-divider::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 4px rgba(250, 179, 28, 0.2);
}

/* Text */
.vmg-text {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
    transition: all 0.3s ease;
}

.vmg-card:hover .vmg-text {
    color: var(--text-dark);
}

/* RTL Support */
.rtl-layout .vmg-card {
    text-align: center;
}

.ltr-layout .vmg-card {
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .vmg-section {
        padding: 60px 0;
    }

    .vmg-card {
        padding: 40px 30px;
    }

    .vmg-icon {
        width: 80px;
        height: 80px;
        font-size: 35px;
    }

    .vmg-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .vmg-section {
        padding: 50px 0;
    }

    .vmg-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }

    .vmg-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .vmg-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .vmg-divider {
        width: 60px;
        margin: 15px auto;
    }

    .vmg-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 575px) {
    .vmg-card {
        padding: 30px 20px;
    }

    .vmg-title {
        font-size: 1.2rem;
        gap: 8px;
    }

    .vmg-title i {
        font-size: 1.2rem;
    }
}



/* ==================== About Coalition Section ==================== */
.about-coalition-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

.about-coalition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 179, 28, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* Images Wrapper */
.images-wrapper {
    border-radius: 20px;
    position: relative;
    height: 450px;
}

/* Decorative Line */
.decorative-line {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 200px;
    height: 300px;
    border: 3px dashed var(--primary-color);
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 80px;
    opacity: 0.3;
    z-index: 1;
}

.rtl-layout .decorative-line {
    left: auto;
    right: 50px;
    border-right: 3px dashed var(--primary-color);
    border-left: none;
    border-radius: 0 0 80px 0;
}

/* Image Boxes */
.img-box {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    width: 100%;
    height: 100%;
}

.img-box::before {
    content: '';
    position: absolute;
    top: 0;
    border-radius: 20px;
    left: 0;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 179, 28, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.img-box:hover::before {
    opacity: 1;
}

.img-box:hover {
    border-radius: 20px;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.img-box img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.img-box:hover img {
    border-radius: 20px;
    transform: scale(1.1);
}

/* Image 1 - Top Left */
.img-box-1 {
    top: 0;
    left: 0;
    width: 250px;
    height: 200px;
    border: 5px solid var(--primary-color);
}

.rtl-layout .img-box-1 {
    left: auto;
    right: 0;
}

/* Image 2 - Top Right */
.img-box-2 {
    top: 80px;
    right: 0;
    width: 200px;
    height: 180px;
}

.rtl-layout .img-box-2 {
    right: auto;
    left: 0;
}

/* Image 3 - Bottom Center */
.img-box-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 220px;
}

/* Content */
.about-content {
    padding: 0 40px;
}

.rtl-layout .about-content {
    text-align: right;
}

.ltr-layout .about-content {
    text-align: left;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(250, 179, 28, 0.1) 0%, rgba(250, 179, 28, 0.05) 100%);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(250, 179, 28, 0.2);
}

.section-badge i {
    font-size: 16px;
}

/* Section Title */
.section-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.section-title i {
    color: var(--secondary-color);
    font-size: 2rem;
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
}


/* Section Description */
.section-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-coalition-section {
        padding: 0px 0;
    }

    .images-wrapper {
        height: 450px;
        margin-bottom: 50px;
    }

    .about-content {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .img-box-1 {
        width: 200px;
        height: 160px;
    }

    .img-box-2 {
        width: 160px;
        height: 140px;
    }

    .img-box-3 {
        width: 220px;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .about-coalition-section {
        padding: 50px 0;
    }

    .images-wrapper {
        height: 400px;
        padding: 20px;
    }

    .decorative-line {
        width: 150px;
        height: 200px;
        top: 30px;
        left: 30px;
    }

    .rtl-layout .decorative-line {
        right: 30px;
    }

    .about-content {
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.6rem;
        gap: 10px;
    }

    .section-title i {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .img-box-1 {
        width: 160px;
        height: 130px;
        border: 3px solid var(--primary-color);
    }

    .img-box-2 {
        width: 130px;
        height: 110px;
        top: 60px;
    }

    .img-box-3 {
        width: 180px;
        height: 140px;
    }
}

@media (max-width: 575px) {
    .images-wrapper {
        height: 350px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .img-box-1 {
        width: 140px;
        height: 110px;
    }

    .img-box-2 {
        width: 110px;
        height: 90px;
        top: 50px;
    }

    .img-box-3 {
        width: 150px;
        height: 120px;
    }
}

/* ==================== Our Projects Section ==================== */
/* ==================== Our Projects Section with Swiper ==================== */
.projects-section {
    padding: 45px 0;
    background-color: #F4F5F8;
    position: relative;
    overflow: hidden;
}

.section-title i {
    color: #046A58 !important;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.projects-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.projects-title i {
    font-size: 2rem;
}

/* Swiper Wrapper */
.projects-swiper-wrapper {
    position: relative;
}

.projectsSwiper {
    width: 100%;
    padding: 10px 0 60px;
}

.projectsSwiper .swiper-slide {
    height: auto;
}

/* Project Card */
.projects-swiper-wrapper .project-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.projects-swiper-wrapper  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Project Image */
.projects-swiper-wrapper  .project-image {
    position: relative;
    width: 100%;
    height: 200px;
    padding: 10px;
    border-radius: 15px;
    overflow: hidden;
}

.projects-swiper-wrapper  .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.6s ease;
}


.rtl-layout .project-badge {
    left: auto;
    right: 17px;
}

/* Project Content */
.projects-swiper-wrapper  .project-content {
    padding: 5px 20px 20px 20px;
    text-align: right;
    flex-grow: 1;
    display: block;
}

.projects-swiper-wrapper  .project-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--secondary-color);
}

.projects-swiper-wrapper  .project-description {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Project Link */
.projects-swiper-wrapper  .project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    padding: 6px 18px;
    border-radius: 20px;
    background-color: transparent;
    width: fit-content;
}

.projects-swiper-wrapper  .project-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(-3px);
}

.rtl-layout .projects-swiper-wrapper  .project-link:hover {
    transform: translateX(3px);
}

.rtl-layout .projects-swiper-wrapper  .project-link:hover i {
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.projects-swiper-wrapper  .project-link i {
    font-size: 11px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

/* Swiper Navigation Buttons */
.projectsSwiper .swiper-button-next,
.projectsSwiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(18, 47, 42, 0.25);
    transition: all 0.3s ease;
}

.projectsSwiper .swiper-button-next::after,
.projectsSwiper .swiper-button-prev::after {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 900;
}

/* RTL Support for Navigation */
.rtl-layout .projectsSwiper .swiper-button-next {
    left: 10px;
    right: auto;
}

.rtl-layout .projectsSwiper .swiper-button-prev {
    right: 10px;
    left: auto;
}

.ltr-layout .projectsSwiper .swiper-button-next {
    right: 10px;
}

.ltr-layout .projectsSwiper .swiper-button-prev {
    left: 10px;
}

.projectsSwiper .swiper-button-next:hover,
.projectsSwiper .swiper-button-prev:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(250, 179, 28, 0.4);
}

.projectsSwiper .swiper-button-next:hover::after,
.projectsSwiper .swiper-button-prev:hover::after {
    color: white;
}

.projectsSwiper .swiper-button-disabled {
    opacity: 0.4;
}

/* Swiper Pagination (Dots) */
.projectsSwiper .swiper-pagination {
    bottom: 0;
}

.projectsSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
}

.projectsSwiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.projectsSwiper .swiper-pagination-bullet:hover:not(.swiper-pagination-bullet-active) {
    background-color: rgba(250, 179, 28, 0.5);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .projects-swiper-wrapper {
        padding: 0 70px;
    }
}

@media (max-width: 991px) {
    .projects-section {
        padding: 70px 0;
    }

    .projects-title {
        font-size: 2rem;
    }

    .projects-swiper-wrapper {
        padding: 0 70px;
    }

    .projectsSwiper .swiper-button-next,
    .projectsSwiper .swiper-button-prev {
        width: 55px;
        height: 55px;
    }

    .projectsSwiper .swiper-button-next::after,
    .projectsSwiper .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .projects-section {
        padding: 45px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .projects-title {
        font-size: 1.7rem;
        gap: 10px;
    }

    .projects-swiper-wrapper {
        padding: 0 60px;
    }

    .project-image {
        height: 180px;
    }

    .project-content {
        padding: 5px 18px 18px 18px;
    }

    .project-title {
        font-size: 1.1rem;
    }

    .projectsSwiper .swiper-button-next,
    .projectsSwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .projectsSwiper .swiper-button-next::after,
    .projectsSwiper .swiper-button-prev::after {
        font-size: 15px;
    }

    .rtl-layout .projectsSwiper .swiper-button-next {
        left: 5px;
    }

    .rtl-layout .projectsSwiper .swiper-button-prev {
        right: 5px;
    }
}

@media (max-width: 575px) {
    .projects-swiper-wrapper {
        padding: 0 55px;
    }

    .projects-title {
        font-size: 1.5rem;
    }

    .project-image {
        height: 160px;
    }

    .projectsSwiper .swiper-button-next,
    .projectsSwiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .projectsSwiper .swiper-button-next::after,
    .projectsSwiper .swiper-button-prev::after {
        font-size: 14px;
    }

    .projectsSwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .projectsSwiper .swiper-pagination-bullet-active {
        width: 25px;
    }
}

/* ==================== Blog Section ==================== */
.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

/* Section Header */
.section-header-blog {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.blog-title i {
    font-size: 2rem;
    color: #046A58;
}

/* View More Button */
.view-more-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-more-btn i {
    font-size: 13px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: white;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(250, 179, 28, 0.4);
    transform: translateY(-2px);
}

.view-more-btn:hover i {
    transform: rotate(0deg);
}

/* Blog Swiper */
.blog-swiper-wrapper {
    position: relative;
}

.blogSwiper {
    width: 100%;
    padding: 10px 0 60px;
}

.blogSwiper .swiper-slide {
    height: auto;
}

/* Blog Card */
.blog-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Featured Card - Dark Theme */
.blog-card:hover {
    background: linear-gradient(135deg, #2d5a54 0%, #3a6b63 100%);
}q

.blog-card:hover .blog-content {
    background: transparent;
    color:#fff;
}

.blog-card:hover .blog-meta,
.blog-card:hover .blog-meta span,
.blog-card:hover .blog-meta i {
    color: #fff;
}

.blog-card:hover .blog-title-card {
    color: #ffffff;
}

.blog-card:hover .blog-link {
    color: #fff;
}

.blog-card.featured-card .blog-link:hover {
    background-color: white;
    color: var(--secondary-color);
}

/* Blog Image */
.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

/* Blog Content */
.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
}

.blog-meta i {
    font-size: 14px;
}

/* Blog Title */
.blog-title-card {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Blog Link */
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.blog-link i {
    font-size: 12px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-color);
}

.blog-link:hover i {
    transform: rotate(0deg) translateX(-3px);
}

.rtl-layout .blog-link:hover i {
    transform: rotate(0deg) translateX(3px);
}

/* Swiper Pagination */
.blogSwiper .swiper-pagination {
    bottom: 0;
}

.blogSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
}

.blogSwiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-title {
        font-size: 2rem;
    }

    .section-header-blog {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 50px 0;
    }

    .section-header-blog {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 35px;
    }

    .blog-title {
        font-size: 1.7rem;
        gap: 10px;
    }

    .blog-title i {
        font-size: 1.6rem;
    }

    .view-more-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title-card {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .blog-title {
        font-size: 1.5rem;
    }

    .view-more-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 18px;
    }

    .blog-meta {
        font-size: 12px;
    }

    .blog-title-card {
        font-size: 0.95rem;
    }
}


       .activities-section{
            padding: 80px 0;
            background-color: #F4F5F8;
        }

    .event-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
    }
    .event-card img {
      width: 850px;
      height: 500px;
      object-fit: cover;
      border-radius: 15px;
    }
    .event-info {
     text-align: right;
      position: absolute;
      top:50%;
      transform: translateY(-50%);
      right: 40px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      padding: 25px 25px;
      max-width: 500px;
    }
    .event-info h5 {
      font-weight: bold;
      font-size: 20px;
      color:var(--primary-color);
      margin-bottom: 15px;
    }
    .event-info p {
      color: #666;
      line-height: 25px;
      font-size: 14px;
       margin-bottom: 15px;
      text-align: justify;
    }
    .custom-controls {
      text-align: center;
      position: absolute;
        bottom: 7%;
        right: 10%;
    }
    .custom-controls button {
      color:var(--primary-color);
      background: transparent;
      border: none;
      margin: 0 5px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .custom-controls button span i::before{
      color:var(--primary-color);
    }
    .custom-controls button span {
      background: unset;
        font-size: 30px;

    }

    .main-footer {
            background: white;
            padding: 60px 0 40px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        /* قسم بيانات التواصل */
        .contact-section {
            text-align: right;
        }
        
        .main-footer .section-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #00002D;
            margin-bottom: 25px;
            text-align: right;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: #6D707C;
            font-size: 0.95rem;
        }
        
        .contact-icon {
            color: var(--primary-color);
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }
        
        .address-block {
            text-align: right;
            color: #6D707C;
            font-size: 0.9rem;
            line-height: 1.7;
            margin-top: 20px;
        }
        
        /* قسم الروابط الوسطى */
        .links-section {
            text-align: center;
        }
        
        .dimension-badge {
            background: var(--primary-blue);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 25px;
        }
        
        .links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .links-list li {
            margin-bottom: 15px;
            text-align: right;
        }
        
        .links-list a {
            color: #6b7280;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            transition: color 0.3s ease;
        }
        
        .links-list a:hover {
            color: var(--primary-color);
        }
        
        .logo-section {
            text-align: center;
        }
        
        .logo-circle {
            width: 200px;
            height: 160px;
            position: relative;
        }
     
        .organization-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #00002D;
            margin-bottom: 10px;
            line-height: 1.4;
            max-width: 280px;
            text-align: right;
        }
        
        .organization-subtitle {
            text-align: justify;
            font-size: 0.95rem;
            font-weight: bold;
            color: #00002D;
            margin-bottom: 30px;
        }
        
        .social-media {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            background:var(--primary-color);
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .bottom-footer {
            background: #FFF;
        }

        .bottom-footer .container{
            border-top: 1px solid #B9CBE1;
            padding: 8px 0;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright-text {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .design-credit {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .designer-name {
            color: var(--primary-color);
            font-weight: bold;
        }
        
        .heart-icon {
            color: #ef4444;
            font-size: 0.8rem;
        }
        
        @media (max-width: 1024px) {
            .footer-grid {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .contact-section {
                text-align: center;
            }
            
            .contact-item {
                justify-content: center;
            }
            
            .hero-title {
                font-size: 1.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .register-button {
                padding: 12px 25px;
                font-size: 0.95rem;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .social-media {
                gap: 12px;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .joinus-section {
                padding: 40px 0;
            }
            
            .main-footer {
                padding: 40px 0 30px;
            }
            
            .logo-circle {
                width: 100px;
                height: 100px;
            }
            
            .logo-circle::before {
                width: 70px;
                height: 70px;
            }
            
            .logo-circle::after {
                width: 50px;
                height: 50px;
            }
            
            .logo-symbol {
                font-size: 1.6rem;
            }
        }




        /* ==================== FAQ Section ==================== */
.faq-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Content Column */
.faq-content {
    padding-right: 40px;
    padding-left: 40px;
}

/* Section Title */
.section-title-wrapper {
    margin-bottom: 40px;
}


/* ==================== Vertical Swiper ==================== */
.faq-swiper-wrapper {
    position: relative;
    height: 550px;
}

.faqSwiper {
    width: 100%;
    height: 100%;
    padding-right: 60px;
}

.faqSwiper .swiper-wrapper {
    height: auto;
}

.faqSwiper .swiper-slide {
    height: auto;
    margin-bottom: 15px;
}

/* ==================== FAQ Accordion Item ==================== */
.faq-accordion-item {
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

/* Hover State */
.faq-accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(250, 179, 28, 0.15);
}

.faq-accordion-item:hover::before {
    /* transform: scaleY(1); */
}

/* Active Slide - Featured Style */
.faqSwiper .swiper-slide-active .faq-accordion-item {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(250, 179, 28, 0.2);
}

.faqSwiper .swiper-slide-active .faq-accordion-item::before {
    transform: scaleY(1);
    background-color: var(--secondary-color);
    width: 8px;
}

/* ==================== FAQ Question Button ==================== */
.faq-question-btn {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question-btn:focus {
    outline: none;
}

/* FAQ Icon (Chevron Left) */
.faq-icon {
    font-size: 14px;
    color: var(--primary-color);
    background-color: rgba(250, 179, 28, 0.1);
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover .faq-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* FAQ Question Text */
.faq-question-text {
    flex: 1;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    text-align: right;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover .faq-question-text {
    color: var(--primary-color);
}

/* Collapse Arrow */
.collapse-arrow {
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    margin-left: 10px;
}

/* Rotate arrow when expanded */
.faq-question-btn:not(.collapsed) .collapse-arrow {
    transform: rotate(-180deg);
    color: var(--secondary-color);
}

.faq-question-btn:not(.collapsed) .faq-icon {
    background-color: var(--secondary-color);
    color: white;
}

.faq-question-btn:not(.collapsed) .faq-question-text {
    color: var(--secondary-color);
}

/* ==================== FAQ Answer (Collapse Content) ==================== */
.faq-answer {
    padding: 0 25px 20px 70px;
    background-color: rgba(250, 179, 28, 0.05);
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* Expanded State Background */
.faq-accordion-item:has(.collapse.show) {
    background: linear-gradient(135deg, rgba(250, 179, 28, 0.1) 0%, rgba(250, 179, 28, 0.05) 100%);
    border-color: var(--primary-color);
}

/* ==================== Swiper Navigation ==================== */
.faqSwiper .swiper-button-next,
.faqSwiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(18, 47, 42, 0.25);
    transition: all 0.3s ease;
    left: auto;
    right: 0;
}

.faqSwiper .swiper-button-next::after,
.faqSwiper .swiper-button-prev::after {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 900;
}

/* Position for Vertical Swiper */
.faqSwiper .swiper-button-prev {
    top: 0;
    bottom: auto;
}

.faqSwiper .swiper-button-next {
    bottom: 0;
    top: auto;
}

/* Arrows for vertical */
.faqSwiper .swiper-button-prev::after {
    content: '\f077';
    font-family: 'Font Awesome 5 Free';
}

.faqSwiper .swiper-button-next::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
}

.faqSwiper .swiper-button-next:hover,
.faqSwiper .swiper-button-prev:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(250, 179, 28, 0.4);
}

.faqSwiper .swiper-button-next:hover::after,
.faqSwiper .swiper-button-prev:hover::after {
    color: white;
}

.faqSwiper .swiper-button-disabled {
    opacity: 0.4;
}

/* Swiper Pagination (Dots) */
.faqSwiper .swiper-pagination {
    right: 10px;
    left: auto;
    width: 10px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.faqSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    opacity: 1;
    margin: 8px 0;
    transition: all 0.3s ease;
}

.faqSwiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    height: 30px;
    border-radius: 5px;
}

/* ==================== Images Column ==================== */
.images-wrapper {
    position: relative;
    height: 600px;
    padding: 20px;
}

/* Dark Panel - الخلفية الخضراء الكاملة مع الشكل المنحني */
.dark-panel {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 550px;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--secondary-color) 100%);
    z-index: 1;
    box-shadow: 0 20px 60px rgba(18, 47, 42, 0.3);
    overflow: hidden;
}

/* Curved Shape - الشكل المنحني على حافة الخلفية */
.curved-shape {
    position: absolute;
    right: -2px;
    top: 0;
    width: 100px;
    height: 100%;
    background-image: url('images/curved_shape.png');
    background-repeat: repeat-y;
    background-size: contain;
    background-position: right center;
    z-index: 2;
}

/* Decorative Bar - الشريط الأصفر */
.decorative-bar {
    position: absolute;
    left: 23%;
    top: 100px;
    width: 10px;
    height: 65px;
    background-color: var(--primary-color);
    border-radius: 10px;
    z-index: 4;
    box-shadow: 0 4px 15px rgba(250, 179, 28, 0.4);
}

.main-image-box {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 320px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    z-index: 5;
    border: 6px solid white;
    transition: all 0.4s ease;
}

.main-image-box:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-image-box:hover img {
    transform: scale(1.1);
}

.secondary-image-box {
    position: absolute;
    left: 15%;
    top: 26%;
    width: 210px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 6;
    border: 5px solid white;
    transition: all 0.4s ease;
}

.secondary-image-box:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    z-index: 7;
}

.secondary-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.secondary-image-box:hover img {
    transform: scale(1.15);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1199px) {
    .faq-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .faq-swiper-wrapper {
        height: 500px;
    }

    .images-wrapper {
        height: 550px;
    }

    .dark-panel {
        width: 380px;
        height: 500px;
    }

    .main-image-box {
        width: 320px;
        height: 370px;
        left: 110px;
    }

    .secondary-image-box {
        width: 160px;
        height: 140px;
        left: 60px;
        top: 70px;
    }
}

@media (max-width: 991px) {
   

    .faq-content {
        padding-right: 0;
        padding-left: 0;
        margin-top: 40px;
    }


    .faq-swiper-wrapper {
        height: 450px;
    }

    .faqSwiper {
        padding-right: 50px;
    }

    .images-wrapper {
        height: 500px;
        margin-bottom: 30px;
    }

    .dark-panel {
        width: 100%;
        border-radius: 20px;
    }

    .main-image-box {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 350px;
    }

    .main-image-box:hover {
        transform: translate(-50%, -50%) scale(1.05);
    }

    .secondary-image-box {
        left: 30px;
        top: 60px;
    }

    .decorative-bar {
        left: 40px;
        top: 80px;
        height: 150px;
    }
}

@media (max-width: 767px) {
  
    .faq-swiper-wrapper {
        height: 500px;
    }

    .faqSwiper {
        padding-right: 45px;
    }

    .faq-question-btn {
        padding: 18px 20px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 12px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 20px 18px 60px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .faqSwiper .swiper-button-next,
    .faqSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .faqSwiper .swiper-button-next::after,
    .faqSwiper .swiper-button-prev::after {
        font-size: 14px;
    }

    .images-wrapper {
        height: 450px;
        padding: 15px;
    }

    .main-image-box {
        width: 280px;
        height: 320px;
    }

    .secondary-image-box {
        width: 140px;
        height: 120px;
        left: 25px;
        top: 50px;
    }

    .decorative-bar {
        left: 30px;
        top: 70px;
        height: 120px;
        width: 6px;
    }
}

@media (max-width: 575px) {
   

    .faq-swiper-wrapper {
        height: 480px;
    }

    .faqSwiper {
        padding-right: 40px;
    }

    .faq-question-btn {
        padding: 15px 18px;
        gap: 12px;
    }

    .faq-question-text {
        font-size: 13px;
    }

    .faq-answer {
        padding: 0 18px 15px 55px;
    }

    .faqSwiper .swiper-button-next,
    .faqSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .faqSwiper .swiper-button-next::after,
    .faqSwiper .swiper-button-prev::after {
        font-size: 12px;
    }

    .images-wrapper {
        height: 400px;
    }

    .dark-panel {
        height: 380px;
    }

    .main-image-box {
        width: 250px;
        height: 290px;
        border: 3px solid white;
    }

    .secondary-image-box {
        width: 120px;
        height: 100px;
        left: 20px;
        top: 40px;
        border: 3px solid white;
    }

    .decorative-bar {
        width: 5px;
        height: 100px;
        left: 25px;
        top: 60px;
    }

    .curved-shape {
        width: 350px;
        height: 450px;
        left: -80px;
    }
}

/* ==================== Animation on Scroll ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-section.animated .section-title {
    animation: fadeInUp 0.8s ease forwards;
}

.faq-section.animated .faq-swiper-wrapper {
    animation: fadeInRight 0.8s ease forwards;
}

.faq-section.animated .images-wrapper {
    animation: fadeInLeft 1s ease forwards;
}

.images-column{
    background-color: var(--secondary-color);
    position: relative;
}

/* .images-column::before {
    position: absolute;
    right: -13%;
    content: '';
    top: 0;
    height: 100%;
    background-image: url(../images/curved_shape.png);
    background-repeat: no-repeat;
    width: 100%;
    transform: rotate(90deg);
} */

/* ==================== Call to Action Section ==================== */
.cta-section {
    position: relative;
    min-height: 300px;
    padding: 0px 0;
    background-image: url('../images/slider.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-section::before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(104.25deg, 
        rgba(12, 26, 23, 0) 1.9%, 
        rgba(9, 31, 27, 0.0754386) 37.31%, 
        rgba(9, 31, 27, 0.172779) 40.18%, 
        rgba(9, 31, 27, 0.372684) 47.05%, 
        rgba(9, 31, 27, 0.671715) 56.36%, 
        #091F1B 73.4%, 
        #091F1B 95.2%, 
        rgba(9, 31, 27, 0.905484) 103.44%);
    z-index: 1;
}

/* Alternative: If no background image, use solid color */
.cta-section.no-image {
    background-image: none;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--secondary-color) 100%);
}

.cta-section.no-image .cta-overlay {
    display: none;
}

/* Container positioning */
.cta-section .container {
    position: relative;
    z-index: 2;
}

/* ==================== CTA Card (الصندوق الأبيض) ==================== */
.cta-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}



.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* ==================== CTA Content ==================== */
.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

/* ==================== CTA Title ==================== */
.cta-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
    text-align: right;
}

.cta-title br {
    display: block;
}

/* ==================== CTA Button ==================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f9a825 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(250, 179, 28, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f9a825 0%, var(--primary-color) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(250, 179, 28, 0.6);
    color: #ffffff;
}

.cta-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(-5px);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 991px) {
    .cta-section {
        min-height: 450px;
        padding: 80px 0;
    }

    .cta-card {
        padding: 50px 40px;
        border-radius: 25px;
    }

    .cta-title {
        font-size: 1.6rem;
        line-height: 1.7;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 45px;
    }
}

@media (max-width: 767px) {
    .cta-section {
        min-height: 400px;
        padding: 60px 0;
        background-attachment: scroll;
    }

    .cta-card {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .cta-title br {
        display: none;
    }

    .cta-content {
        gap: 30px;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 14px 40px;
        gap: 10px;
    }

    .cta-button i {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .cta-section {
        min-height: 350px;
        padding: 50px 0;
    }

    .cta-card {
        padding: 35px 25px;
        border-radius: 18px;
    }

    .cta-title {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .cta-content {
        gap: 25px;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 12px 35px;
        width: 100%;
        justify-content: center;
    }
}

/* ==================== Animation on Scroll ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-section.animated .cta-card {
    animation: scaleIn 0.8s ease forwards;
}

.cta-section.animated .cta-title {
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.cta-section.animated .cta-button {
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

/* Floating effect on hover */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-button:hover {
    animation: float 2s ease-in-out infinite;
}






/* ==================== About Tathlith Section ==================== */
.about-tathlith-section {
    position: relative;
    padding-bottom: 80px;
    background-color: var(--light-bg);
}

/* ==================== Hero Banner ==================== */
.hero-banner {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: -100px;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background: linear-gradient(104.25deg, rgba(12, 26, 23, 0) 1.9%, rgba(9, 31, 27, 0.0754386) 37.31%, rgba(9, 31, 27, 0.172779) 40.18%, rgba(9, 31, 27, 0.372684) 47.05%, rgba(9, 31, 27, 0.671715) 56.36%, #091F1B 73.4%, #091F1B 95.2%, rgba(9, 31, 27, 0.905484) 103.44%);
    z-index: 1;
}

/* Hero Content (Icon + Title) */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-icon {
    font-size: 3rem;
    color: var(--primary-color);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

/* ==================== Content Card ==================== */
.container {
    position: relative;
    z-index: 3;
}

.content-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    position: relative;
}

/* ==================== Images Grid (Left Column) ==================== */
.images-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

/* Top Row - Two Images Side by Side */
.top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(250, 179, 28, 0.1) 0%, 
        rgba(18, 47, 42, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.image-box:hover::before {
    opacity: 1;
}

.image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.1);
}

/* Image Sizes */
.image-1, .image-2 {
    height: 250px;
}

.image-3 {
    height: 280px;
}

/* ==================== Text Content (Right Column) ==================== */
.text-content {
    padding: 30px 40px 30px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}


.title-highlight {
    color: var(--primary-color);
    display: block;
}

/* Description Text */
.description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.9;
}

.description p {
    margin-bottom: 20px;
    text-align: justify;
}

.description p:last-child {
    margin-bottom: 0;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1199px) {
    .hero-banner {
        height: 320px;
        margin-bottom: -80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .content-card {
        padding: 50px 40px;
    }

    .text-content {
        padding: 20px 30px 20px 40px;
    }

  
    .image-1, .image-2 {
        height: 220px;
    }

    .image-3 {
        height: 250px;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        height: 280px;
        margin-bottom: -60px;
    }

    .hero-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero-icon {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
        white-space: normal;
        max-width: 90%;
    }

    .content-card {
        padding: 40px 30px;
        border-radius: 25px;
    }

    .images-grid {
        margin-bottom: 40px;
    }

    .text-content {
        padding: 0;
    }

    .section-header {
        margin-bottom: 25px;
    }


    .image-1, .image-2 {
        height: 200px;
    }

    .image-3 {
        height: 230px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        height: 250px;
        margin-bottom: -50px;
    }

    .hero-icon {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .content-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .section-header {
        gap: 12px;
        margin-bottom: 20px;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .description p {
        margin-bottom: 18px;
    }

    .top-row {
        gap: 12px;
    }

    .images-grid {
        gap: 15px;
        margin-bottom: 35px;
    }

    .image-1, .image-2 {
        height: 180px;
    }

    .image-3 {
        height: 210px;
    }
}

@media (max-width: 575px) {
    .hero-banner {
        height: 220px;
        margin-bottom: -40px;
    }

    .hero-icon {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .content-card {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .description p {
        margin-bottom: 15px;
    }

    .top-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .image-1, .image-2, .image-3 {
        height: 200px;
    }
}

/* ==================== Animation on Scroll ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations */
.about-tathlith-section.animated .hero-content {
    animation: fadeInUp 1s ease forwards;
}

.about-tathlith-section.animated .content-card {
    animation: scaleIn 0.8s ease forwards 0.3s;
    opacity: 0;
}

.about-tathlith-section.animated .images-grid {
    animation: fadeInLeft 0.8s ease forwards 0.5s;
    opacity: 0;
}

.about-tathlith-section.animated .text-content {
    animation: fadeInRight 0.8s ease forwards 0.7s;
    opacity: 0;
}

.about-tathlith-section.animated .image-box:nth-child(1) {
    animation-delay: 0.6s;
}

.about-tathlith-section.animated .image-box:nth-child(2) {
    animation-delay: 0.7s;
}

.about-tathlith-section.animated .image-3 {
    animation-delay: 0.8s;
}


/* ==================== Projects Wrapper ==================== */
.projects-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ==================== Project Card ==================== */
.projects-wrapper .project-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.projects-wrapper .project-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan-border) 0%, var(--primary-color) 100%);
}

.projects-wrapper .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* ==================== Project Content (Text) ==================== */
.projects-wrapper  .project-content {
    padding-left: 30px;
    display: block;
    gap: 25px;
}

/* Project Badge */
.projects-wrapper  .project-badge {
    display: inline-flex;
    align-self: flex-start;
}

.projects-wrapper  .project-title {
    color:var(--primary-color)
}

.projects-wrapper  .badge-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f9a825 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(250, 179, 28, 0.3);
    transition: all 0.3s ease;
}

.projects-wrapper  .project-card:hover .badge-text {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(250, 179, 28, 0.4);
}

/* Project Description */
.projects-wrapper  .project-description {
    flex: 1;
}

.projects-wrapper  .project-description p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.9;
    text-align: justify;
    margin: 0;
}

.projects-wrapper  .read-more-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.projects-wrapper  .read-more-btn i {
    font-size: 13px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.projects-wrapper  .read-more-btn:hover {
    background-color: white;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(250, 179, 28, 0.4);
    transform: translateY(-2px);
}

.projects-wrapper  .read-more-btn:hover i {
    transform: rotate(0deg);
}


/* ==================== Project Image ==================== */
.projects-wrapper  .project-title h2{
    font-size: 1.5rem;
    font-weight: bold;
}
.projects-wrapper  .project-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    height: 300px;
}

.projects-wrapper  .project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(250, 179, 28, 0.1) 0%, 
        rgba(18, 47, 42, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.projects-wrapper  .project-card:hover .project-image::before {
    opacity: 1;
}

.projects-wrapper  .project-card:hover .project-image {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.projects-wrapper  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.projects-wrapper  .project-card:hover .project-image img {
    transform: scale(1.1);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1199px) {
    .projects-hero {
        height: 180px;
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .project-card {
        padding: 35px 40px;
    }

    .project-content {
        padding-left: 25px;
    }

    .project-image {
        height: 320px;
    }
}

@media (max-width: 991px) {
    .projects-hero {
        height: 160px;
        margin-bottom: 40px;
    }

    .hero-icon {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .project-card {
        padding: 30px 35px;
    }

    .project-content {
        padding-left: 0;
        padding-top: 30px;
    }

    .project-image {
        height: 300px;
        margin-bottom: 0;
    }

    .projects-wrapper {
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .projects-section {
        padding-bottom: 60px;
    }

    .projects-hero {
        height: 140px;
        margin-bottom: 35px;
    }

    .hero-content {
        gap: 12px;
    }

    .hero-icon {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .project-card {
        padding: 25px 30px;
        border-radius: 18px;
    }

    .project-content {
        gap: 20px;
        padding-top: 25px;
    }

    .badge-text {
        font-size: 0.85rem;
        padding: 7px 22px;
    }

    .project-description p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .read-more-btn {
        font-size: 0.95rem;
        padding: 11px 32px;
    }

    .project-image {
        height: 280px;
    }

    .projects-wrapper {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .projects-hero {
        height: 120px;
        margin-bottom: 30px;
    }

    .hero-icon {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .project-card {
        padding: 20px 25px;
        border-radius: 15px;
    }

    .project-content {
        gap: 18px;
        padding-top: 20px;
    }

    .badge-text {
        font-size: 0.8rem;
        padding: 6px 20px;
    }

    .project-description p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .read-more-btn {
        font-size: 0.9rem;
        padding: 10px 30px;
        width: 100%;
        justify-content: center;
    }

    .project-image {
        height: 250px;
    }
}

/* ==================== Animation on Scroll ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
.projects-section.animated .hero-content {
    animation: fadeInUp 1s ease forwards;
}

.projects-section.animated .project-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.projects-section.animated .project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.projects-section.animated .project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.projects-section.animated .project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.projects-section.animated .project-card:nth-child(4) {
    animation-delay: 0.4s;
}

  
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            display: block;
            font-size: 15px;
        }
        .form-select option{
              color:#C1C1C1;
        }
        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #F4F5F8;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.1);
            outline: none;
        }
        
        .form-control::placeholder {
            color: #95a5a6;
            font-size: 14px;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .btn-primary {
            background: var(--primary-color);
            border: none;
            border-radius: 10px;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
            background: var(--primary-color);
        }
        
        .btn-outline-secondary {
            border: 2px solid #6c757d;
            border-radius: 10px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
        }
       