:root {
  --primary-blue: #0e3d6e;
  --primary-gold: #ecbe51;
  --text-dark: #1f2937;
  --text-light: #f9fafb;
  --bg-light: #f4f6f8;
  --white: #ffffff;
  --focus-ring: #2563eb;
  --transition: all 0.3s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* Accessibility Focus States */
:focus-visible {
  outline: 3px solid var(--primary-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-gold);
  color: var(--primary-blue);
  padding: 8px 16px;
  font-weight: bold;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Header & Navigation */
.site-header {
  background-color: var(--primary-blue);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-container .btn{
      padding: 6px 14px;
}
.brand-logo {
  max-height: 55px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 10px;
  position: relative;
  transition: var(--transition);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: #dcb043;
  color: var(--primary-blue);
}

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

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

/* Layout Elements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.hero {
  background: url('../images/banner-img2.jpg') center/cover no-repeat;
  color: var(--text-light);
  text-align: left;
  padding: 5rem 1rem;
}

.hero .container {
  position: relative;
  max-width: 720px;
  margin: 0;
  padding: 3rem 2rem;
  background: rgba(14, 61, 110, 0.82);
  border-radius: 24px;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 58px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 0 2rem;
  color: #e5e7eb;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
}

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

.card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border-color: var(--primary-gold);
}

.card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

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

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-gold);
  background-color: var(--primary-blue);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Footer */
/* Footer */
.site-footer {
  background-color: #061532;
  color: var(--text-light);
  border-top: 4px solid var(--primary-gold);
}

.site-footer .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-bottom a {
  color: var(--primary-gold);
  transition: var(--transition);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-blue);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.is-active {
    display: flex;
  }

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

  .hero-cta {
    flex-direction: column;
  }
}

/* About us section in home page start */
 
.about-home { 
  background-color: var(--white);
}

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

.sub-tag {
  color: #bfa034;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.about-content h2 {
  font-size: 2.25rem;
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.lead-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-content p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* Commitment Box */
.commitment-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-gold);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.75rem;
}

.commitment-box h4 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.commitment-list li {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.commitment-list li span {
  color: var(--primary-blue);
  margin-right: 0.35rem;
  font-weight: bold;
}

.tagline {
  font-style: italic;
  font-weight: 500;
  color: var(--primary-blue);
  margin-bottom: 0 !important;
}

.about-cta {
  margin-top: 1rem;
}

/* About Image & Experience Badge */
.about-image {
  position: relative;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border-bottom: 4px solid var(--primary-gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 220px;
}

.experience-badge .number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .experience-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1rem;
    max-width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .commitment-list {
    grid-template-columns: 1fr;
  }
}
/* About us section in home page end */

/* Service section in home page start */
/* Dark Background Utility Classes */
.bg-dark {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

.text-light {
  color: var(--white) !important;
}

.text-muted {
  color: #9ca3af !important;
}

/* Compact Service Cards for Home Page */
 

.service-card-compact {
  background-color: #154a82; /* Slightly lighter shade for contrast against dark bg */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(236, 190, 81, 0.15);
}

.service-card-compact:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  border-color: var(--primary-gold);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.service-card-compact:hover .service-image img {
  transform: scale(1.05);
}

.service-title {
  color: var(--white);
  padding: 1.25rem 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

/* CTA Container below Services */
.services-cta {
  text-align: center;
  margin-top: 3rem;
}
/* Service section in home page end */

/* Premium "How We Work" Section */
.how-we-work-section {
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%); 
  position: relative;
  overflow: hidden;
}

.how-we-work-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-we-work-section .sub-tag {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.how-we-work-section .section-title {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.how-we-work-section .section-subtitle {
  color: #64748b;
  font-size: 1.1rem;
}

/* Timeline Track & Layout */
.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, #cbd5e1 0%, var(--primary-gold) 50%, #cbd5e1 100%);
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Premium Process Cards */
.step-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(14, 61, 110, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Animation Properties */
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
  transform: translateY(20px);
}

.step-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  border-color: var(--primary-gold);
  box-shadow: 0 20px 35px -10px rgba(14, 61, 110, 0.15);
}

/* Glowing Step Badges */
.step-badge {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 0 0 6px #f8fafc, 0 8px 16px rgba(14, 61, 110, 0.25);
  transition: all 0.4s ease;
  position: relative;
}

.step-badge::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed var(--primary-gold);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.step-card:hover .step-badge {
  background: var(--primary-gold);
  color: var(--primary-blue);
  box-shadow: 0 0 0 6px #ffffff, 0 12px 24px rgba(236, 190, 81, 0.4);
}

.step-card:hover .step-badge::after {
  opacity: 1;
  transform: rotate(90deg);
}

/* Card Content */
.step-title {
  color: var(--primary-blue);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-desc {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Entrance Animation Keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .timeline-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* About us page start */
/* About Culture (Vision, Mission, Values) Section */
.about-culture-section { 
  background-color: var(--bg-light);
}

/* Vision & Mission Styling */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.culture-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  border-top: 5px solid var(--primary-gold);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -10px rgba(14, 61, 110, 0.12);
}

.culture-icon {
  width: 55px;
  height: 55px;
  background-color: rgba(14, 61, 110, 0.08);
  color: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.culture-card .sub-tag {
  color: var(--primary-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.culture-card h2 {
  color: var(--primary-blue);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.culture-card p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Core Values Styling */
.values-wrapper .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.value-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.value-card h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .culture-card {
    padding: 2rem 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}
/* About us page end */

/* Inner Page Hero Banner */
.page-hero {
  position: relative;
  width: 100%;
  height: 227px;
  background: url('../images/page-title.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Dark Purple/Blue Tint Overlay */
.page-hero-overlay {
  position: absolute;
  inset: 0;
    /* background: linear-gradient(135deg, rgb(23 30 77 / 0%) 0%, rgb(38 28 70 / 5%) 50%, rgb(55 61 113 / 38%) 100%); */
   background: linear-gradient(135deg, rgb(23 30 77 / 48%) 0%, rgb(38 28 70 / 48%) 50%, rgb(20 24 60 / 59%) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.page-hero-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0; 
    /* background: linear-gradient(135deg, rgba(23, 30, 77, 0.88) 0%, rgba(38, 28, 70, 0.85) 50%, rgba(20, 24, 60, 0.88) 100%); */
    padding: 8px 25px;
    border-radius: 10px;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .page-hero {
    height: 200px;
  }
  
  .page-hero-title {
    font-size: 2rem;
  }
}

.whatsapp-icon {
    position: fixed;
    bottom: 10px;
    right: 24px;
    z-index: 99;
}

/* Why Milestone Section */
.why-milestone-section { 
  background-color: var(--bg-light);
}

.why-milestone-section .section-header {
  margin-bottom: 3.5rem;
}

.why-milestone-section .sub-tag {
  color: #bfa034;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.why-milestone-section .section-title {
  color: var(--primary-blue);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(14, 61, 110, 0.08);
  border-color: var(--primary-gold);
}

/* Icon Container */
.feature-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(14, 61, 110, 0.06);
  color: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Typography Accessibility & Styling */
.feature-card h2 {
  color: var(--primary-blue);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-card p {
  color: #374151; /* High contrast text for accessibility (WCAG AA compliant) */
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Accessibility Focus Ring for Interactive Navability */
.feature-card:focus-within {
  outline: 3px solid var(--primary-gold);
  outline-offset: 3px;
}

/* Layout Adjustments for Desktop (Centers the 5th item nicely) */
@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .feature-card-wide {
    grid-column: span 1;
  }
}

/* Responsive Scaling */
@media (max-width: 768px) {
 
  .why-milestone-section .section-title {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }
  .why-milestone-section .section-header{
        margin-bottom: 2.5rem;
  }
}

/* Industries Section */
.industries-section { 
  background-color: var(--bg-light);
}

.industries-section .section-header {
  margin-bottom: 3.5rem;
}

.industries-section .sub-tag {
  color: #bfa034;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.industries-section .section-title {
  color: var(--primary-blue);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.industries-section .section-subtitle {
  color: #6b7280;
  max-width: 650px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}

/* Grid Layout */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.industry-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(14, 61, 110, 0.1);
  border-color: var(--primary-gold);
}

/* Icon Styling */
.industry-icon {
  width: 58px;
  height: 58px;
  background-color: rgba(14, 61, 110, 0.06);
  color: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Typography & Focus */
.industry-card h2 {
  color: var(--primary-blue);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.industry-card p {
  color: #374151; /* High contrast readable text */
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.industry-card:focus-within {
  outline: 3px solid var(--primary-gold);
  outline-offset: 3px;
}

/* Large Display Alignment */
@media (min-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive Scaling */
@media (max-width: 768px) {
 

  .industries-section .section-title {
    font-size: 1.5rem;
  }

  .industry-card {
    padding: 2rem 1.5rem;
  }
}
/* Contact Page Styles */
.contact-section { 
  background-color: var(--bg-light);
}

.contact-section .section-header {
  margin-bottom: 3.5rem;
}

.contact-section .sub-tag {
  color: #bfa034;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-section .section-title {
  color: var(--primary-blue);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.contact-section .section-subtitle {
  color: #6b7280;
  max-width: 600px;
  margin: 0.5rem auto 0;
  font-size: 1.05rem;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.75fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info Card Sidebar */
.contact-info-card {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  border-top: 5px solid var(--primary-gold);
  box-shadow: 0 10px 30px rgba(14, 61, 110, 0.15);
  display: flex;
  flex-direction: column;
}

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

.info-desc {
  color: #d1d5db;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(236, 190, 81, 0.15);
  color: var(--primary-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-details {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.info-details address {
  font-style: normal;
  color: #f3f4f6;
  line-height: 1.5;
  font-size: 0.95rem;
}

.info-link {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--primary-gold);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-form h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.required {
  color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background-color: #f8fafc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 61, 110, 0.15);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 2rem 1.5rem;
  }
}
/* Google Map Container */
.map-wrapper {
  width: 100%;
  min-height: 450px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
}

/* Responsive Scaling */
@media (max-width: 992px) {
  .map-wrapper {
    min-height: 350px;
  }
  
  .map-wrapper iframe {
    min-height: 350px;
  }
}

/* Quote Section Styling */
.quote-section { 
  background-color: var(--bg-light);
}

.quote-section .section-header {
  margin-bottom: 3.5rem;
}

.quote-section .sub-tag {
  color: #bfa034;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.quote-section .section-title {
  color: var(--primary-blue);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.quote-section .section-subtitle {
  color: #6b7280;
  max-width: 750px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Grid Layout */
 

/* Sidebar Info Card */
.quote-info-card {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 3rem 2.25rem;
  border-radius: 12px;
  border-top: 5px solid var(--primary-gold);
  box-shadow: 0 10px 30px rgba(14, 61, 110, 0.15);
  display: flex;
  flex-direction: column;
}

.brand-block h2 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.brand-block .tagline {
  color: var(--primary-gold);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.quote-info-card .divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 2rem 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.info-icon {
  width: 46px;
  height: 46px;
  background-color: rgba(236, 190, 81, 0.15);
  color: var(--primary-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-details {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.info-details address {
  font-style: normal;
  color: #f3f4f6;
  line-height: 1.5;
  font-size: 0.95rem;
}

.info-link {
  color: #ffffff;
  font-size: 1.05rem; 
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--primary-gold);
}

/* Quote Form Wrapper */
.quote-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.quote-form h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.required {
  color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background-color: #f8fafc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 61, 110, 0.15);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Responsive Scaling */
@media (max-width: 992px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quote-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-info-card {
    padding: 2rem 1.5rem;
  }
}

/* Thank You Section */
.thank-you-section { 
  background-color: var(--bg-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card {
  background: var(--white);
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 5px solid var(--primary-gold);
}

/* Success Icon Header */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thank-you-card .sub-tag {
  color: #bfa034;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.thank-you-title {
  color: var(--primary-blue);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.thank-you-message {
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.thank-you-message strong {
  color: var(--primary-blue);
}
 

/* Divider & Urgent Section */
.thank-you-card .divider {
  border: 0;
  height: 1px;
  background-color: #e5e7eb;
  margin: 2rem 0;
}

.urgent-assistance .urgent-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.urgent-assistance .urgent-contact {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

.urgent-assistance a {
  color: var(--primary-blue);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.urgent-assistance a:hover {
  color: #bfa034;
  text-decoration: underline;
}

/* Responsive Scaling */
@media (max-width: 576px) {
 

  .thank-you-card {
    padding: 2.5rem 1.25rem;
  }

  .thank-you-title {
    font-size: 1.5rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-buttons .btn {
    width: 100%;
  }
  .culture-card h2{
        font-size: 1.5rem;
  }
  .culture-card p{
        font-size: 1rem;
  }
  .section-title{
    font-size: 1.5rem;
        line-height: 31px;
  }
  .contact-section .section-title,
  .quote-section .section-title{
    font-size: 1.5rem;
  }
  .quote-section .section-subtitle{
    font-size:15px;
  }
}

/* Form Error Feedback */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc2626 !important;
  background-color: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}