@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Cairo:wght@300;400;500;600;700;800;900&family=Gulzar&family=Noto+Nastaliq+Urdu:wght@400;700&family=Outfit:wght@300;400;500;600;700;800&family=Tajawal:wght@400;500;700;800&display=swap');

:root {
  --primary-color: #0B1F3A; /* Navy Blue */
  --secondary-color: #D4A017; /* Gold */
  --text-dark: #1f2937;
  --text-light: #f3f4f6;
  --bg-light: #ffffff;
  --bg-gray: #f8fafc;
  --transition: all 0.3s ease;
  --font-en: 'Outfit', sans-serif;
  --font-ar: 'Jameel Noori Nastaleeq', 'Noto Nastaliq Urdu', 'Gulzar', 'Amiri', 'Cairo', 'Tajawal', serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-en), var(--font-ar);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--bg-light);
  border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bg-light);
  border: 2px solid var(--bg-light);
}

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

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}

.btn-whatsapp:hover {
  background-color: transparent;
  color: #25D366;
}

/* Header */
.header {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 95%;
  max-width: 1200px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  transition: var(--transition);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo-img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 30px;
  margin: 0 auto;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

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

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(11, 31, 58, 0.8), rgba(11, 31, 58, 0.8)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--bg-light);
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--bg-light);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.bg-gray {
  background-color: var(--bg-gray);
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

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

.section-title p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--secondary-color);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

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

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

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.service-content p {
  color: #64748b;
  margin-bottom: 20px;
}

.service-link {
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  gap: 10px;
}

/* Feature Cards (Why Choose Us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  border-radius: 10px;
  transition: var(--transition);
  z-index: -1;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(212, 160, 23, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--secondary-color);
  color: var(--bg-light);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.feature-card p {
  color: #64748b;
  transition: var(--transition);
}

.feature-card:hover h3,
.feature-card:hover p {
  color: var(--bg-light);
}

/* Counters Section */
.counters-section {
  background-color: var(--primary-color);
  padding: 60px 0;
  color: var(--bg-light);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.counter-item .icon {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.counter-item h2 {
  font-size: 3rem;
  color: var(--bg-light);
  margin-bottom: 5px;
}

.counter-item p {
  font-size: 1.1rem;
  color: #cbd5e1;
}

/* Projects Gallery */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.project-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 31, 58, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--bg-light);
}

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

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

.project-overlay h3 {
  color: var(--bg-light);
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: var(--transition);
}

.project-item:hover .project-overlay h3 {
  transform: translateY(0);
}

/* Google Reviews */
/* Marquee Container */
.reviews-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.reviews-marquee {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

.review-card {
  width: 350px;
  flex-shrink: 0;
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.stars {
  color: #fbbc04; /* Google Gold */
  font-size: 18px;
}

.google-logo {
  width: 25px;
}

.review-text {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 30px;
}

.review-user-bottom {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-user-bottom img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user-info h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.review-user-info p {
  font-size: 0.85rem;
  color: #64748b;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--bg-light);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.faq-answer {
  background-color: var(--bg-light);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  color: #475569;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
  border-top: 1px solid #e2e8f0;
}

.faq-icon {
  transition: var(--transition);
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.9)), url('https://images.unsplash.com/photo-1542013936693-884638332954?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
  padding: 100px 0;
  text-align: center;
  color: var(--bg-light);
}

.cta-section h2 {
  color: var(--bg-light);
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
.footer {
  background-color: #051020;
  color: #cbd5e1;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--bg-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--bg-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  display: inline-block;
  transition: var(--transition);
}

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

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-light);
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Floating Call */
.floating-call {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 20px rgba(212, 160, 23, 0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse-call 2s infinite;
}

.floating-call:hover {
  transform: scale(1.1);
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
  }
}

/* Page Header (Inner Pages) */
.page-header {
  height: 60vh;
  min-height: 400px;
  background-color: var(--primary-color);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-light);
  padding-top: 80px;
}

.page-header h1 {
  color: var(--bg-light);
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    left: 20px;
    width: calc(100% - 40px);
    height: auto;
    max-height: calc(100vh - 120px);
    background-color: var(--bg-light);
    flex-direction: column;
    align-items: stretch;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow-y: auto;
    margin-left: 0;
    gap: 15px;
    
    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    left: 20px;
  }
  
  .nav-menu .nav-link {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
  }
  
  .nav-menu .nav-link::after {
    display: none;
  }
  
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background-color: rgba(212, 160, 23, 0.05);
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid, 
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-col {
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .contact-info li {
    justify-content: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .floating-whatsapp {
    width: 45px;
    height: 45px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
  
  .floating-call {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 70px;
    right: 15px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .counters-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .page-header h1 {
    font-size: 1.6rem;
  }
  
  .page-header p {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Contact Page Specific */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
}

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

.contact-info-box {
  background: var(--primary-color);
  color: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
}

.contact-info-box h3 {
  color: var(--bg-light);
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.info-content h4 {
  color: var(--bg-light);
  margin-bottom: 5px;
}

.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 50px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Header Actions Wrapper */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Language Selector */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background-color: rgba(11, 31, 58, 0.05);
  color: var(--primary-color);
  border: 1px solid rgba(11, 31, 58, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.lang-btn:hover {
  background-color: rgba(212, 160, 23, 0.1);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.lang-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background-color: var(--bg-light);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1001;
  overflow: hidden;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: pointer;
  text-align: left;
}

.lang-option img {
  width: 18px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-option:hover {
  background-color: rgba(212, 160, 23, 0.08);
  color: var(--secondary-color);
}

.lang-option.active {
  background-color: rgba(212, 160, 23, 0.12);
  color: var(--secondary-color);
  font-weight: 600;
}

/* Hide Google Translate Banner and Toolbar */
iframe.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-ORHb-OEVmcd-ti6hGc,
.VIpgJd-ZVi9od-aahShb-jt2eF-wE3Zzd,
#goog-gt-tt,
.goog-te-spinner-pos {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
}
html {
  top: 0px !important;
  margin-top: 0px !important;
}
body {
  top: 0px !important;
  margin-top: 0px !important;
  position: static !important;
}
.goog-logo-link {
  display: none !important;
}
.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}
.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
}

/* RTL Support Styles */
[dir="rtl"] {
  text-align: right;
}

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

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

[dir="rtl"] .nav-menu {
  margin: 0 auto;
}

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

[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .lang-option {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .footer-col {
  text-align: right;
}

[dir="rtl"] .footer-logo {
  justify-content: flex-start;
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-info li {
  justify-content: flex-start;
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .social-links {
  justify-content: flex-start;
}

[dir="rtl"] .footer-col h3::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .footer-links a:hover {
  transform: translateX(-5px);
}

[dir="rtl"] .info-item {
  flex-direction: row-reverse;
  text-align: right;
}

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

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

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

[dir="rtl"] .btn i {
  margin-left: 8px;
  margin-right: 0;
}

[dir="rtl"] .feature-card {
  text-align: right;
}

[dir="rtl"] .feature-icon {
  margin: 0 0 20px auto;
}

[dir="rtl"] .section-title h2::after {
  left: 50%;
  right: auto;
}

/* Fix mobile responsive positions in RTL */
@media (max-width: 991px) {
  [dir="rtl"] .nav-menu {
    right: 20px !important;
    left: 20px !important;
    width: calc(100% - 40px) !important;
    direction: rtl;
  }
  
  [dir="rtl"] .nav-menu.active {
    right: 20px !important;
    left: 20px !important;
  }
  
  [dir="rtl"] .nav-menu .nav-link {
    text-align: center !important;
    padding: 12px 20px !important;
  }
}

/* Promotional Showcase Banner Section */
.promo-banner-section {
  padding: 50px 0;
  background-color: var(--bg-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.promo-banner-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(11, 31, 58, 0.15); /* Navy blue tint shadow */
  border: 4px solid #ffffff; /* Premium white border frame */
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  position: relative;
  background-color: #ffffff;
}

@media (hover: hover) {
  .promo-banner-wrapper:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 25px 50px rgba(11, 31, 58, 0.25), 0 0 20px rgba(212, 160, 23, 0.3); /* Gold glow */
  }
}

.promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .promo-banner-section {
    padding: 30px 0;
  }
  .promo-banner-wrapper {
    border-radius: 10px;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 20px rgba(11, 31, 58, 0.1);
  }
}

@media (max-width: 480px) {
  .promo-banner-section {
    padding: 15px 0;
  }
  .promo-banner-section .container {
    padding: 0 10px; /* Maximize width on mobile to make text highly legible */
  }
  .promo-banner-wrapper {
    border-radius: 6px;
    border: 1px solid #ffffff;
    box-shadow: 0 5px 15px rgba(11, 31, 58, 0.1);
  }
}

/* Center Language/Translation Button on Mobile Devices */
@media (max-width: 991px) {
  .header .container {
    position: relative;
  }
  
  .lang-selector {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
  }
  
  .lang-dropdown {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, 10px) !important;
  }
  
  .lang-dropdown.active {
    transform: translate(-50%, 0) !important;
  }
}

/* ========================================================
   BILINGUAL IN-HTML TRANSLATION (.en-text & .ar-text)
   ======================================================== */
/* By default (English LTR): show .en-text, hide .ar-text */
.ar-text {
  display: none !important;
}
.en-text {
  display: inline;
}
div.en-text, p.en-text, h1.en-text, h2.en-text, h3.en-text, h4.en-text, li.en-text, ul.en-text, section.en-text {
  display: block;
}

/* When Arabic RTL is active: hide .en-text, show .ar-text */
body.rtl-active .en-text {
  display: none !important;
}
body.rtl-active .ar-text {
  display: inline !important;
}
body.rtl-active div.ar-text,
body.rtl-active p.ar-text,
body.rtl-active h1.ar-text,
body.rtl-active h2.ar-text,
body.rtl-active h3.ar-text,
body.rtl-active h4.ar-text,
body.rtl-active li.ar-text,
body.rtl-active ul.ar-text,
body.rtl-active section.ar-text {
  display: block !important;
}

/* ========================================================
   PROFESSIONAL ARABIC / URDU NASTALIQ & CALLIGRAPHY TYPOGRAPHY
   ======================================================== */
body.rtl-active,
body.rtl-active h1,
body.rtl-active h2,
body.rtl-active h3,
body.rtl-active h4,
body.rtl-active h5,
body.rtl-active h6,
body.rtl-active p,
body.rtl-active span,
body.rtl-active a,
body.rtl-active li,
body.rtl-active label,
body.rtl-active input,
body.rtl-active textarea,
body.rtl-active select,
body.rtl-active button,
body.rtl-active .nav-link,
body.rtl-active .btn,
body.rtl-active .lang-btn,
body.rtl-active .section-title h2,
body.rtl-active .hero-content h1,
body.rtl-active .feature-card h3,
body.rtl-active .service-content h3,
body.rtl-active .faq-question,
body.rtl-active .faq-answer,
body.rtl-active .review-text {
  font-family: 'Jameel Noori Nastaleeq', 'Noto Nastaliq Urdu', 'Gulzar', 'Amiri', 'Cairo', 'Tajawal', serif !important;
  letter-spacing: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.rtl-active h1,
body.rtl-active h2,
body.rtl-active h3,
body.rtl-active h4,
body.rtl-active h5,
body.rtl-active h6 {
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

body.rtl-active p,
body.rtl-active .faq-answer,
body.rtl-active .review-text,
body.rtl-active li {
  line-height: 2.1 !important;
  font-weight: 500 !important;
}

body.rtl-active .nav-link,
body.rtl-active .btn,
body.rtl-active .lang-btn {
  font-weight: 600 !important;
}




