/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --primary-navy: #0F1E36;
  --secondary-navy: #1A2F4C;
  --light-navy: #253D60;
  --gold: #C5A059;
  --gold-hover: #A37E3A;
  --gold-light: #F4EAD4;
  --accent-light: #F4F7FB;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --text-white: #FFFFFF;
  --bg-white: #FFFFFF;
  --bg-off-white: #FAFCFF;
  --border-color: #E5E7EB;
  --border-muted: #F3F4F6;
  --heading-color: #0F1E36;
  --shadow-sm: 0 2px 4px rgba(15, 30, 54, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 30, 54, 0.1), 0 2px 4px -1px rgba(15, 30, 54, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 30, 54, 0.1), 0 4px 6px -2px rgba(15, 30, 54, 0.05);
  --shadow-premium: 0 20px 25px -5px rgba(15, 30, 54, 0.08), 0 10px 10px -5px rgba(15, 30, 54, 0.04);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

.dark-theme {
  --bg-white: #0B132B;
  --bg-off-white: #1C2541;
  --text-dark: #F0F4F8;
  --text-light: #A0AEC0;
  --border-color: #2D3748;
  --border-muted: #1E293B;
  --accent-light: #1C2541;
  --heading-color: #FFFFFF;
}

.dark-theme .section-title {
  color: #FFFFFF !important;
}

.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5,
.dark-theme h6 {
  color: #FFFFFF !important;
}

.dark-theme .faq-header h3 {
  color: #FFFFFF !important;
}

.dark-theme .filter-btn {
  color: #F0F4F8 !important;
  border-color: #2D3748 !important;
}

.dark-theme .filter-btn.active, .dark-theme .filter-btn:hover {
  background-color: var(--gold) !important;
  color: var(--primary-navy) !important;
  border-color: var(--gold) !important;
}

.dark-theme .metric-value {
  color: #C5A059 !important;
}

.dark-theme header.sticky {
  background: rgba(11, 19, 43, 0.95);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.theme-toggle-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
  color: var(--gold);
  transform: scale(1.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

/* Page Transition Wrapper - Removed */

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

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  font-family: var(--font-headings);
  color: var(--gold);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Header & Sticky Transparent Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
}

header.sticky {
  background: rgba(15, 30, 54, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

/* Scroll Progress Indicator */
.scroll-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-hover) 100%);
  transition: width 0.1s ease-out;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

header.sticky .nav-wrapper {
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

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

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links .nav-icon {
  display: none !important;
  margin-right: 8px;
}

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

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

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

.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  color: var(--primary-navy) !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
}

.nav-links a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(197, 160, 89, 0.3);
}

.nav-links a.nav-cta::after {
  display: none !important;
}

/* Mobile Nav Toggle */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.menu-btn span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  color: var(--primary-navy);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
  transform: translateY(-3px);
}

.btn-navy {
  background-color: var(--primary-navy);
  color: var(--text-white);
}

.btn-navy:hover {
  background-color: var(--secondary-navy);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(15, 30, 54, 0.25);
}

/* Banner / Page Header */
.page-banner {
  background: linear-gradient(rgba(15, 30, 54, 0.88), rgba(15, 30, 54, 0.95)), url('../images/banner-bg.jpg') no-repeat center center/cover;
  padding: 10rem 0 6rem 0;
  text-align: center;
  color: var(--text-white);
  position: relative;
}

.page-banner h1 {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
  color: var(--gold);
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.5);
}

/* Premium Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(15, 30, 54, 0.85), rgba(15, 30, 54, 0.92)), url('../images/hero-bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--bg-white), transparent);
  pointer-events: none;
}

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

.hero-subtitle {
  color: var(--gold);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* Intro Section */
.intro {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-image-wrapper {
  position: relative;
}

.intro-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  color: var(--primary-navy);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: pulse 3s infinite;
}

.experience-badge .num {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.intro-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.intro-bullets {
  margin: 2rem 0;
  list-style: none;
}

.intro-bullets li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.intro-bullets li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
}

/* Services Grid & Cards */
.services-section {
  padding: 8rem 0;
  background-color: var(--bg-off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background-color: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-top-color: var(--gold);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background-color: var(--primary-navy);
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link i {
  transition: var(--transition-smooth);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Why Choose Us & Stats Counter */
.why-section {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.why-feature-item {
  display: flex;
  gap: 1.25rem;
}

.why-feature-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.why-feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-feature-text p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.stats-counter-wrapper {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

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

.stat-num {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Carousel */
.testimonials-section {
  padding: 8rem 0;
  background-color: var(--primary-navy);
  color: var(--text-white);
}

.testimonials-section .section-title {
  color: var(--text-white);
}

.testimonial-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  text-align: center;
}

.testimonial-rating {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.testimonial-quote {
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.client-name {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold);
}

.client-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--gold);
  transform: scale(1.3);
}

/* Industries We Serve Grid */
.industries-section {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.industry-card {
  background-color: var(--bg-off-white);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-muted);
}

.industry-card:hover {
  background-color: var(--primary-navy);
  color: var(--text-white);
  border-color: var(--primary-navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.industry-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.industry-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.industry-card:hover h4 {
  color: var(--text-white);
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.industry-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* Latest News / Blog Section */
.news-section {
  padding: 8rem 0;
  background-color: var(--bg-off-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.news-card {
  background-color: var(--bg-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

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

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

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

.news-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--gold);
  color: var(--primary-navy);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-radius: 4px;
}

.news-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.news-meta i {
  color: var(--gold);
  margin-right: 0.35rem;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.news-link {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.news-link i {
  transition: var(--transition-smooth);
}

.news-link:hover i {
  transform: translateX(5px);
}

/* Call to Action Banner */
.cta-banner {
  padding: 6rem 0;
  background: linear-gradient(rgba(15, 30, 54, 0.9), rgba(15, 30, 54, 0.95)), url('../images/cta-bg.jpg') no-repeat center center/cover;
  color: var(--text-white);
  text-align: center;
}

.cta-banner-content h2 {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* FAQ Accordion */
.faq-section {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-off-white);
  border-radius: 4px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--gold);
  background-color: var(--bg-white);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.faq-icon {
  font-size: 1rem;
  color: var(--gold);
  transition: var(--transition-smooth);
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 2rem;
}

.faq-item.active .faq-content {
  padding: 0 2rem 1.5rem 2rem;
}

.faq-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Footer Section */
footer {
  background-color: var(--primary-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 6rem 0 2rem 0;
  border-top: 5px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-info .logo {
  margin-bottom: 1.5rem;
}

.footer-info p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.footer-nav h3, .footer-contact h3, .footer-newsletter h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-nav h3::after, .footer-contact h3::after, .footer-newsletter h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--gold);
  margin-right: 8px;
  transition: var(--transition-smooth);
}

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

.footer-links a:hover i {
  margin-right: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border-radius: 4px 0 0 4px;
  border: none;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  color: var(--primary-navy);
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.newsletter-form button:hover {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* Floating Buttons */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-navy);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
}

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

.back-to-top:hover {
  background-color: var(--gold);
  color: var(--primary-navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.5);
}

/* About Us Specific Styles */
.about-mission-section {
  padding: 8rem 0;
  background-color: var(--bg-off-white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-card {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--gold);
}

.mission-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--text-light);
}

/* Timeline */
.timeline-section {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--bg-white);
  border: 4px solid var(--gold);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -8px;
}

.timeline-content {
  padding: 2rem;
  background-color: var(--bg-off-white);
  position: relative;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.timeline-date {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Team section */
.team-section {
  padding: 8rem 0;
  background-color: var(--bg-off-white);
}

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

.team-member {
  background-color: var(--bg-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.member-img-wrapper {
  height: 320px;
  overflow: hidden;
  position: relative;
}

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

.team-member:hover .member-img {
  transform: scale(1.05);
}

.member-info {
  padding: 2rem 1.5rem;
}

.member-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.member-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}

.member-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Qualifications & Certs */
.certs-section {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.cert-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.cert-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.cert-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.cert-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cert-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Services Page Detail Layout */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 6rem 0;
}

.service-detail-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--gold);
}

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

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-detail-header i {
  font-size: 2.25rem;
  color: var(--gold);
  background-color: var(--accent-light);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-header h3 {
  font-size: 1.5rem;
}

.service-detail-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-points {
  list-style: none;
  margin-bottom: 2rem;
}

.service-points li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.service-points li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 1px;
}

/* Contact Info & Forms */
.contact-section {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info-panel {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: 4rem 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
}

.contact-info-panel h3 {
  color: var(--text-white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-info-panel > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.contact-details-list {
  list-style: none;
  margin-bottom: 3rem;
}

.contact-details-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-details-list i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 5px;
}

.contact-details-list h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-details-list p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background-color: var(--bg-off-white);
  padding: 4rem 3rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-form-wrapper > p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.error-message {
  font-size: 0.75rem;
  color: #DC2626;
  margin-top: 0.25rem;
  display: none;
}

.form-control.invalid {
  border-color: #DC2626;
}

.form-control.invalid + .error-message {
  display: block;
}

.form-success-msg {
  display: none;
  background-color: #DEF7EC;
  color: #03543F;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  border: 1px solid #BCF0DA;
}

/* Map Section */
.map-section {
  height: 450px;
  width: 100%;
  border-bottom: 5px solid var(--gold);
}

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

/* Blog Page layout */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Professional Custom Dropdown for Blog Filters (Mobile) */
.blog-filter-dropdown {
  display: none;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231A2B4C%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 1.5rem top 50%;
  background-size: 0.8rem auto;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}
.blog-filter-dropdown:hover, .blog-filter-dropdown:focus {
  border-color: var(--accent-gold);
  outline: none;
}
.dark-theme .blog-filter-dropdown {
  background-color: var(--primary-navy);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.1);
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.filter-btn {
  background-color: var(--bg-off-white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-family: var(--font-headings);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--gold);
  color: var(--primary-navy) !important;
  border-color: var(--gold);
}

/* Case Studies Layout */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  padding: 6rem 0;
}

.case-card {
  background-color: var(--bg-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-muted);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.case-img-wrapper {
  height: 240px;
  overflow: hidden;
}

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

.case-card:hover .case-img {
  transform: scale(1.05);
}

.case-content {
  padding: 2.5rem;
}

.case-client {
  font-family: var(--font-headings);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.case-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.case-summary {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.case-metrics {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-muted);
  padding-top: 1.5rem;
}

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

.metric-value {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: #C5A059 !important;
  display: block;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
}

/* Animations & Scroll Fades Removed */

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links .nav-icon {
    display: inline-block !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-navy);
    flex-direction: column;
    padding: 8rem 2rem 2rem 2rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .menu-btn {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  header.sticky .menu-btn span {
    background-color: var(--text-white);
  }

  .menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-btn.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .why-grid, .contact-grid, .stats-counter-wrapper, .about-features {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Specialized Flex layout for intro-grid to insert image between heading and text */
  .intro-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .intro-text {
    display: contents;
  }
  .intro-text .section-tag { 
    order: 1; 
    margin-bottom: 0.5rem; 
  }
  .intro-text h2 { 
    order: 2; 
    margin-bottom: 1.5rem; 
    font-size: 1.8rem; /* Decrease font size for mobile */
    line-height: 1.3;
  }
  .intro-image-wrapper { 
    order: 3; 
    margin-bottom: 1.5rem; 
    width: 100%; 
  }
  .intro-text p, .intro-text ul { 
    order: 4; 
    margin-bottom: 1rem; 
  }
  .intro-text .btn { 
    order: 5; 
    margin-top: 1rem; 
  }

  /* Reduce Heading sizes for mobile banner */
  .page-banner h1 {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.25;
  }
  .faq-header h3 {
    font-size: 0.85rem;
  }

  /* Show Blog Filter Dropdown and hide Buttons on Mobile */
  .blog-filters {
    display: none;
  }
  .blog-filter-dropdown {
    display: block;
  }

  .services-grid, .news-grid, .case-studies-grid, .industries-grid, .team-grid, .certs-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }

  .experience-badge {
    bottom: -10px;
    right: 0;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::after {
    left: 23px;
    right: auto;
  }

  .timeline-right {
    left: 0%;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.25rem;
  }

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

  .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

/* Global Dark Theme Heading Contrast Enforcement */
.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5,
.dark-theme h6,
.dark-theme .section-title,
.dark-theme .section-header h2,
.dark-theme .intro-text h2,
.dark-theme h2.section-title {
  color: #FFFFFF !important;
}

/* Fix for blank screen issues when clicking menu or navigating */
body { 
  opacity: 1 !important; 
  visibility: visible !important; 
  display: block !important; 
}
.fade-up-element { 
  opacity: 1 !important; 
  transform: none !important; 
  visibility: visible !important; 
}
