/* Color & Styling Variables */
:root {
  --gold-primary: #d4a340;
  --gold-hover: #f3c766;
  --bg-dark: #080a08;
  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --border-line: rgba(255, 255, 255, 0.15);
}

/* Global Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Cinzel', serif;
  overflow-x: hidden;
}

/* Main Section Layout */
.hero-section {
  position: relative;
  width: 100%;
  min-height:70vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  /* Replace with your background image file path */
  background-image: url('../images/service-banner.png'); 
  background-size: cover;
  background-position: center right;
  padding: 100px 5%;
}

/* Dark Gradient Overlay for Contrast */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(133deg, rgb(0 10 20) 0%, rgb(1 17 35 / 84%) 57%, rgb(8 10 8 / 51%) 100%);
    z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}

/* Header & Logo */
.logo-box {
  display: inline-block;
  margin-bottom: 40px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}

.logo-title {
  font-size: 1.8rem;
  letter-spacing: 5px;
  color: var(--gold-primary);
  font-weight: 700;
  line-height: 1;
}

.logo-sub {
  font-size: 0.85rem;
  letter-spacing: 7px;
  color: var(--gold-primary);
  margin-top: 2px;
}

.logo-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 1.8px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
}

/* Headline Area */
.content-box {
  margin-bottom: 50px;
}

.services-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
    padding-top: 50px;
}

.label-line {
  width: 45px;
  height: 2px;
  background-color: var(--gold-primary);
}

.hero-headline {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-headline span {
  display: block;
}

.white-text {
  color: var(--text-white);
}

.gold-text {
  color: var(--gold-primary);
}

/* Bottom Services Navigation Grid */
.services-grid {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid var(--border-line);
  padding-top: 25px;
}

.service-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
  border-right: 1px solid var(--border-line);
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:last-child {
  border-right: none;
}

.service-card .icon {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
  margin-bottom: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #d0d0d0;
  line-height: 1.3;
}

/* Hover Animations for Service Cards */
.service-card:hover {
  transform: translateY(-5px);
}

.service-card:hover .icon {
  color: var(--gold-hover);
  transform: scale(1.15);
}

.service-card:hover span {
  color: var(--text-white);
}

/* CSS Entrance Animations */
.animate-fade-down {
  animation: fadeInDown 0.8s ease forward;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease 0.2s forwards;
  opacity: 0;
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.animate-fade-up-delay {
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .hero-section {
    padding: 40px 20px;
  }

  .overlay {
    background: rgba(8, 10, 8, 0.88); /* Darker overlay on smaller screens */
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 10px;
    border-top: 1px solid var(--border-line);
  }

  .service-card {
    border-right: none;
    padding: 10px;
  }
}

@media (max-width: 550px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-headline {
    font-size: 1.6rem;
  }
}
/* Section Container */
.values-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #f7f9fb;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.values-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

/* Section Title */
.values-title {
    font-family: 'Montserrat', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #011123;
    margin-bottom: 40px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.values-section.animate .values-title {
  opacity: 1;
  transform: translateY(0);
}

/* Values Grid Structure */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

/* Individual Card Styling */
.value-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

/* Staggered Delay Animations for Cards */
.values-section.animate .value-card:nth-child(1) { transition-delay: 0.1s; }
.values-section.animate .value-card:nth-child(2) { transition-delay: 0.25s; }
.values-section.animate .value-card:nth-child(3) { transition-delay: 0.4s; }
.values-section.animate .value-card:nth-child(4) { transition-delay: 0.55s; }

.values-section.animate .value-card {
  opacity: 1;
  transform: translateY(0);
}

/* Icon & Typography Styling */
.value-icon {
  width: 48px;
  height: 48px;
  color: #124d27;
  margin-bottom: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-heading {
  font-family: 'Montserrat', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #162438;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

/* Hover Interaction Effects */
.value-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 30px rgba(18, 77, 39, 0.08);
}

.value-card:hover .value-icon {
  transform: scale(1.12);
  color: #0b3118;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .value-card {
    padding: 30px 15px;
  }
  
  .values-section {
    padding: 50px 16px;
  }
}
/* Dark Forest Green Background matching the original image */
.approach-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #011123;
    background-image: radial-gradient(circle at 40% 50%, rgb(1 17 35 / 82%) 0%, rgba(4, 15, 9, 0.98) 100%), url(../images/approach.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.approach-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

/* Header Styling */
.approach-header {
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.approach-section.animate .approach-header {
  opacity: 1;
  transform: translateY(0);
}

.approach-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #d4a340; /* Gold Accent */
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.approach-title {
  font-family: 'Montserrat', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff; /* White Title */
  letter-spacing: 1px;
  margin: 0;
}

.approach-underline {
  border-bottom: 2px solid #d4a340;
  padding-bottom: 2px;
}

/* Process Grid & Step Elements */
.approach-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 55px;
}

.approach-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Staggered Delay for Steps */
.approach-section.animate .approach-step:nth-child(1) { transition-delay: 0.2s; }
.approach-section.animate .approach-step:nth-child(3) { transition-delay: 0.4s; }
.approach-section.animate .approach-step:nth-child(5) { transition-delay: 0.6s; }
.approach-section.animate .approach-step:nth-child(7) { transition-delay: 0.8s; }

.approach-section.animate .approach-step {
  opacity: 1;
  transform: translateY(0);
}

/* Gold Circle Icon Styling */
.approach-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid #d4a340;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a340; /* Gold Icon Color */
  margin-bottom: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.approach-circle svg {
  width: 36px;
  height: 36px;
}

.approach-step:hover .approach-circle {
  transform: scale(1.1);
  background-color: #d4a340;
  color: #06150d;
}

/* Step Titles and Descriptions */
.step-title {
  font-family: 'Montserrat', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.step-num {
  color: #d4a340;
}

.step-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #c0c7c2; /* Soft Off-White/Light Gray Text */
  max-width: 220px;
  margin: 0;
}

/* Gold Connecting Lines Between Steps */
.step-connector {
  flex: 0 0 80px;
  height: 0;
  border-top: 1px dashed #d4a340;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.approach-section.animate .step-connector {
  opacity: 0.8;
}

/* Bottom Tagline Banner */
.approach-footer {
  border-top: 1px solid rgba(212, 163, 64, 0.2);
  padding-top: 30px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 1s, transform 0.6s ease 1s;
}

.approach-section.animate .approach-footer {
  opacity: 1;
  transform: translateY(0);
}

.approach-tagline {
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #d4a340; /* Gold Text */
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .approach-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-connector {
    flex: none;
    width: 0;
    height: 40px;
    border-top: none;
    border-left: 1px dashed #d4a340;
    margin: 10px 0;
  }

  .approach-title {
    font-size: 1.7rem;
  }

  .approach-tagline {
    font-size: 0.95rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
    .content-box {
        padding-top: 30px;
        margin-bottom: 30px;
    }
}

/* Small Mobiles */
@media (max-width: 480px) {
    .content-box {
        padding-top: 50px;
        margin-bottom: 20px;
    }
}

