:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary-color: rgb(245, 158, 11);
    --secondary-dark: #d97706;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --light-color: #f8f9fa;
    --dark-color: #1f2937;
    --gradient-primary: linear-gradient(135deg, #1e40af, #3b82f6);
    --gradient-secondary: linear-gradient(135deg, #f59e0b, #f97316);
    --gradient-dark: linear-gradient(135deg, #1f2937, #374151);
    --font-family: 'Cairo', 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     --Primary-color: #8B4513;     
  --Secondary-color: #2C5F88;    
  --accent-color: #DAA520;       
  --light-wood: #D2B48C;         
  --dark-wood: #654321;          
  --text-dark: rgb(44, 62, 80);
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
  --gradient-Primary: linear-gradient(135deg, var(--Primary-color), var(--dark-wood));
  --gradient-Secondary: linear-gradient(10deg, var(--Secondary-color), #1a4b6b92);
  --gradient-accent: linear-gradient(135deg, var(--accent-color), #b8941c);
  --gradient-text: linear-gradient(135deg, var(--accent-color), #ff6b35);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-Primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.loading-logo i {
    font-size: 3rem;
    margin-left: 1rem;
    animation: bounce 1s infinite;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.modern-navbar {
  background: rgba(44, 95, 136, 0.95);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.modern-navbar.scrolled {
  background: rgba(44, 95, 136, 0.98);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Navbar Background Shapes */
.navbar-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.nav-shape {
  position: absolute;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 50%;
  animation: navFloat 8s ease-in-out infinite;
}

.nav-shape-1 {
  width: 60px;
  height: 60px;
  top: -30px;
  left: 10%;
  animation-delay: 0s;
}

.nav-shape-2 {
  width: 40px;
  height: 40px;
  top: -20px;
  right: 20%;
  animation-delay: 2s;
}

.nav-shape-3 {
  width: 80px;
  height: 80px;
  bottom: -40px;
  right: 5%;
  animation-delay: 4s;
}

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

/* Brand Design */
.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.brand-icon {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.brand-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.icon-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-secondary);
  border-radius: 14px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.brand-icon:hover .icon-glow {
  opacity: 0.3;
  animation: pulse 2s infinite;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-color);
}

.brand-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Navigation Links */
.navbar-nav .nav-link {
  font-weight: 600;
  margin: 0 8px;
  padding: 12px 16px !important;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9) !important;
}

.nav-icon {
  font-size: 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background: rgba(218, 165, 32, 0.2);
  color: white !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link:hover .nav-icon {
  transform: scale(1.2);
  color: white;
}

/* Custom Mobile Toggle */
.custom-toggler {
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.custom-toggler:focus {
  box-shadow: none;
}

.toggler-line {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--gradient-secondary);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.custom-toggler:hover .toggler-line {
  background: var(--text-light);
}

/* CTA Button */
.navbar-cta {
  margin-left: 20px;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--gradient-secondary);
  color: white !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(218, 165, 32, 0.4);
}

.cta-icon {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cta-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.cta-number {
  font-size: 1rem;
  font-weight: 700;
}

.cta-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  border-radius: 50px;
  transform: translate(-50%, -50%) scale(0);
  animation: ctaPulse 3s infinite;
}

@keyframes ctaPulse {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  70% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}
/* Hero Section Enhanced */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    padding: 200px 0px 0px !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-Secondary);
    z-index: -1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(245, 158, 11, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

.hero-title,h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.title-highlight {
    color: var(--secondary-color);
    display: block;
    font-size: 0.8em;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.hero-buttons .primary-btn,.cta-buttons .primary-btn{
    background: var(--gradient-secondary);
    color: white;
}
.pulse-btn {
    animation: pulse 2s infinite;
}

.hover-fill {
    position: relative;
    overflow: hidden;
      color: white !important;
}

.hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.3s ease;
    z-index: -1;
  

}

.hover-fill:hover::before {
    left: 0;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-stat {
    padding: 1rem;
    transition: var(--transition);
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--secondary-dark);
    
   
}

.hero-stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--accent-color) !important;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
/* About Section Enhanced */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-images {
    position: relative;
}

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

.main-image img {
    border-radius: 20px;
    transition: var(--transition);
    
}

.main-image:hover img {
    transform: scale(1.02);
}

.secondary-image:hover img {
    transform: scale(1.05);
}

.floating-card {
  display: none;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md); 
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}




.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.floating-card h6 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.floating-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}
.experience-badge {
  display: none;
  background: var(--gradient-secondary);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: pulse 3s infinite;
  font-size: 0.9rem;
}
@media screen and (min-width:320px) {
.floating-card {
  display: block;
  position: absolute;
  bottom: -15px;
  left: 0px;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md); 
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.experience-badge {
  display: block;
  position: absolute;
  top: -15px;
  right: 0px;
  background: var(--gradient-secondary);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: pulse 3s infinite;
  font-size: 0.9rem;
} 
}

@media (min-width: 768px) {
  .floating-card {
    bottom: -25px;
    left: -15px;
    padding: 1.25rem;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
  }
    .experience-badge {
    top: -25px;
    right: -25px;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .floating-card {
    bottom: -30px;
    left: -30px;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
  }
   .experience-badge {
    top: -30px;
    right: -30px;
    padding: 2rem;
    border-radius: 20px;
    font-size: 1.1rem;
  }
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(30, 64, 175, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 1rem;
}

.feature-item:hover {
    background: rgba(30, 64, 175, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-Secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: 1rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: var(--gradient-secondary);
}

.cta-buttons .btn {
    margin: 0.5rem 0.5rem 0.5rem 0;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-primary{
    color: var(--Secondary-color);
    border: 1px solid var(--Secondary-color);
}
.btn-outline-primary:hover{
    background: var(--gradient-secondary);
    border: 1px solid var(--gradient-secondary);
}
/* Section Backgrounds */
.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

/* Section Titles Enhanced */
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--Secondary-color);
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section Enhanced */
.services-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
    transition: left 0.5s ease;
}

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

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

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-Secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-secondary);
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-card:hover .feature-tag {
    background: var(--secondary-color);
    color: white;
}

/* Services Highlight Enhanced */
.services-highlight {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/services-bg.avif') center/cover no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    color: white;
}

/* Grain Overlay */
.services-highlight::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" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/* Glassmorphism Card */
.services-highlight .service-item {
    padding: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
}

.services-highlight .service-item:hover {
    transform: translateX(10px) !important; 
}

.services-highlight .service-item i {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    color: #fff !important;
    font-size: 1.2rem;
}

.service-item h5 {
    margin-bottom: 0.25rem;
    font-weight: 700;
    color: #fff;
    color:var(--warning-color) ;
}

/* Gallery Section Enhanced */
.gallery-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(245, 158, 11, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.gallery-content i {
    font-size: 2rem;
    opacity: 0.8;
}
/* Location Cards Enhanced */
.locations-section {
    background: white;
}

.location-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.location-card:hover {
     transform: translateY(-8px) rotate(2deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.location-card i {
    font-size: 2rem;
    color: var(--Secondary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.location-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.location-card span {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.location-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Amman Areas Enhanced */
.amman-areas {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
}

.amman-areas::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" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(30,64,175,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.area-tag {
    display: inline-block;
    background: var(--gradient-Secondary);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.area-tag::before {
    content: '';
    position: absolute;
    top: 0;
    z-index: -1;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.3s ease;
}

.area-tag:hover::before {
    left: 0;
}

.area-tag:hover {
    transform: scale(1.05);
    cursor: pointer;
}
/* Why Choose Us Section */
.why-choose-section {
    background: white;
    position: relative;
}

.why-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid;
    border-color: var(--secondary-dark) transparent var(--secondary-dark) transparent ;
    border-radius: 30px;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-Secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

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

.why-card h4 {
    color: var(--Secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}
/* Contact Section Enhanced */
.contact-section {
  background: 
    linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)),
    url("../images/contact-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
}


.contact-item {
    position: relative;
    z-index: 2;
    transition: var(--transition);
    border: 1px solid white;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-md);
    background: rgba(44, 62, 80, 0.2);
}

.contact-item:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-Secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

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

.contact-phone {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-phone:hover {
    color: white;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
    transform: scale(1.05);
}

.contact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.quote-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.quote-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="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.contact-stats {
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 1rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item .stat-label {
    font-size: 1rem;
    font-weight: 500;
}
.gwt{
    text-decoration: none;
    
    transform: scale(1.2);
    margin: 0 5px;
    display: inline-block;
}
/* scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 51%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-arrow:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}
/* Floating Call Button Enhanced */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-call-btn .btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: glow 2s infinite;
    transition: var(--transition);
   
}
.btn-warning{
    background: var(--gradient-secondary);
    color: white;
}
.floating-call-btn .btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}
/* Footer Enhanced */
footer {
    background: var(--gradient-dark) !important;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

footer::before {
    content: '';
    position: absolute;
    z-index: -1;
    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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-links li a {
    transition: var(--transition);
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--secondary-color) !important;
    transform: translateX(5px);
}

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

.contact-info a:hover {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}
.blog-card img.blog-img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover img.blog-img {
  transform: scale(1.05);
}
.blog-card h3{
    color: var(--Secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.8); }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media screen and (min-width:992px) {
    .hero-section {
    padding: 100px 0px 0px !important;
}
}