/**
 * Custom CSS for Alwafi Pharmacy Recruitment Platform
 * RTL Support for Arabic Language with EXPO ARABIC Fonts
 */

/* Font Definitions */
@font-face {
    font-family: 'Expo Arabic Light';
    src: url('../fonts/EXPOARABIC-LIGHT.OTF') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Expo Arabic Book';
    src: url('../fonts/EXPO ARABIC BOOK.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Expo Arabic Semibold';
    src: url('../fonts/EXPO ARABIC SEMIBOLD.TTF') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Expo Arabic Bold';
    src: url('../fonts/EXPOARABIC-BOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #388E3C, #0288D1);
    --secondary-gradient: linear-gradient(135deg, #66BB6A, #29B6F6);
    --primary-color: #388E3C;
    --secondary-color: #0288D1;
    --light-color: #E8F5E9;
    --dark-color: #1B5E20;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
}

/* Global Styles */
body {
    font-family: 'Expo Arabic Book', sans-serif;
    background-color: var(--gray-100);
    color: var(--gray-800);
    direction: rtl;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    font-family: 'Expo Arabic Semibold', sans-serif;
    transition: color 0.3s ease;
}

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

/* Gradient Button Styles */
.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    font-family: 'Expo Arabic Semibold', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover, .btn-gradient:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 142, 60, 0.3);
    color: var(--white);
}

.btn-gradient-secondary {
    background: var(--secondary-gradient);
    border: none;
    color: var(--white);
    font-family: 'Expo Arabic Semibold', sans-serif;
    transition: all 0.3s ease;
}

.btn-gradient-secondary:hover, .btn-gradient-secondary:focus {
    opacity: 0.9;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
    font-family: 'Expo Arabic Semibold', sans-serif;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-sm i {
    font-size: 0.9rem;
}

.navbar-brand img.logo-circle {
    width: 90px;
    height: 70px;
}

.navbar .nav-link {
    font-family: 'Expo Arabic Semibold', sans-serif;
    font-weight: 600;
    padding: 8px 15px !important;
    border-radius: 25px;
    margin: 0 2px;
    color: rgb(31, 25, 25);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-collapse {
    justify-content: space-between;
}

.navbar-nav {
    align-items: center;
}

/* تحسين زر المستخدم عند تسجيل الدخول */
#userDropdown {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-family: 'Expo Arabic Semibold', sans-serif;
}

.gap-2 {
    gap: 1rem !important;
}

.d-flex {
    display: -ms-flexbox!important;
    display: flex !important;
}

/* Dropdown item styles consolidated elsewhere */


/* Hero Section المطور */
.hero-about {
    background: linear-gradient(135deg, #0d6efd 0%, #198754 50%, #fd7e14 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: drift 20s infinite linear;
}

@keyframes drift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-20px) translateY(-20px); }
}

.hero-about::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: rotate 30s infinite linear;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Section for News */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    padding: 5rem 0 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Hero Section for Blog */
.blog-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Hero Section for Blog Post */
.blog-post-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* تحسين الشعار */
.logo-wrapper {
    position: relative;
    z-index: 10;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) scale(1) rotate(0deg);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    25% { 
        transform: translateY(-15px) scale(1.05) rotate(2deg);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    75% { 
        transform: translateY(-10px) scale(1.02) rotate(-1deg);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    }
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #3e7c78, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 50%;
    z-index: -1;
    animation: colorRotate 6s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes colorRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* تحسين النصوص */
.hero-title {
    animation: slideInFromRight 1s ease-out;
    position: relative;
}

.hero-title h1 {
    font-family: 'Expo Arabic Bold', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero-subtitle p {
    font-family: 'Expo Arabic Light', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero-subtitle {
    animation: slideInFromLeft 1.2s ease-out;
    position: relative;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Cards and Boxes */
.card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: var(--secondary-gradient);
    color: var(--white);
    font-family: 'Expo Arabic Bold', sans-serif;
    font-weight: 600;
    border: none;
}

.job-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card .card-body {
    flex: 1;
    font-family: 'Expo Arabic Book', sans-serif;
}

/* بطاقات محسنة */
.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0d6efd, #198754, #fd7e14, #dc3545, #6f42c1);
    background-size: 300% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
    height: 8px;
    animation-duration: 1s;
}

/* أيقونات محسنة */
.icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #198754);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    animation: iconPulse 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* News and Activities Section */
.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    border: none;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #0d6efd, #198754);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Expo Arabic Semibold', sans-serif;
    font-weight: 600;
}

.activity-card {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #198754);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.1) rotateY(180deg);
}

.date-badge {
    background: #f8f9fa;
    color: #6c757d;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-family: 'Expo Arabic Book', sans-serif;
    display: inline-block;
    margin-bottom: 1rem;
}

.tab-pane {
    min-height: 400px;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 25px;
    margin: 0 10px;
    padding: 12px 25px;
    font-family: 'Expo Arabic Semibold', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #0d6efd, #198754);
    color: white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

.nav-tabs .nav-link:hover {
    transform: translateY(-2px);
}

.section-title {
    background: linear-gradient(135deg, #0d6efd, #198754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Expo Arabic Bold', sans-serif;
    font-weight: 700;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #0d6efd, #198754);
    transform: translateX(50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
}

.timeline-item:nth-child(even) {
    text-align: left;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
    font-family: 'Expo Arabic Book', sans-serif;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-marker {
    position: absolute;
    top: 20px;
    right: 50%;
    width: 20px;
    height: 20px;
    background: #0d6efd;
    border-radius: 50%;
    transform: translateX(50%);
    border: 4px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Dropdown Menu Improvements removed to consolidate styles */


/* Blog Section */
.category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: inherit;
    text-decoration: none !important;
}

.category-card:hover {
    color: inherit;
    text-decoration: none !important;
}

/* Breadcrumb styling */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "←";
    color: #6c757d;
}er;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd, #198754);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-title {
    font-family: 'Expo Arabic Bold', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-description {
    color: #6c757d;
    font-family: 'Expo Arabic Book', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-topics {
    list-style: none;
    padding: 0;
}

.category-topics li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #495057;
    font-family: 'Expo Arabic Book', sans-serif;
    font-size: 0.9rem;
    position: relative;
    padding-right: 1.5rem;
}

.category-topics li:last-child {
    border-bottom: none;
}

.category-topics li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #198754;
    font-weight: bold;
}

.stats-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3rem;
    font-family: 'Expo Arabic Bold', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #0d6efd, #198754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-family: 'Expo Arabic Semibold', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.newsletter-section {
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    color: white;
    padding: 4rem 0;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    font-family: 'Expo Arabic Book', sans-serif;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
    background: white;
    color: #0d6efd;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-family: 'Expo Arabic Semibold', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Expo Arabic Semibold', sans-serif;
    font-weight: 600;
}

/* Blog Post Section */
.blog-post-content {
    line-height: 1.8;
    font-size: 1.1rem;
    font-family: 'Expo Arabic Book', sans-serif;
}

.blog-post-content h2, .blog-post-content h3, .blog-post-content h4 {
    color: #2c3e50;
    font-family: 'Expo Arabic Bold', sans-serif;
    margin: 2rem 0 1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.post-meta {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.post-tags .badge {
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #0d6efd, #198754);
    font-family: 'Expo Arabic Semibold', sans-serif;
}

.related-post-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.widget-title {
    color: #2c3e50;
    font-family: 'Expo Arabic Bold', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #0d6efd, #198754);
}

.recent-post-item {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    font-family: 'Expo Arabic Book', sans-serif;
}

.recent-post-item:hover {
    background: #f8f9fa;
    transform: translateX(-5px);
}

.recent-post-item:last-child {
    border-bottom: none;
}

/* Products Section */
.products-section {
    position: relative;
    overflow: hidden;
}

.product-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Expo Arabic Semibold', sans-serif;
    z-index: 2;
}

.product-img-container {
    height: 150px;
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    transform: translateY(20px);
    transition: transform 0.3s ease;
    font-family: 'Expo Arabic Semibold', sans-serif;
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.product-body {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
}

.product-title {
    font-size: 1rem;
    font-family: 'Expo Arabic Bold', sans-serif;
}

.product-price {
    font-size: 1.1rem;
    font-family: 'Expo Arabic Semibold', sans-serif;
}

.add-to-cart {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Team Section */
.team-card {
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(80, 99, 106, 0.1);
    position: relative;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-img-container {
    width: 200px;
    height: 266px; /* Maintains 3/4 aspect ratio (200 * 4/3) */
    position: relative;
    overflow: hidden;
    border: 3px solid var(--gray-200);
    border-radius: 10px;
    margin: 0 auto;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
    aspect-ratio: 3/4;
}

.team-info {
    background: transparent;
    padding: 0;
    text-align: center;
}

.team-info h5 {
    font-family: 'Expo Arabic Bold', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-info p {
    font-family: 'Expo Arabic Book', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.team-info small {
    font-family: 'Expo Arabic Book', sans-serif;
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* تحسين القسم المجتمعي */
.community-card {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.1), rgba(25, 135, 84, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.community-card:hover::before {
    opacity: 1;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.community-image {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.community-card:hover .community-image img {
    transform: scale(1.1);
}

/* تأثيرات النص المتدرجة */
.gradient-text {
    background: linear-gradient(135deg, #000000, #ffffff, #fd7e14);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Expo Arabic Bold', sans-serif;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes textGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* تأثيرات التحميل */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* تحسين الأداء */
.about-card,
.team-card,
.community-card {
    will-change: transform;
}

/* تأثيرات إضافية للجاذبية */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
}

.floating-elements::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Form Styling */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-300);
    font-size: 1rem;
    font-family: 'Expo Arabic Book', sans-serif;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(2, 136, 209, 0.25);
}

.form-label {
    font-family: 'Expo Arabic Semibold', sans-serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control-lg, .form-select-lg {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.form-control-lg:focus, .form-select-lg:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(56, 142, 60, 0.25);
    transform: translateY(-2px);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-family: 'Expo Arabic Light', sans-serif;
}

.invalid-feedback {
    display: none;
}

.was-validated .invalid-feedback,
.form-control:invalid ~ .invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: #dc3545;
    font-family: 'Expo Arabic Book', sans-serif;
}

/* Modal Styling */
.modal-xl {
    max-width: 1200px;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-section {
    position: relative;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(248, 249, 250, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.form-section:hover {
    background: rgba(248, 249, 250, 0.8);
    border-color: rgba(56, 142, 60, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-family: 'Expo Arabic Bold', sans-serif;
    font-weight: 600;
    color: var(--gray-900);
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.modal.show .modal-dialog {
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-section {
    animation: slideInUp 0.6s ease-out;
}

.form-section:nth-child(2) { animation-delay: 0.1s; }
.form-section:nth-child(3) { animation-delay: 0.2s; }
.form-section:nth-child(4) { animation-delay: 0.3s; }

/* Map Styling */
.map-container {
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.branches-panel {
    background-color: var(--gray-100);
    border-right: 2px solid var(--gray-200);
}

.branch-buttons {
    max-height: 400px;
    overflow-y: auto;
}

.branch-btn {
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-family: 'Expo Arabic Semibold', sans-serif;
}

.branch-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.branch-btn.active {
    background-color: rgba(63, 178, 160, 0.1);
}

#map {
    border-radius: 0 12px 12px 0;
}

.leaflet-container {
    background: var(--gray-100);
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.leaflet-control-zoom a {
    background-color: var(--white) !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--gray-300) !important;
}

.leaflet-control-zoom a:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Sidebar Social Icons */
.sidebar-social-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-social-icons .social-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.sidebar-social-icons .social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.sidebar-social-icons .social-icon:hover::before {
    left: 100%;
}

.sidebar-social-icons .social-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sidebar-social-icons .facebook { background: linear-gradient(135deg, #1877f2, #42a5f5); }
.sidebar-social-icons .tiktok { background: linear-gradient(135deg, #000000, #ff0050); }
.sidebar-social-icons .instagram { background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045); }
.sidebar-social-icons .whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.sidebar-social-icons .youtube { background: linear-gradient(135deg, #ff0000, #ff4444); }
.sidebar-social-icons .telegram { background: linear-gradient(135deg, #0088cc, #229ed9); }

@keyframes socialPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); }
}

.sidebar-social-icons .social-icon {
    animation: socialPulse 3s ease-in-out infinite;
}

.sidebar-social-icons .social-icon:nth-child(1) { animation-delay: 0s; }
.sidebar-social-icons .social-icon:nth-child(2) { animation-delay: 0.5s; }
.sidebar-social-icons .social-icon:nth-child(3) { animation-delay: 1s; }
.sidebar-social-icons .social-icon:nth-child(4) { animation-delay: 1.5s; }
.sidebar-social-icons .social-icon:nth-child(5) { animation-delay: 2s; }
.sidebar-social-icons .social-icon:nth-child(6) { animation-delay: 2.5s; }

/* Admin Dashboard */
.dashboard-stats .card {
    border-radius: 10px;
    border-right: 4px solid;
}

.dashboard-stats .card-green { border-right-color: var(--primary-color); }
.dashboard-stats .card-blue { border-right-color: var(--secondary-color); }
.dashboard-stats .card-warning { border-right-color: #FFC107; }
.dashboard-stats .card-danger { border-right-color: #DC3545; }
.dashboard-stats .card-success { background: linear-gradient(135deg, var(--primary-color), #66bb6a); color: var(--white); }

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.2;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    transition: all 0.3s ease;
}

.dashboard-stats .card:hover .stat-icon { transform: scale(1.1); }

.card-body h5 { font-size: 1.1rem; font-weight: 600; }
.card-body h2 { font-size: 2.5rem; margin: 0.5rem 0; }

/* Status Badges */
.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 50rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending { background-color: #FFF3CD; color: #856404; }
.status-reviewed { background-color: #CCE5FF; color: #004085; }
.status-rejected { background-color: #F8D7DA; color: #721C24; }
.status-accepted { background-color: #D4EDDA; color: #155724; }

/* Gallery */
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

/* Footer */
.footer {
    background-color: var(--gray-100);
    color: var(--gray-700);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--gray-700);
    transition: all 0.3s ease;
}

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

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-700);
    transition: all 0.3s ease;
}

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

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    width: 250px;
    background: linear-gradient(180deg, var(--white), var(--light-color));
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sidebar-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    padding-top: 1.5rem;
    overflow-y: auto;
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.sidebar-logo img {
    width: 100px;
    transition: transform 0.3s ease;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.sidebar-logo img:hover { transform: scale(1.05); }

.sidebar-logo .badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 20px;
}

.sidebar .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    margin: 0.2rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover {
    background: rgba(76, 175, 80, 0.1);
    color: var(--dark-color);
}

.sidebar .nav-link.active {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar .nav-link i { margin-left: 0.75rem; }

.main-content {
    margin-right: 250px;
    padding: 2rem;
}

/* Table Styling */
.table-card { border-radius: 12px; overflow: hidden; }

.dataTable thead th {
    background: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .modal-xl { max-width: 95%; margin: 1rem auto; }
    .map-container .row { margin: 0; }
    .branches-panel { padding: 1.5rem; }
    #map { height: 450px !important; }
    .hero-about {
        padding: 100px 0;
    }

    .icon-wrapper {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 992px) {
    .hero-banner { padding: 4rem 0; }
    .map-container .col-lg-4 { order: 2; }
    .map-container .col-lg-8 { order: 1; }
    .branches-panel { border-right: none; border-bottom: 2px solid var(--gray-200); border-radius: 12px 12px 0 0; }
    #map { border-radius: 0 0 12px 12px; height: 400px !important; }
    .branch-buttons { max-height: 200px; }
    .branch-btn { font-size: 0.85rem; padding: 0.6rem 0.8rem; }
    .sidebar-social-icons {
        position: fixed;
        right: 10px;
        bottom: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 10px;
    }
    .sidebar-social-icons .social-icon { width: 40px; height: 40px; font-size: 1.2rem; }
    .product-img-container {
        height: 120px;
    }
    .product-title {
        font-size: 0.95rem;
    }
    .product-price {
        font-size: 1rem;
    }
    .hero-about {
        padding: 80px 0;
    }

    .logo-wrapper {
        width: 240px !important;
        height: 240px !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    .hero-banner { padding: 4rem 0; }
    .navbar {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.4) !important;
    }
}

@media (max-width: 768px) {
    .hero-banner { padding: 3rem 0; }
    .gallery-item img { height: 160px; }
    .map-container { height: 300px; margin: 0 -15px; }
    .branches-panel { padding: 1rem; }
    .branch-buttons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; max-height: 150px; }
    .branch-btn { font-size: 0.8rem; padding: 0.5rem; margin-bottom: 0; }
    #map { height: 300px !important; }
    .branches-title { font-size: 1rem; text-align: center; }
    .sidebar { position: static; width: 100%; height: auto; }
    .main-content { margin-right: 0; padding: 1rem; }
    .sidebar-sticky { height: auto; }
    .modal-xl { max-width: 98%; margin: 0.5rem auto; }
    .modal-header { padding: 1.5rem 1rem; }
    .modal-body .container-fluid { padding: 1rem !important; }
    .form-section { padding: 1rem; margin-bottom: 0.75rem; }
    .modal-icon { width: 50px; height: 50px; }
    .modal-title { font-size: 1.25rem; }
    .section-title { font-size: 1.1rem; }
    .btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
    .hero-about {
        padding: 60px 0;
        min-height: 90vh;
    }

    .logo-wrapper {
        width: 200px !important;
        height: 200px !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .about-card {
        margin-bottom: 20px;
    }
    .hero-banner { 
        min-height: 70vh;
    }
    .hero-content h1 {
        font-size: 2rem !important;
    }
    .hero-content .lead {
        font-size: 1.1rem;
    }
    .navbar {
        background: rgba(255, 255, 255, 0.2) !important;
    }
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.5) !important;
    }

    .timeline::before {
        right: 20px;
        transform: none;
    }

    .timeline-content {
        width: 100%;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 40px;
    }

    .timeline-item {
        text-align: right !important;
    }

    .timeline-marker {
        right: 10px;
        transform: none;
    }

    .blog-hero {
        padding: 50px 0;
    }

    .category-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .blog-post-hero {
        padding: 40px 0;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .team-img-container {
        width: 150px;
        height: 200px;
    }

    .team-info h5 {
        font-size: 1rem;
    }

    .team-info p {
        font-size: 0.85rem;
    }

    .team-info small {
        font-size: 0.75rem;
    }
    .custom-footer {
        padding-bottom: 60px !important; /* أو أي قيمة تناسبك */
    }
}

@media (max-width: 576px) {
    body { font-size: 0.95rem; }
    .hero-banner { padding: 2rem 0; }
    .hero-banner h1 { font-size: 2rem; }
    .gallery-item img { height: 140px; }
    .map-container { height: 250px; }
    .branch-buttons { grid-template-columns: 1fr; max-height: 120px; }
    .branch-btn { text-align: center; }
    .branch-btn i { display: none; }
    #map { height: 250px !important; }
    .map-container .shadow { box-shadow: none !important; border: 1px solid var(--gray-200); }
    .sidebar-social-icons { right: 5px; bottom: 10px; gap: 8px; }
    .sidebar-social-icons .social-icon { font-size: 1rem; }
    .modal-xl { max-width: 100%; margin: 0; height: 100vh; }
    .modal-dialog-centered { align-items: flex-start; }
    .modal-content { border-radius: 0; height: 100vh; }
    .modal-body { flex: 1; overflow-y: auto; }
    .d-grid.gap-2.d-md-flex { display: grid !important; gap: 0.5rem; }
    .product-img-container {
        height: 100px;
    }
    .product-title {
        font-size: 0.9rem;
    }
    .product-price {
        font-size: 0.95rem;
    }
    .product-body {
        padding: 0.75rem;
    }
    .hero-about {
        padding: 40px 0;
    }

    .logo-wrapper {
        width: 180px !important;
        height: 180px !important;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .team-img-container {
        width: 120px;
        height: 160px;
    }

    .team-info h5 {
        font-size: 0.9rem;
    }

    .team-info p {
        font-size: 0.8rem;
    }

    .team-info small {
        font-size: 0.7rem;
    }
    .custom-footer {
        padding-bottom: 60px !important; /* أو أي قيمة تناسبك */
    }
}

/* تأثيرات لمسية للجوال */
@media (hover: none) and (pointer: coarse) {
    .about-card:active {
        transform: scale(0.98);
    }

    .team-card:active {
        transform: scale(0.98);
    }

    .community-card:active {
        transform: scale(0.98);
    }
}


/* Navbar Styles */
.navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    background: rgba(247, 240, 240, 0.1) !important;
    display: -ms-flexbox!important;
    display: flex !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.1) !important;
}


.navbar .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link:hover i {
    transform: scale(1.1);
}

/* Dropdown Styles */
.navbar .dropdown-menu {
    background: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
    z-index: 9999 !important;
    min-width: 200px;
    margin-top: 0;
}

.navbar .dropdown-menu.show {
    display: block !important;
}

@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        border: 1px solid rgba(0,0,0,0.1) !important;
        background: #ffffff !important;
        margin: 5px 0 !important;
        padding: 10px 0 !important;
        min-width: auto !important;
        display: none !important;
    }
    
    .navbar .dropdown-menu.show {
        display: block !important;
    }
    
    .navbar .dropdown-toggle::after {
        margin-right: auto;
        margin-left: 0.5em;
    }
    
    .navbar .dropdown-item {
        padding: 10px 30px !important;
        color: #333 !important;
    }
    
    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background: #f8f9fa !important;
        color: var(--primary-color) !important;
    }
}

.navbar .dropdown-item {
    padding: 10px 20px;
    color: #333 !important;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.navbar .dropdown-item:hover {
    background: #f8f9fa !important;
    color: var(--primary-color) !important;
    padding-right: 25px;
}

.navbar .dropdown-item i {
    width: 25px;
    color: var(--primary-color);
}


/* Button Styles */
.btn-custom {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--secondary-gradient);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-800);
    font-size: 20px;
    margin: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icon.snapchat {
    background: #FFFC00;
    color: #000;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Banner */
.hero-banner {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('') no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.a {
    position: relative;
    padding-top: 320px;
    text-align: center;
}

#about-section {
    scroll-margin-top: 60px;
}

.b {
    
    padding-top: 100px;
  
}

.p-header {
    position: relative;
    padding-top: 140px;
    text-align: center;
}

/* End of file cleanup */
