@charset "UTF-8";
/* Base */
:root {
  --primary: #0d2c56; /* Navy Blue */
  --accent: #f57c00; /* Orange */
  --text-dark: #222;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

.section {
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .section {
    padding: 40px 0;
  }
}

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

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

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

.section-title {
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .section-title {
    font-size: 1.5rem;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
}

.page-title-section {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 400px;
  text-align: center;
  color: white;
  margin-top: 70px;
  display: flex;
  align-items: center;
}
.page-title-section h1 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 3rem;
}
@media screen and (max-width: 600px) {
  .page-title-section h1 {
    font-size: 1.5rem;
  }
}
.page-title-section p {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.1rem;
}
@media screen and (max-width: 600px) {
  .page-title-section p {
    font-size: 1rem;
  }
}

/* Components */
.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
  z-index: -1;
}
.btn:hover::after {
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  margin-left: 10px;
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

/* --- NAVBAR STYLES (Updated for Image Logo) --- */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 90px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 2002;
  position: relative;
  padding: 5px 0;
}
.logo img {
  width: auto;
  height: auto;
  max-height: 75px;
  object-fit: contain;
  transition: var(--transition);
}

/* DESKTOP NAVIGATION */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}

.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 5px;
  transition: var(--transition);
  text-align: center;
}
.btn-nav:hover {
  background: var(--accent);
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 2002;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 600px) {
  .hamburger {
    width: auto;
    height: 16px;
  }
}

.bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* --- IMPROVED MOBILE SIDEBAR --- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    font-size: 1rem;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
  }
  /* --- HAMBURGER VISIBILITY FIX --- */
  .hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: transparent;
    border: none;
  }
  .hamburger .bar {
    display: block;
    width: 20px;
    height: 3px;
    margin: 5px 0;
    background-color: #0d2c56;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #333;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #333;
  }
}
@media (max-width: 768px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 2rem;
  }
}
/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 30px 0;
  background: #fff;
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.client-box {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 15px;
  background: var(--bg-light);
  border: 1px solid #eee;
  color: #555;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 4px;
}
@media screen and (max-width: 600px) {
  .client-box {
    padding: 15px 20px;
    margin: 0 5px;
    font-size: 14px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Scroll Reveals */
.reveal,
.reveal-left,
.reveal-right,
.reveal-bottom {
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-bottom {
  transform: translateY(50px);
}

.reveal-left.active,
.reveal-right.active,
.reveal-bottom.active {
  transform: translate(0);
  opacity: 1;
}

/* Sections */
/* --- HERO SECTION (Premium & Professional) --- */
.hero-slider {
  position: relative;
  width: 100%;
  /* Dynamic viewport height for mobile browsers */
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  margin-top: 80px; /* Header offset */
  background-color: #0d2c56; /* Fallback brand color */
}
@media (max-width: 768px) {
  .hero-slider {
    height: 90svh; /* Slightly shorter on mobile */
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother fade */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  /* Professional Overlay: Gradient for better text readability */
}
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Darker at bottom/center to make text pop, lighter at top */
  background: linear-gradient(to bottom, rgba(13, 44, 86, 0.6) 0%, rgba(13, 44, 86, 0.85) 100%);
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 850px;
  width: 100%;
  padding: 0 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers button and text */
  /* Staggered Animation Entry */
}
.slide-content h1,
.slide-content p,
.slide-content .btn-group {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Active State Animations */
.slide.active h1 {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.slide.active p {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}
.slide.active .btn-group {
  transition-delay: 0.7s;
  opacity: 1;
  transform: translateY(0);
}

/* --- TYPOGRAPHY --- */
.slide h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px; /* Tighter, more modern look */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.slide h1 span {
  color: var(--accent);
}
@media (max-width: 1024px) {
  .slide h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .slide h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}

.slide p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9); /* Softer white */
  max-width: 700px;
}
@media (max-width: 768px) {
  .slide p {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}

/* --- BUTTON GROUP --- */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .btn-group .btn {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .btn-group .btn {
    width: auto;
    min-width: 200px;
    padding: 12px 30px;
  }
}

/* --- SLIDER CONTROLS (ARROWS) --- */
.slider-controls div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  /* Glassmorphism Effect */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.slider-controls div:hover {
  background: var(--accent); /* Orange on hover */
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(245, 124, 0, 0.4);
}
.slider-controls div {
  /* Mobile Adjustment */
}
@media (max-width: 768px) {
  .slider-controls div {
    /* Move to bottom right */
    top: auto;
    bottom: 30px;
    transform: none; /* Remove centering transform */
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.4); /* Darker on mobile for contrast */
    border: none;
  }
  .slider-controls div:hover {
    transform: scale(1.1); /* Simple scale on mobile touch */
  }
}

.prev-slide {
  left: 40px;
}
@media (max-width: 768px) {
  .prev-slide {
    left: auto;
    right: 80px; /* Position next to Next arrow */
  }
}

.next-slide {
  right: 40px;
}
@media (max-width: 768px) {
  .next-slide {
    right: 25px;
  }
}

.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, #061a35 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
}
.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.stat-item:hover i {
  transform: rotateY(180deg) scale(1.1);
}
.stat-item i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: transform 0.6s ease;
}

.stat-text h3,
.stat-text span {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-text span {
  color: var(--accent);
  margin-left: 2px;
}
.stat-text p {
  color: #aebccc;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .stats-grid {
    gap: 20px 20px;
  }
  .stat-item i,
  .stat-item h3,
  .stat-item span {
    font-size: 2rem;
  }
}
/* --- ABOUT PAGE LAYOUT --- */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  /* Removed the side-by-side grid to allow full-width stacking */
}

/* --- SECTION 1: WHO WE ARE (Intro) --- */
.about-intro {
  max-width: 900px;
  margin: 0 auto 60px; /* Center alignment */
}
.about-intro .section-tag {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}
.about-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}
.about-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .about-intro h2 {
    font-size: 1.5rem;
  }
}

/* Core Strength & Accordion Grid */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

.core-strength-box {
  background: #fff;
  padding: 30px;
  border-left: 5px solid var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 0 8px 8px 0;
}
.core-strength-box h4 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--primary);
}
.core-strength-box ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.core-strength-box i {
  color: var(--accent);
}
@media screen and (max-width: 600px) {
  .core-strength-box {
    padding: 10px 20px;
  }
}

/* Accordion Styling */
.accordion {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.3s;
}
.accordion-header:hover {
  background: var(--bg-light);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  color: var(--text-light);
  line-height: 1.6;
}

.accordion-item.active .accordion-header {
  color: var(--accent);
}
.accordion-item.active .accordion-header i {
  transform: rotate(45deg);
}
.accordion-item.active .accordion-body {
  max-height: 200px;
  padding-bottom: 20px;
}

/* --- SECTION 2: PORTFOLIO (Key Projects) --- */
.portfolio-section {
  margin: 80px 0;
  border-top: 1px solid #eee;
  padding-top: 60px;
}
@media screen and (max-width: 600px) {
  .portfolio-section {
    margin: 50px 0;
    padding-top: unset;
  }
}

.project-category {
  margin-bottom: 50px;
}

.category-header {
  margin-bottom: 25px;
}
.category-header h3 {
  font-size: 1.8rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.category-header h3 i {
  color: var(--accent);
}
.category-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  border-left: 4px solid var(--accent);
  padding-left: 15px;
}
@media screen and (max-width: 600px) {
  .category-header h3 {
    font-size: 1.5rem;
  }
  .category-header p {
    font-size: 15px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-grid .gallery-item {
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
}

.featured-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .featured-image {
    height: 250px;
  }
}

/* --- SECTION 3: LEADERSHIP (Redesigned) --- */
.leadership-section {
  background: linear-gradient(to bottom, #fff, var(--bg-light));
  padding: 80px 0;
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .leadership-section {
    margin-top: unset;
  }
}

.leadership-header {
  text-align: center;
  margin-bottom: 60px;
}
.leadership-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.leadership-header p {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 600px) {
  .leadership-header {
    margin-bottom: 40px;
  }
  .leadership-header h2 {
    font-size: 32px;
  }
}

/* 1. PARTNERS GRID (Top 2 Cards) */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 850px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.leader-profile-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
  border-top: 5px solid var(--accent);
  padding-bottom: 30px;
}
.leader-profile-card:hover {
  transform: translateY(-10px);
}
.leader-profile-card .img-wrapper {
  width: 140px;
  height: 140px;
  margin: 40px auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f0f0f0;
}
.leader-profile-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.leader-profile-card .info-content {
  padding: 0 25px;
}
.leader-profile-card .info-content h4 {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
}
.leader-profile-card .info-content .designation {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.leader-profile-card .info-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* 2. FEATURED EXECUTIVE (Mr. Pushpendra - Separate Section) */
.executive-spotlight {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 350px 1fr;
  overflow: hidden;
  border: 1px solid #eee;
}
@media (max-width: 992px) {
  .executive-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.exec-image {
  background: #f4f4f4;
  height: 100%;
  min-height: 400px;
  position: relative;
}
.exec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 992px) {
  .exec-image {
    height: 350px;
    min-height: auto;
  }
}

.exec-info {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exec-info h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 700;
}
.exec-info .exec-role {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  display: block;
}
.exec-info .bio-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}
.exec-info {
  /* The "Previously Served" Box */
}
.exec-info .past-roles-box {
  background: rgba(13, 44, 86, 0.03); /* Light Primary Tint */
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  text-align: left; /* Always left align list */
}
@media (max-width: 992px) {
  .exec-info .past-roles-box {
    text-align: left;
    margin: 0 auto;
    width: 100%;
  }
}
.exec-info .past-roles-box h6 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.exec-info .past-roles-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.exec-info .past-roles-box ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
}
.exec-info .past-roles-box ul li i {
  color: var(--accent);
}
@media screen and (max-width: 600px) {
  .exec-info {
    padding: 30px 0px;
  }
  .exec-info h3 {
    font-size: 1.5rem;
  }
  .exec-info .exec-role {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .exec-info .bio-text {
    font-size: 14px;
  }
  .exec-info .past-roles-box ul li {
    gap: 15px;
    font-size: 14px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 600px) {
  .services-grid {
    margin-top: unset;
    gap: 10px;
  }
}

@media screen and (max-width: 600px) {
  .features-grid {
    margin-top: 2rem;
  }
}

.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--primary);
}
.feature-box i {
  color: var(--accent);
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .feature-box {
    padding: 15px 20px;
  }
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
@media screen and (max-width: 600px) {
  .service-card {
    padding: 20px 30px;
  }
}
.service-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--accent);
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.icon-box {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .icon-box {
    margin-bottom: 10px;
  }
}

/* Equipment Parallax */
.parallax-section {
  background: url("https://images.unsplash.com/photo-1579543666675-9e66d705c755?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80") fixed center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  color: #fff;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 44, 86, 0.9);
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.parallax-content h2 {
  color: #fff;
}
.parallax-content p {
  margin-bottom: 40px;
  opacity: 0.9;
}

.equipment-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
  margin-top: 40px;
}

.equip-col h3 {
  color: var(--accent);
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.equip-col ul li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
  opacity: 0.9;
}
.equip-col ul li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

.map-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.map-wrapper {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto 40px;
  border: 1px solid #eee;
}

#map {
  height: 500px;
  width: 100%;
  border-radius: 8px;
  z-index: 1;
}
@media (max-width: 768px) {
  #map {
    height: 350px;
  }
}

.map-stats {
  margin-top: 30px;
  font-size: 1.1rem;
  color: var(--primary);
  background: var(--bg-light);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  border: 1px solid #ddd;
}

/* Fix leaflet z-index */
.leaflet-pane {
  z-index: 1 !important;
}

.leaflet-top,
.leaflet-bottom {
  z-index: 2 !important;
}

/* --- CONTACT SECTION --- */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Info Side */
.c-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}
.c-item .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(13, 44, 86, 0.05);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.c-item h5 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 700;
}
.c-item p,
.c-item a {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}
.c-item a:hover {
  color: var(--accent);
}
.c-item .person-contact {
  display: flex;
  flex-direction: column;
}
.c-item .person-contact strong {
  color: var(--text-dark);
}

/* Form Side */
.contact-form {
  background: #fff;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  border-top: 5px solid var(--accent);
}
.contact-form h3 {
  margin-bottom: 30px;
  color: var(--primary);
}

/* Floating Label Inputs */
.form-group {
  position: relative;
  margin-bottom: 25px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  background: #f9f9f9;
  font-size: 1rem;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: #fff;
}
.form-group input,
.form-group textarea,
.form-group select {
  /* Logic for Floating Label */
}
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: var(--accent);
  background: #fff;
  padding: 0 5px;
}
.form-group select:focus + .select-label,
.form-group select:valid + .select-label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: var(--accent);
  background: #fff;
  padding: 0 5px;
}
.form-group label,
.form-group .select-label {
  position: absolute;
  top: 14px;
  left: 15px;
  color: #888;
  font-size: 0.95rem;
  transition: 0.3s;
  pointer-events: none;
}

/* --- BUTTON LOADER ANIMATION (Fixed) --- */
.btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative; /* Important for positioning */
  min-height: 50px; /* Prevents button from shrinking */
  /* Loading State */
}
.btn-block.loading {
  opacity: 0.8;
  pointer-events: none;
  cursor: not-allowed;
  /* Hide text */
}
.btn-block.loading .btn-text {
  visibility: hidden;
  opacity: 0;
}
.btn-block.loading {
  /* Show Loader */
}
.btn-block.loading .btn-loader {
  display: block;
  opacity: 1;
}

.btn-loader {
  display: none; /* Hidden by default */
  position: absolute; /* Center it perfectly */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* Center trick */
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3); /* Light white track */
  border-radius: 50%;
  border-top-color: #ffffff; /* Solid white spinner */
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* --- TOAST NOTIFICATIONS --- */
#toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: #fff;
  color: var(--text-dark);
  padding: 15px 25px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 300px;
  animation: slideIn 0.3s ease forwards;
  border-left: 5px solid transparent;
}
.toast.success {
  border-left-color: #2ecc71;
}
.toast.success i {
  color: #2ecc71;
}
.toast.error {
  border-left-color: #e74c3c;
}
.toast.error i {
  color: #e74c3c;
}
.toast i {
  font-size: 1.2rem;
}
.toast .toast-msg {
  font-weight: 600;
  font-size: 0.95rem;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* --- FULL SCREEN OVERLAY LOADER --- */
#global-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 44, 86, 0.6); /* Dark Blue transparent tint */
  backdrop-filter: blur(5px); /* Premium Blur Effect */
  z-index: 10000; /* Highest layer */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#global-loader-overlay.active {
  display: flex;
  opacity: 1;
}
#global-loader-overlay .spinner-wrapper {
  text-align: center;
  color: #fff;
}
#global-loader-overlay p {
  margin-top: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.1rem;
  animation: pulse 1.5s infinite;
}

/* The Big Circular Spinner */
.fs-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: var(--accent); /* Orange Top */
  margin: 0 auto;
  animation: spin 1s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
/* Reset Button Style (Since we removed the internal loader) */
.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

footer {
  background: #1a1a1a;
  color: #fff;
  padding: 30px 0;
  border-top: 3px solid var(--accent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.social-links a {
  color: #fff;
  margin-left: 15px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.clients-section {
  padding: 60px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}

.client-box {
  width: 200px;
  height: 100px;
  margin: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 10px;
  transition: transform 0.3s ease;
}
.client-box img {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.client-box:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .client-box {
    width: 140px;
    height: 70px;
    margin: 0 15px;
  }
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.project-gallery {
  padding: 80px 0;
  background: #f9f9f9;
}
.project-gallery .sub-heading {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 5px solid var(--accent);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}

.grid-span-full {
  grid-column: 1/-1;
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.project-card .project-img {
  height: 100%;
  width: 100%;
}
.project-card .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card .project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 44, 86, 0.95), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(20px);
}
.project-card .project-info {
  color: #fff;
}
.project-card .project-info .category {
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.project-card .project-info h3 {
  font-size: 1.4rem;
  margin: 5px 0;
  color: white;
  font-weight: 600;
}
.project-card .project-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}
.project-card:hover .project-img img {
  transform: scale(1.1);
}
.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.category-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d2c56;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid #f39200;
  display: inline-block;
}

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

.tag {
  background: #f39200;
  color: #fff;
  padding: 3px 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}
