:root {
  --primary-blue: #00036b;
  --accent-orange: #ed9500;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --whatsapp-color: #25d366;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  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;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.fade-in {
  opacity: 0;
  /* Hidden by default for observer */
  animation-fill-mode: forwards;
  /* Stays visible after animation */
}

.fade-in.visible {
  animation: fadeIn 0.8s ease-out forwards;
}

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

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

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

.justify-content-center {
  justify-content: center;
}

.col-md-6 {
  flex: 1 1 45%;
}

.col-md-5 {
  flex: 1 1 40%;
}

.col-md-7 {
  flex: 1 1 55%;
  /* Leaving some gap space */
}

.col-md-4 {
  flex: 1 1 30%;
}

.col-12 {
  flex: 1 1 100%;
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Button Hover Effects */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #d18200;
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #00024d;
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}

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

.btn-primary-light {
  background-color: var(--white);
  color: var(--accent-orange);
}

.btn-primary-light:hover {
  background-color: #eee;
  color: var(--accent-orange);
}

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

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--accent-orange);
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 60px;
}

.logo-text {
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: 700;
  line-height: 1.1;
  display: block;
  /* Visible by default on desktop */
}

.logo-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--accent-orange);
  font-weight: 500;
}

.rc-number {
  font-size: 0.75rem;
  color: #888;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--primary-blue);
  position: relative;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-orange);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

/* Hero Section */
#hero {
  height: 85vh;
  /* slightly taller */
  background: url('images/hero-bg.png') no-repeat center center/cover;
  background-attachment: fixed;
  /* Parallax effect */
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 3, 107, 0.75);
}

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

#hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#hero .highlight {
  color: var(--accent-orange);
}

#hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

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

/* About Section */
.feature-list {
  margin: 20px 0;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-list i {
  color: var(--accent-orange);
}

.about-img {
  width: 100%;
  border-radius: 10px;
  transition: var(--transition);
}

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

.rounded {
  border-radius: 10px;
}

.shadow {
  box-shadow: var(--shadow);
}

/* CEO Profile */
.ceo-profile {
  margin-top: 40px;
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 30px;
  border-left: 5px solid var(--primary-blue);
}

.ceo-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-orange);
}

.ceo-info h4 {
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.ceo-info h5 {
  color: var(--accent-orange);
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-orange);
  margin: 10px auto 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.service-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 2rem;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.service-body h3 {
  margin-bottom: 15px;
  color: var(--primary-blue);
  font-size: 1.4rem;
}

.service-body p {
  margin-bottom: 20px;
  color: var(--text-light);
}

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

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

/* Marquee Scroller */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin: 40px 0;
}

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

.marquee-item {
  flex: 0 0 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  transform: translateY(100%);
  transition: var(--transition);
}

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

/* CTA Section */
#cta {
  background: linear-gradient(rgba(237, 149, 0, 0.92), rgba(237, 149, 0, 0.92)), url('images/hero-bg.png') center/cover;
  background-attachment: fixed;
  color: var(--white);
}

.cta-btns {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--accent-orange);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: serif;
  font-size: 5rem;
  color: #eee;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.stars {
  color: #f2c94c;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.client-info h4 {
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.client-info span {
  font-size: 0.9rem;
  color: #888;
}

/* Contact Specifics */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  margin-top: 5px;
}

/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent-orange);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

#back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

#back-to-top:hover {
  background-color: var(--primary-blue);
  transform: translateY(-5px);
}

/* Footer */
footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-credit {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

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

/* Responsive */
@media (max-width: 992px) {
  #hero h1 {
    font-size: 2.8rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {

  /* Mobile Navigation */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    gap: 15px;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: block;
  }

  /* Mobile Logo Logic */
  .logo-text {
    display: none;
    /* Hide text on mobile as per request */
  }

  /* Layout Fixes */
  .section-padding {
    padding: 50px 0;
  }

  .col-md-6,
  .col-md-4 {
    flex: 1 1 100%;
  }

  .row {
    gap: 40px;
  }

  /* Increased gap for stacking */

  /* Hero */
  #hero {
    height: auto;
    padding: 100px 0;
  }

  #hero h1 {
    font-size: 2.2rem;
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    display: block;
    width: 100%;
  }

  /* Marquee on mobile */
  .marquee-item {
    flex: 0 0 250px;
    height: 180px;
  }

  /* CEO Profile Mobile */
  .ceo-profile {
    flex-direction: column;
    text-align: center;
  }
}

/* Social Media Icons (Footer) */
.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-icon:hover {
  background-color: var(--accent-orange);
  transform: translateY(-3px);
  color: var(--white);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  /* Changed to left to avoid conflict with back-to-top */
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20b858;
}

@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);
  }
}

/* Video Gallery Styling */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  background: #333;
}

/* Map Styling */
.map-container {
  height: 400px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 20px;
}

/* Filterable Masonry Gallery */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #0056b3;
  background: transparent;
  color: #0056b3;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #0056b3;
  color: white;
}

.masonry-grid {
  column-count: 3;
  column-gap: 20px;
}

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

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

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

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 10px 20px;
  user-select: none;
  z-index: 2002;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-radius: 5px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Marquee Item Update */
/* Cinematic Video Hub */
.video-hub-section {
  background: linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.video-hub-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
}

.main-stage {
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.main-video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  background: #000;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.main-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-reel-container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-reel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.video-reel::-webkit-scrollbar {
  height: 8px;
}

.video-reel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.video-reel::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 4px;
}

.reel-item {
  flex: 0 0 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reel-item:hover,
.reel-item.active {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: var(--accent-orange);
}

.reel-thumb {
  height: 150px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.reel-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.reel-item:hover video {
  opacity: 1;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  opacity: 0.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.reel-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--white);
}


.col-md-8 {
  flex: 1 1 65%;
}

/* Service Page Specifics */
.service-row-img {
  max-width: 350px;
  /* Force smaller width */
  max-height: 250px;
  /* Constrain height */
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
  /* Center in column if smaller */
}

/* --- Homepage Service Grid Redesign --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  /* Ensure equal height */
  display: flex;
  flex-direction: column;
}

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

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

.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-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Push link to bottom */
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  display: block;
}

.service-body h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.service-link {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

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

.service-row-img:hover {
  transform: scale(1.02);
}

.service-content {
  padding: 20px;


}

/* --- Featured Projects Section --- */
.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.project-preview-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow);
}

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

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

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Video Modal Logic */
.video-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 9999;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background-color: transparent;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  text-align: center;
}

.modal-content video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.modal-content h3 {
  color: #fff;
  margin-top: 15px;
  font-weight: 300;
}

.close-modal {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  z-index: 10000;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--accent-orange);
  text-decoration: none;
  cursor: pointer;
}