Reset and base styles * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "TimesNewRoman";
  src: url("fonts/times.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Times New Roman", Times, serif;
  font-weight: normal;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Times New Roman", Times, serif;
  font-weight: normal;
  font-weight: 500 !important;
  margin-bottom: 1rem;
  text-transform: uppercase;
  /* color: #333; */
}

/* Heading Sizes */
h1 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
}

h2 {
  font-size: 26px;
  line-height: 2;
  font-weight: 700;
}

h3 {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

/* Section Headings */
.section-heading-xl {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
}

.section-heading-lg {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
}

.section-heading-md {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}

/* Paragraph Styles */
p {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 16px;

  font-weight: 400;
}

.text-large {
  font-size: 18px;
}

.text-small {
  font-size: 14px;
  line-height: 1.8;
}

/* Link Styles */
a {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 15px;

  text-decoration: none;
  /* color: inherit; */
}

/* Homepage Styles */
.homepage {
  min-height: 100vh;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background: rgba(18, 17, 17, 0); */
  /* backdrop-filter: blur(10px); */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  z-index: 1000;
  animation: slideDown 0.6s ease-out;
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.logo-icon {
  width: 100%;
}

.nav-menu {
  font-size: 14px !important;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
  font-size: 16px;

  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.nav-link:hover {
  color: #098378;
}

.btn-primary {
  background: #098378;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 300 !important;
  font-size: 15px;

  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.btn-primary:hover {
  background: #0d9488;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 0.75rem 2rem;
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-secondary:hover {
  background: white;
  color: #098378;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 1.5s ease-out;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 7, 7, 0.8),
    rgba(10, 10, 10, 0.6)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  max-width: 700px;
  animation: slideUp 1s ease-out 0.3s both;
}

.hero-title {
  font-size: 70px;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Container */
/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8rem;
} */

/* Section Styles */
/* section {
  padding: 5rem 0;
} */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #535353;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background: #ffffff;
  padding: 6rem 0rem !important;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
  align-items: center;
}

.services-header-left {
  max-width: 700px;
}
.services-header-center {
  max-width: 700px;
  align-items: center !important;
}
.services-label {
  color: #098378;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0rem;
  display: block;

  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.services-header-left h2 {
  font-size: 44px;
  font-weight: 600;
  color: #0e0e0e;
  line-height: 1.3;
  margin: 0;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}
.services-header-center h2 {
  font-size: 44px;
  font-weight: 600;
  color: #0e0e0e;
  line-height: 1.3;
  margin: 0;
  align-items: center !important;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.services-header-right {
  max-width: 700px;
  align-self: end;
}
.services-header-center {
  max-width: 700px;
  align-self: center;
  align-items: center !important;
}
.services-header-right p {
  font-size: 18px;
  color: #535353;

  margin: 0;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}
.services-header-center p {
  font-size: 18px;
  color: #535353;
  line-height: 1;
  align-items: center !important;
  margin: 0;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  height: auto; /* FIX */
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  animation: fadeInUp 0.8s ease-out;
  color: #f1f1f1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card-large {
  grid-row: span 2;
  height: auto;
}

.service-card-small {
  height: auto;
}

.services-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  padding: 2rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.service-overlay h3 {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin: 0;
  flex: 1;
  line-height: 1.5;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.service-arrow {
  font-size: 1.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 7, 7, 0.2) 0%,
    rgba(10, 10, 10, 0.9) 60%,
    rgba(10, 10, 10, 1) 100%
  );
  padding-bottom: 2.5rem;
}

.service-card:hover .service-arrow {
  transform: translateX(5px);
  opacity: 1;
}

.service-card:hover .service-overlay h3 {
  transform: translateY(-5px);
}

/* Value Section */
.value-section {
  background: #f5fafa;
  /* padding: 6rem 0; */
}

.value-header {
  text-align: center !important;
  max-width: 550px;
  margin: 0 auto 4rem;
}

.value-label {
  color: #098378;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 1rem;
  display: block;

  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.value-header h2 {
  font-size: 44px !important;
  font-weight: 600;
  color: #0e0e0e;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.value-header p {
  font-size: 16px;
  color: #444444;

  margin: 0;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-item {
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.value-item:nth-child(1) {
  animation-delay: 0.1s;
}
.value-item:nth-child(2) {
  animation-delay: 0.2s;
}
.value-item:nth-child(3) {
  animation-delay: 0.3s;
}
.value-item:nth-child(4) {
  animation-delay: 0.4s;
}
.value-item:nth-child(5) {
  animation-delay: 0.5s;
}
.value-item:nth-child(6) {
  animation-delay: 0.6s;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #098378;
  display: block;
}
.value-icon-image {
  height: auto;
  max-width: auto !important;
}

.value-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
  line-height: 1.5;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.value-item p {
  color: #535353;

  font-size: 14px;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

/* Solutions Section */
.solutions-section {
  padding: 50px 0;
}

.solutions-content {
  /* Define grid areas for easy ordering */
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image text";
  gap: 4rem;
  align-items: center;
  /* background-color: #fff; */
}

/* Assign grid areas */
.solutions-image {
  grid-area: image;
}

.solutions-text {
  grid-area: text;
}

/* Image styling */
.professional-image {
  width: 100%;
  height: 80vh !important;
  display: block;
}

.choose-image {
  width: 100%;
  height: 80vh !important;
  display: block;
}

/* What do we do? label styling */
.solutions-label {
  /* Use flex to align the line and text */
  display: flex;
  align-items: center;
  color: #333; /* Darker text color for the label */
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0.5rem; /* Reduced space below the label */
  line-height: 1.2;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

/* Vertical line for the label (based on the image) */
.services-label-line {
  display: block;
  width: 3px; /* Thin line */
  height: 18px;
  background-color: #007bff; /* Use a primary blue or similar color if #098378 isn't desired */
  background-color: #098378; /* Using the original green */
  margin-right: 8px;
}

.solutions-text h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 2.5rem; /* Reduced space below the heading */
  color: #1a1a1a; /* Very dark color */
  line-height: 1.3;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.solutions-text p {
  font-size: 14px; /* Slightly smaller for the body copy */
  color: #535353;
  margin-bottom: 2rem; /* More space before the list */
  line-height: 1.6; /* Tighter line-height for body copy */
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.solutions-list {
  list-style: none;
  padding: 0; /* Important: remove default padding */
  margin: 0; /* Remove default margin */
}

.solutions-list li {
  /* No top/bottom padding; rely on margin-bottom for spacing */
  padding: 0;
  margin-bottom: 10px; /* Space between list items */
  color: #333;
  position: relative;
  padding-left: 13px; /* Space for the vertical line */
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif !important;
}

/* Custom vertical line for list items (based on the image) */
.solutions-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px; /* Thin vertical line */
  height: 100%; /* Line covers the full height of the text/margin */
  background-color: #098378; /* The accent color */
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif !important;
  border-radius: 0; /* Make it a square line, not a circle */
}
.solutions-lists {
  list-style: none;
  padding: 0; /* Important: remove default padding */
  margin: 0; /* Remove default margin */
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif !important;
}

.solutions-lists li {
  /* No top/bottom padding; rely on margin-bottom for spacing */
  padding: 0;
  margin-bottom: 22px; /* Space between list items */
  color: #333;
  position: relative;
  padding-left: 12px; /* Space for the vertical line */
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif !important;
}
.solutions-lists li p {
  margin-top: 5px;
  font-size: 14px;
  color: #555;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif !important;
}

/* Custom vertical line for list items (based on the image) */
.solutions-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px; /* Thin vertical line */
  height: 100%; /* Line covers the full height of the text/margin */
  background-color: #098378; /* The accent color */
  border-radius: 0; /* Make it a square line, not a circle */
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .solutions-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "text";
    gap: 2rem;
    /* padding: 20px; */
  }

  .solutions-text h2 {
    font-size: 32px;
  }
}
.professional-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  animation: fadeInRight 1s ease-out;
}

/* Testimonials Section */
.testimonials-section {
  background: #f5fafa;
  /* padding: 5rem 0; */
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-label {
  color: #098378;
  font-weight: 500;
  font-size: 16px;
  /* margin-bottom: 1rem; */
  display: block;

  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.testimonials-header h2 {
  font-size: 40px;
  font-weight: 700;
  /* margin-bottom: 1rem; */
  color: #333;
  line-height: 1.3;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}
.testimonials-section h4 {
  margin-bottom: 2px !important;
  color: #098378;
  font-size: 16px !important;
}

.testimonials-header p {
  font-size: 18px;
  color: #535353;
  max-width: 700px;
  margin: 0 auto;

  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.testimonials-scroll-container {
  margin-top: 3rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #098378 #f1f1f1;
}

.testimonials-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.testimonials-scroll-container::-webkit-scrollbar-thumb {
  background: #098378;
  border-radius: 4px;
}

.testimonials-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #0d9488;
}

.testimonials-grid {
  display: flex;
  gap: 2rem;
  padding: 0 0.5rem;
  min-width: min-content;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex: 0 0 350px;
  min-height: 280px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars span {
  color: #fbbf24;
  font-size: 1.125rem;
}

.testimonial-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
  line-height: 1.5;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.author-info p {
  font-size: 14px;
  color: #535353;
  margin: 0;
  line-height: 1.8;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

/* Blog Section */
.blog-section {
  background: #f5fafa;
  /* padding: 5rem 0; */
}

.blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-label {
  color: #098378;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 1rem;
  display: block;

  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.blog-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.3;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.blog-header p {
  font-size: 18px;
  color: #535353;
  max-width: 700px;
  margin: 0 auto;

  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  cursor: pointer;
}
.blog-card:hover img {
  filter: brightness(0.7);
}
.blog-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  object-position: top;
}
.team-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  object-position: top;
}
.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
}

.blog-date {
  background: #098378;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  line-height: 1.5;
  margin: 0;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.blog-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card:hover .blog-arrow {
  opacity: 1;
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: #098378;
  color: white;
}

/* Footer CTA Section */
.footer-cta {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom-line {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-cta .cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-cta h2 {
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.btn-secondary-footer {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 0.75rem 1.5rem;
  /* border-radius: 0.5rem; */
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.btn-secondary-footer:hover {
  background: white;
  color: #098378;
}

/* Footer Main Content */
.footer-main {
  padding: 3rem 0 0rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-weight: 600;
  color: white;
  display: flex;
  align-items: start !important;
  justify-self: left;
  gap: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

/* Animations */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

/* Scroll animations */
.service-card,
.value-item,
.blog-card {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Intersection Observer will trigger these */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    display: none;
  }

  .solutions-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solutions-text h2 {
    font-size: 30px;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }

  .services-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .service-card-large {
    grid-row: auto;
    height: 250px;
  }

  .services-right {
    gap: 1rem;
  }

  .service-card-small {
    height: 200px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .value-header h2 {
    font-size: 30px;
  }

  .hero-title {
    font-size: 40px;
  }

  .services-header-left h2 {
    font-size: 30px;
  }

  .footer-cta .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-cta h2 {
    font-size: 26px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-card {
    flex: 0 0 300px;
    min-height: 300px;
  }

  .testimonials-header h2 {
    font-size: 30px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .solutions-text h2 {
    font-size: 2rem;
  }

  .trust-header h2 {
    font-size: 2rem;
  }

  .footer-cta h2 {
    font-size: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-width: unset;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* .value-item {
    text-align: center;
  } */

  .testimonial-card {
    flex: 0 0 280px;
    padding: 1.5rem;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .blog-header h2 {
    font-size: 2rem;
  }

  .blog-title {
    font-size: 18px;
  }

  .blog-overlay {
    padding: 1rem;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  display: flex;
  animation: scroll 50s linear infinite;
}

.services-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #098378;
  font-weight: 500;
}
.solutions-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #098378;
  font-weight: 500;
}
.services-label-line {
  width: 50px;
  height: 2px;
  background-color: #098378;
  display: inline-block;
}
/* --- Our Journey Section Styles (New) --- */

.our-journey-section {
  padding: 0px 0;
}

.our-journey-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-areas: "text image";
  gap: 4rem;
  align-items: center;
  padding: 40px 0px;
  background-color: #fff;
}

.our-journey-image {
  grid-area: image;
}

.our-journey-text {
  grid-area: text;
}

.our-journey-image .professional-image {
  width: 100%;
  height: 400px !important;
  object-fit: cover;
  border-radius: 0;
  animation: fadeInRight 1s ease-out;
  display: block;
}

.our-journey-text h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  line-height: 1.3;
  font-family: "TimesNewRoman", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.our-journey-text p {
  font-size: 16px;
  color: #535353;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

/* --- Responsive Adjustments for Our Journey Section --- */
@media (max-width: 768px) {
  .our-journey-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "text";
    gap: 2rem;
    padding: 0px;
  }

  .our-journey-text h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .our-journey-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .our-journey-text h2 {
    font-size: 2rem;
  }
}
/* Sticky Connect Button */
.sticky-connect-button {
  position: fixed;
  right: 0;
  top: 60%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;

  background-color: #098378;
  border-radius: 50px;
  border: 1px solid #fff;

  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  align-content: center;
  width: 55px;
  padding: 20px 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;

  z-index: 1000;
  transition: background-color 0.3s ease;
}

.sticky-connect-button:hover {
  background-color: #0aa890;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .sticky-connect-button {
    width: 48px;
    font-size: 12px;
    padding: 15px 0;
  }
}

.scroll-btn {
  position: fixed;
  right: 25px;
  bottom: -80px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #0aa890;
  color: #fff;
  border: 1px solid white;
  cursor: pointer;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
}

.scroll-btn.show {
  bottom: 25px;
  opacity: 1;
}

.scroll-btn.hide {
  bottom: -80px;
  opacity: 0;
}

.scroll-contact-btn {
  position: fixed;
  right: 10px;
  bottom: -80px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #0aa890;
  color: #fff;
  border: 1px solid white;
  cursor: pointer;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
}

.scroll-contact-btn.show {
  bottom: 100px;
  opacity: 1;
}

.scroll-contact-btn.hide {
  bottom: -80px;
  opacity: 0;
}
/* .grecaptcha-badge {
  visibility: visible !important;
  position: fixed;
  z-index: 9999;
  bottom: 0px !important;
  right: 0px !important;
} */
.blog-slider-outer {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.blogSwiper {
  flex: 1;
  width: 100%;
  margin: 0;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: static;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.swiper-button-prev-custom::after,
.swiper-button-next-custom::after {
  font-family: swiper-icons;
  font-size: 24px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(100%);
}
