/* ==========================================================================
   DASMAN AL ALAM General Contracting - Custom Stylesheet
   ========================================================================== */

:root {
  --primary-navy: #061c3d;
  --secondary-navy: #04142e;
  --light-navy: #0a2550;
  --accent-orange: #f36b21;
  --accent-orange-hover: #e05a10;
  --text-dark: #2c3e50;
  --text-muted: #666666;
  --bg-light: #f4f6f9;
  --bg-lighter: #f8fafc;
  --border-color: #e2e8f0;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--secondary-navy);
  color: #ffffff;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: var(--accent-orange);
}

.top-bar i {
  color: #ffffff;
  margin-right: 6px;
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Navigation Bar
   -------------------------------------------------------------------------- */
.navbar-custom {
  background-color: #ffffff;
  padding: 12px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-link-custom {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-navy) !important;
  padding: 8px 14px !important;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--accent-orange) !important;
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--accent-orange);
}

/* --------------------------------------------------------------------------
   Page Banner & Breadcrumbs
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(6, 28, 61, 0.78) 0%, rgba(4, 20, 46, 0.88) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner-title {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.page-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.page-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
  color: var(--accent-orange);
}

.page-breadcrumb .separator {
  color: var(--accent-orange);
}

.page-breadcrumb .active {
  color: #ffffff;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Hero Carousel Section
   -------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  width: 100%;
}

.hero-slide {
  height: 580px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(6, 28, 61, 0.65) 0%, rgba(4, 20, 46, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 12px;
  opacity: 0.95;
}

.hero-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 28px;
  color: #ffffff;
}

.btn-hero {
  background-color: var(--secondary-navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 36px;
  border-radius: 50px;
  border: 2px solid var(--secondary-navy);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-hero:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 107, 33, 0.4);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 0.8;
  z-index: 5;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #ffffff;
}

.carousel-indicators .active {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
}

/* --------------------------------------------------------------------------
   Decorators & Section Titles
   -------------------------------------------------------------------------- */
.section-title-container {
  margin-bottom: 30px;
}

.section-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.section-title strong {
  font-weight: 700;
}

.decorator-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  margin-bottom: 20px;
}

.decorator-dots.centered {
  justify-content: center;
}

.dot {
  width: 4px;
  height: 4px;
  background-color: var(--primary-navy);
  border-radius: 50%;
}

.decorator-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary-navy);
  margin-left: 4px;
}

/* --------------------------------------------------------------------------
   About Us Section
   -------------------------------------------------------------------------- */
.about-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: #555555;
  margin-bottom: 20px;
  text-align: justify;
}

.btn-orange {
  background-color: var(--accent-orange);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(243, 107, 33, 0.25);
}

.btn-orange:hover {
  background-color: var(--accent-orange-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(243, 107, 33, 0.35);
}

.about-image-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-container:hover img {
  transform: scale(1.03);
}

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

.service-card {
  background-color: transparent;
  border: none;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.service-img-wrapper {
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.service-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 12.5px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 12px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  color: var(--accent-orange-hover);
  gap: 10px;
}

/* --------------------------------------------------------------------------
   Projects Table Styling
   -------------------------------------------------------------------------- */
.projects-table {
  font-size: 12.5px;
  border-collapse: separate;
  border-spacing: 0;
}

.projects-table th {
  background-color: #d9eafd !important;
  color: var(--primary-navy) !important;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 16px;
  border-bottom: 2px solid #b8d6f9;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.projects-table th i {
  margin-left: 6px;
  font-size: 11px;
  color: #557ba8;
}

.projects-table td {
  padding: 12px 16px;
  vertical-align: middle;
  color: #333333;
  font-weight: 500;
  border-bottom: 1px solid #eef3f8;
}

.projects-table tbody tr:nth-of-type(even) {
  background-color: #f8fafc;
}

.projects-table tbody tr:hover {
  background-color: #edf4fc;
}

/* --------------------------------------------------------------------------
   Stats Counter Section
   -------------------------------------------------------------------------- */
.stats-section {
  padding: 30px 0 60px 0;
  background-color: #ffffff;
}

.stats-card {
  background-color: #f2f4f7;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e9f0;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
}

.stats-number {
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 10px;
}

.stats-label {
  font-size: 14px;
  color: #555555;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Clients Section (Automatic Endless Slider)
   -------------------------------------------------------------------------- */
.clients-section {
  padding: 70px 0 80px 0;
  background-color: var(--bg-light);
  overflow: hidden;
}

.client-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.client-slider-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: scrollClients 22s linear infinite;
}

.client-slider-wrapper:hover .client-slider-track {
  animation-play-state: paused;
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

.client-logo-box {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 90px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #eef2f7;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.client-logo-box:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.client-logo-box img {
  max-height: 55px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* --------------------------------------------------------------------------
   Footer Section
   -------------------------------------------------------------------------- */
.footer-section {
  background-color: var(--secondary-navy);
  color: #ffffff;
  padding: 70px 0 0 0;
  font-size: 13px;
}

.footer-about p {
  color: #b0c2de;
  line-height: 1.7;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 12.5px;
}

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

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.tiktok {
  background-color: #000000;
}

.social-icon.whatsapp {
  background-color: #25d366;
}

.social-icon.facebook {
  background-color: #1877f2;
}

.social-icon.linkedin {
  background-color: #0a66c2;
}

.social-icon.twitter {
  background-color: #000000;
}

.social-icon.pinterest {
  background-color: #bd081c;
}

.social-icon.youtube {
  background-color: #ff0000;
}

.footer-widget-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-decorator-line {
  width: 50px;
  height: 3px;
  background-color: #3b82f6;
  margin-bottom: 20px;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #b0c2de;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  font-size: 13px;
}

.footer-links a i {
  font-size: 11px;
  color: #ffffff;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #b0c2de;
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 13px;
}

.contact-info-list i {
  font-size: 16px;
  color: #ffffff;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 12.5px;
  color: #8fa7c7;
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    margin-top: 12px;
  }

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

  .hero-slide {
    height: 480px;
  }

  .hero-title {
    font-size: 28px;
  }

  .about-image-container {
    margin-top: 40px;
  }

  .stats-card {
    margin-bottom: 20px;
  }

  .page-banner {
    padding: 50px 0;
  }

  .page-banner-title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .top-bar {
    text-align: center;
  }

  .top-bar .text-end {
    text-align: center !important;
    margin-top: 4px;
  }

  .hero-slide {
    height: 400px;
  }

  .hero-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 11px;
  }

  .btn-hero {
    padding: 10px 24px;
    font-size: 12px;
  }

  .section-title {
    font-size: 26px;
  }

  .footer-widget-title {
    margin-top: 30px;
  }

  .client-logo-box {
    width: 170px;
    height: 75px;
  }
}

/* --------------------------------------------------------------------------
   Portfolio Gallery & Lightbox Section
   -------------------------------------------------------------------------- */
.portfolio-section,
.gallery-section {
  padding: 70px 0 90px 0;
  background-color: #ffffff;
}

.portfolio-card,
.gallery-card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.portfolio-card:hover,
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.gallery-section-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-top: 45px;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.portfolio-card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 70%;
  /* 10:7 Aspect Ratio */
  overflow: hidden;
  background-color: #f0f2f5;
}

.portfolio-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.08);
}

.portfolio-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 28, 61, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.portfolio-card-overlay .icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--accent-orange);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-card-overlay .icon-box {
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Full Screen Image Lightbox Modal
   -------------------------------------------------------------------------- */
.portfolio-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(4, 20, 46, 0.94);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox-dialog {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 82vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease;
}

.lightbox-caption-box {
  margin-top: 15px;
  text-align: center;
  color: #ffffff;
}

.lightbox-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.lightbox-counter {
  font-size: 13px;
  color: var(--accent-orange);
  font-weight: 500;
}

/* Lightbox Control Buttons */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.lightbox-btn:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.lightbox-close:hover {
  background-color: #e63946;
  border-color: #e63946;
  color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: -50px;
    right: 10px;
  }
}

/* --------------------------------------------------------------------------
   Clients Grid Page Section
   -------------------------------------------------------------------------- */
.client-grid-section {
  padding: 70px 0 90px 0;
  background-color: #f8fafc;
  background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.client-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-orange);
}

.client-card img {
  max-width: 88%;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-card:hover img {
  transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   Contact Page Sections (Get In Touch & Drop Us A Mail)
   -------------------------------------------------------------------------- */
.contact-info-section {
  padding: 70px 0 80px 0;
  background-color: #ffffff;
}

.contact-sub-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-main-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #edf2f7;
}

.contact-info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 1.5px solid var(--accent-orange);
  border-radius: 50%;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.contact-info-text p {
  font-size: 13.5px;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
}

.contact-map-wrapper {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  min-height: 420px;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0 90px 0;
  background-color: #f4f6f9;
  background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.contact-input-group {
  position: relative;
  width: 100%;
}

.contact-input {
  width: 100%;
  height: 54px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 48px 12px 20px;
  font-size: 14px;
  color: var(--primary-navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(243, 107, 33, 0.15);
  outline: none;
}

.contact-input::placeholder {
  color: #8fa7c7;
  font-size: 13.5px;
}

.contact-textarea {
  height: auto;
  min-height: 180px;
  padding-top: 16px;
  resize: vertical;
}

.contact-input-icon {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--accent-orange);
  font-size: 16px;
  pointer-events: none;
}

.textarea-icon {
  top: 22px;
  transform: none;
}

.btn-contact-send {
  background-color: var(--secondary-navy);
  color: #ffffff;
  padding: 14px 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 4px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(4, 20, 46, 0.2);
}

.btn-contact-send:hover {
  background-color: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Portfolio & Client Lightbox Gallery Modal
   -------------------------------------------------------------------------- */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: rgba(4, 20, 46, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--accent-orange);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -25px;
}

.lightbox-next {
  right: -25px;
}

.lightbox-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 75vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption-box {
  margin-top: 15px;
  text-align: center;
  color: #ffffff;
}

.lightbox-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.lightbox-counter {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   FOOTER STYLING (MATCHING RWAD.ORG EXACTLY)
   ========================================================================== */
.footer {
  background-color: #071933;
  color: #a0b3ce;
  padding-top: 60px;
  padding-bottom: 20px;
  font-size: 14px;
}

.footer-about p {
  color: #b0c2de;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-widget-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-widget-title strong {
  font-weight: 700;
}

.footer-decorator-line {
  width: 45px;
  height: 2px;
  background-color: #007bff;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links li a {
  color: #b0c2de;
  text-decoration: none;
  font-size: 13.5px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-links li a i {
  font-size: 11px;
  color: #007bff;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #b0c2de;
  font-size: 13.5px;
}

.contact-info-list li i {
  color: #ffffff;
  font-size: 16px;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.social-links .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.social-links .social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-links .social-icon.tiktok {
  background-color: #000000;
}

.social-links .social-icon.whatsapp {
  background-color: #25D366;
}

.social-links .social-icon.facebook {
  background-color: #1877F2;
}

.social-links .social-icon.linkedin {
  background-color: #0A66C2;
}

.social-links .social-icon.youtube {
  background-color: #FF0000;
}

.social-links .social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 20px;
  font-size: 13px;
  color: #8aa4c8;
}

/* Scroll To Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.scroll-to-top-btn:hover {
  background-color: #0056b3;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   MOBILE NAVBAR TOGGLER & ANIMATED COLLAPSE MENU
   ========================================================================== */
.custom-toggler {
  border: 1.5px solid var(--primary-navy) !important;
  border-radius: 8px;
  padding: 7px 9px;
  outline: none !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 38px;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.custom-toggler:hover,
.custom-toggler:focus {
  background-color: rgba(6, 28, 61, 0.05);
  border-color: var(--accent-orange) !important;
}

.toggler-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-navy);
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Morph to 'X' when menu is open */
.custom-toggler:not(.collapsed) .bar-1 {
  transform: translateY(7.5px) rotate(45deg);
  background-color: var(--accent-orange);
}

.custom-toggler:not(.collapsed) .bar-2 {
  opacity: 0;
  transform: translateX(-12px);
}

.custom-toggler:not(.collapsed) .bar-3 {
  transform: translateY(-7.5px) rotate(-45deg);
  background-color: var(--accent-orange);
}

@media (max-width: 991.98px) {
  .navbar-custom {
    padding: 10px 0;
  }

  .navbar-collapse {
    background-color: #ffffff;
    border-radius: 12px;
    margin-top: 12px;
    padding: 16px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  /* Smooth transition for Bootstrap collapse */
  .navbar-collapse.collapsing {
    opacity: 0.7;
    transform: translateY(-10px);
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, transform 0.35s ease !important;
  }

  .navbar-collapse.show {
    animation: mobileMenuSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInNavItem 0.35s ease forwards;
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  /* Cascade delay for menu links */
  .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.04s; }
  .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.08s; }
  .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.12s; }
  .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.16s; }
  .navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.20s; }
  .navbar-collapse.show .nav-item:nth-child(6) { animation-delay: 0.24s; }
  .navbar-collapse.show .nav-item:nth-child(7) { animation-delay: 0.28s; }
  .navbar-collapse.show .nav-item:nth-child(8) { animation-delay: 0.32s; }

  .nav-link-custom {
    padding: 12px 10px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.25s ease;
  }

  .nav-link-custom:hover {
    background-color: rgba(243, 107, 33, 0.08);
    padding-left: 16px !important;
  }

  .nav-link-custom.active::after {
    display: none;
  }

  .nav-link-custom.active {
    background-color: rgba(243, 107, 33, 0.12);
    font-weight: 700;
  }
}

@keyframes mobileMenuSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInNavItem {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Site Preloader - DASMAN AL ALAM
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #0a2550 0%, #04142e 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 450px;
  padding: 30px;
}

.preloader-logo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.preloader-ring-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #f36b21;
  border-right-color: rgba(243, 107, 33, 0.25);
  border-radius: 50%;
  animation: preloader-spin 1.2s linear infinite;
}

.preloader-ring-inner {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 90px;
  height: 90px;
  border: 3px solid transparent;
  border-bottom-color: #007bff;
  border-left-color: rgba(0, 123, 255, 0.25);
  border-radius: 50%;
  animation: preloader-spin-reverse 1.8s linear infinite;
}

.preloader-brand-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #f36b21;
  box-shadow: 0 0 25px rgba(243, 107, 33, 0.4);
  animation: preloader-pulse 2s ease-in-out infinite;
}

.preloader-text-wrap {
  margin-bottom: 22px;
}

.preloader-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 3.5px;
  margin: 0 0 6px 0;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #f36b21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  animation: preloader-glow 2.5s ease-in-out infinite alternate;
}

.preloader-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 4px;
  margin: 0;
  text-transform: uppercase;
}

.preloader-progress-wrap {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #007bff, #f36b21, #007bff);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: preloader-loading 1.8s ease-in-out infinite, preloader-gradient 2s linear infinite;
}

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

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

@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(243, 107, 33, 0.3); }
  50% { transform: scale(1.08); box-shadow: 0 0 35px rgba(243, 107, 33, 0.7); }
}

@keyframes preloader-glow {
  0% { filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2)); }
  100% { filter: drop-shadow(0 0 10px rgba(243, 107, 33, 0.6)); }
}

@keyframes preloader-loading {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

@keyframes preloader-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}