@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #0f4c2c;
    --primary-light: #16643b;
    --primary-dark: #09331d;
    --secondary-color: #c9a03c;
    --secondary-light: #dfb758;
    --secondary-dark: #a17c24;
    --dark-color: #111827;
    --light-color: #ffffff;
    --gray-color: #4b5563;
    --gray-light: #f3f4f6;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --accent-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gold-gradient: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Outfit', 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    background: var(--light-color);
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--light-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray-color);
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
}

.bg-light {
    background: var(--bg-light);
}

.bg-primary {
    background: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* Header Styles */
.header-area {
    background: var(--light-color);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 10px 0;
    font-size: 14px;
}

.contact-info span {
    margin-left: 25px;
}

.contact-info a {
    color: var(--light-color);
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.header-social a {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    color: var(--light-color);
    font-size: 12px;
}

.header-social a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-img {
    height: 50px;
    margin-left: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 11px;
    color: var(--gray-color);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .nav-link i {
    font-size: 14px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-medium);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 200px;
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition-smooth);
}

.dropdown-item i {
    color: var(--primary-color);
    font-size: 14px;
    margin: 0 !important;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background: var(--primary-color) !important;
    color: var(--light-color) !important;
}

.dropdown-item:hover i {
    color: var(--light-color) !important;
}

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

.header-cta .btn-primary {
    padding: 10px 25px;
    font-size: 14px;
}

.lang-btn {
    background: transparent;
    color: var(--primary-color);
    padding: 8px 15px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: rgba(200, 169, 81, 0.1);
    transform: rotate(-15deg);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--light-color), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-color);
    padding: 50px 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-desc {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
}

.hero-buttons .btn-primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
}

.hero-buttons .btn-outline {
    border-color: var(--light-color);
    color: var(--light-color);
}

.hero-buttons .btn-outline:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(200, 169, 81, 0.2);
    border-radius: 50%;
}

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

.service-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 40px;
    color: var(--light-color);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    font-size: 15px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--light-color);
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.about-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.9;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--light-color);
    font-size: 20px;
}

.about-feature h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.about-image-wrapper i {
    font-size: 150px;
    color: rgba(255,255,255,0.2);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

.about-badge-number {
    font-size: 40px;
    font-weight: 800;
    display: block;
}

.about-badge-text {
    font-size: 14px;
    font-weight: 600;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.program-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary-color);
}

.program-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.program-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(200, 169, 81, 0.1);
    border-radius: 50%;
}

.program-image i {
    font-size: 60px;
    color: rgba(255,255,255,0.3);
    position: relative;
    z-index: 2;
}

.program-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.program-content {
    padding: 25px;
}

.program-title {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.program-desc {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 15px;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.program-hours {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.program-link {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 14px;
}

.program-link:hover {
    color: var(--primary-color);
}

/* Diploma Section */
.diploma-section {
    padding: 80px 0;
}

.diploma-header {
    text-align: center;
    margin-bottom: 50px;
}

.diploma-header h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.diploma-header p {
    color: var(--gray-color);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.diploma-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    margin-bottom: 25px;
    border-right: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.diploma-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(-10px);
}

.diploma-card-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.diploma-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.diploma-card p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.diploma-card-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cert-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 35px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary-color);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.cert-icon i {
    font-size: 35px;
    color: var(--light-color);
}

.cert-card h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.cert-card .cert-abbr {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.cert-card p {
    color: var(--gray-color);
    font-size: 14px;
}

/* Activities Section */
.activities-section {
    padding: 80px 0;
}

.activity-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-reverse: 1px solid var(--border-color);
}

.activity-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.activity-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.activity-content h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.activity-content p {
    color: var(--gray-color);
    margin: 0;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.course-item {
    background: var(--light-color);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.course-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(-10px);
}

.course-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.course-icon i {
    font-size: 30px;
    color: var(--light-color);
}

.course-info h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.course-info p {
    color: var(--gray-color);
    font-size: 14px;
    margin: 0;
}

/* Journal Section */
.journal-section {
    padding: 80px 0;
}

.journal-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
}

.journal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.journal-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.journal-image i {
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}

.journal-content {
    padding: 25px;
}

.journal-date {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.journal-title {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.journal-excerpt {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-info-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
}

.contact-info-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--gray-color);
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 15px;
}

.form-control, .form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-family: inherit;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 92, 55, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 15px 50px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-item {
    background: var(--light-color);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.8;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 100px 0;
    text-align: center;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(200, 169, 81, 0.1);
    transform: rotate(-15deg);
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--secondary-color);
}

/* Footer */
.footer-area {
    background: var(--dark-color);
    color: var(--light-color);
}

.footer-top {
    padding: 60px 0;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    color: var(--light-color);
    font-size: 20px;
    margin-top: 15px;
}

.footer-about-text {
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.footer-title {
    color: var(--light-color);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-right: 10px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: #aaa;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-contact a {
    color: #aaa;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--light-color);
    transform: scale(1.05);
}

.footer-bottom {
    background: #111;
    padding: 25px 0;
}

.copyright-text {
    color: #aaa;
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #aaa;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.testimonial-quote {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    color: var(--gray-color);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 24px;
}

.testimonial-info h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--gray-color);
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-desc {
        font-size: 17px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .navbar-collapse {
        background: var(--light-color);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: var(--shadow-medium);
    }
    
    .header-cta {
        margin-top: 15px;
        justify-content: center;
    }
    
    .about-content {
        margin-top: 40px;
    }
    
    .about-badge {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .top-header {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-desc {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 30px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* RTL Specific Styles */
[dir="rtl"] .contact-info span {
    margin-left: 0;
    margin-right: 25px;
}

[dir="rtl"] .header-social a {
    margin-left: 0;
    margin-right: 8px;
}

[dir="rtl"] .logo-img {
    margin-left: 0;
    margin-right: 15px;
}

[dir="rtl"] .logo-icon {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .navbar-nav .nav-link {
    flex-direction: row-reverse;
}

[dir="rtl"] .dropdown-menu {
    text-align: right;
}

[dir="rtl"] .dropdown-item {
    flex-direction: row !important;
}

[dir="rtl"] .dropdown-item i {
    margin: 0 !important;
}

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

[dir="rtl"] .header-cta {
    flex-direction: row-reverse;
}

[dir="rtl"] .header-cta .btn-primary {
    margin-left: 0;
    margin-right: 10px;
}

@media (max-width: 991px) {
    [dir="rtl"] .navbar-collapse {
        text-align: right;
    }
    
    [dir="rtl"] .header-cta {
        flex-direction: row-reverse;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    min-height: 600px;
    height: 600px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

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

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

.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 44, 0.85) 0%, rgba(9, 51, 29, 0.9) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

/* Slider Controls */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

[dir="rtl"] .slider-prev {
    left: auto;
    right: 30px;
}

[dir="rtl"] .slider-next {
    right: auto;
    left: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-slider, .hero-slider .hero-slide {
        height: auto;
        min-height: 500px;
    }
    .slider-prev, .slider-next {
        display: none;
    }
}