@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Story+Script&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #bddbeb;
  color: #08366f;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 75px;
  }
}

.site-header {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  background-color: transparent;
  /* box-shadow: 0 2px 10px rgba(8, 54, 111, 0.08); */
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header:hover {
  box-shadow: 0 4px 20px rgba(8, 54, 111, 0.12);
}



.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  /* gap: 20px; */
}

@media (min-width: 768px) {
  .header-container {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.logo {
  /* width: 100px; */
  height: 70px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .logo {
    width: 80px;
  }
}

.logo-wrapper {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover {
  transform: translateY(-2px);
}

.logo-link {
  display: flex;
  align-items: center;
  /* gap: 12px; */
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #08366f;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.logo-link:hover .logo-text {
  color: #28a745;
}

@media (max-width: 767px) {
  .logo-text {
    font-size: 20px;
  }

  .logo-link {
    gap: 8px;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(8, 54, 111, 0.05);
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #08366f;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.main-nav {
  width: 100%;
  overflow-x: auto;
  /* Allow scrolling on small mobile */
}

@media (max-width: 767px) {
  .main-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    order: 3;
    background-color: #ffffff;
    border-top: 1px solid rgba(8, 54, 111, 0.1);
    margin-top: 20px;
  }

  .main-nav.active {
    max-height: 500px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 20px 0;
  }

  .nav-item {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(8, 54, 111, 0.05);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-item a::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .main-nav {
    width: auto;
    max-height: none !important;
    order: 0;
  }
}

@media (min-width: 1024px) {
  .main-nav {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  justify-content: center;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .nav-list {
    gap: 40px;
  }
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-item a {
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #08366f;
  transition: width 0.3s ease;
}

.nav-item:hover a {
  color: #08366f;
}

.nav-item:hover a::after {
  width: 100%;
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-icon {
  width: 6px;
  height: auto;
  transition: transform 0.3s ease;
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .user-actions {
    gap: 15px;
  }

  .account-link {
    font-size: 14px;
  }

  .cart-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .cart-icon {
    width: 20px;
    height: 16px;
  }
}

.account-link {
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  padding: 12px 24px;
  border-radius: 100px;
  transition: transform 0.2s ease;
  text-decoration: none;
  color: #08366f;
}

.cart-btn:hover {
  transform: scale(1.05);
}

.cart-icon {
  width: 26px;
  height: 20px;
}

.cart-text {
  font-weight: 500;
  font-size: 16px;
}

/* CSS for section section:Hero */
#section-hero {
  position: relative;
  background-image: url('../img/hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
}

@media (min-width: 1024px) {
  #section-hero {
    min-height: 500px;
  }
}

.hero-banner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-container {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .hero-container {
    padding-top: 130px;
    padding-bottom: 150px;
    display: block;
    /* Using block to allow float/margin layout or grid */
    position: relative;
  }
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.1;
  color: #08366f;
  margin: 0 0 40px 0;
  max-width: 100%;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-highlight {
  color: #28a745;
  font-family: "Kaushan Script", cursive;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 80px;
  }
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: 80px;
    /* Approximating the large scale in design */
    max-width: 1300px;
    margin-bottom: 0;
  }
}

.hero-description-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .hero-description-wrapper {
    margin-top: 40px;
    /* Adjust vertical spacing relative to title flow */
  }
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #08366f;
  margin: 0;
  max-width: 100%;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 24px;
    max-width: 884px;
  }
}

/* 
   To strictly match the visual layout where the text is pushed to the bottom right 
   while the title dominates the top left.
*/
@media (min-width: 1200px) {
  .hero-description-wrapper {
    margin-top: 50px;
    padding-left: 40%;
    /* Push to the right side */
  }
}

.products-section {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.products-section .container {
  width: 100%;
  max-width: 1536px;
}

.products-section .section-title {
  color: #08366f;
  font-size: 80px;
  /* Estimated from design height */
  font-weight: 700;
  margin: 0 0 60px 0;
  line-height: 1.2;
}

/* Bootstrap columns will handle the grid layout */

.product-card {
  border-radius: 24px;
  padding: 57px 53px;
  min-height: 450px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.product-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-radius: 24px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-image {
  opacity: 0.3;
  transform: scale(1.05);
}

.product-card .service-card-content,
.product-card .btn-learn-more {
  position: relative;
  z-index: 1;
}

/* Card Background Colors */
.card-blue-light {
  background-color: #c3d9e7;
}

.card-blue-grey {
  background-color: #dee5f1;
}

.card-purple {
  background-color: #8b7fb8;
}

.card-purple .product-title,
.card-purple .product-subtitle,
.card-purple .product-status-label {
  color: #ffffff;
}

.card-grey,
.card-blue-green {
  background-color: #b8d4d8;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.product-title {
  color: #08366f;
  font-size: 42px;
  font-weight: 500;
  /* Assuming regular/medium based on visual weight */
  line-height: 1.2;
  margin: 0;
  max-width: 640px;
}

.product-subtitle {
  color: #08366f;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.btn-learn-more {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 12px 24px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-learn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 54, 111, 0.15);
}

.btn-text {
  color: #08366f;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.btn-icon {
  font-size: 14px;
  color: #08366f;
  transition: transform 0.3s ease;
}

.btn-learn-more:hover .btn-icon {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-section .section-title {
    font-size: 56px;
  }

  .product-title {
    font-size: 32px;
  }

  .product-card {
    padding: 40px 30px;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .products-section .section-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .product-card {
    min-height: 350px;
    gap: 40px;
  }
}

/* Bootstrap row gap override */
.products-section .row {
  --bs-gutter-y: 1.5rem;
}

/* Ensure all product cards have equal height */
.products-section .row > [class*="col-"] {
  display: flex;
}

.products-section .product-link {
  display: flex;
  width: 100%;
  height: 100%;
}

.products-section .product-link .product-card {
  width: 100%;
}


/* Research Services Section */
.research-section {
  background-color: #ffffff;
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.research-section .header-content {
  margin-bottom: 80px;
}

.research-section .section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  color: #08366f;
  margin-bottom: 32px;
}

.research-section .section-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #98a8bb;
  max-width: 1146px;
}

.research-section .row.g-0 {
  --bs-gutter-x: 0;
  margin-left: 0;
  margin-right: 0;
}

.research-section .row.g-0>[class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .research-section .row.g-0>[class*="col-"]:nth-child(odd) {
    padding-right: 40px;
  }

  .research-section .row.g-0>[class*="col-"]:nth-child(even) {
    padding-left: 40px;
  }
}

.research-section .row.g-0>[class*="col-"] {
  display: flex;
  flex-direction: column;
}

.research-section .service-card {
  display: block;
  width: 100%;
  border-bottom: 1px solid #08366f;
  transition: opacity 0.3s ease;
  text-decoration: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  flex: 1;
}

.research-section .service-card:hover {
  opacity: 0.8;
}

.research-section .service-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  min-height: 135px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.research-section .card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #08366f;
  max-width: 85%;
}

.research-section .card-icon {
  font-size: 18px;
  color: #08366f;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.research-section .service-card:hover .card-icon {
  transform: translateX(4px);
}

/* Responsive Styles for Research Section */
@media (max-width: 1024px) {
  .research-section .section-title {
    font-size: 48px;
  }

  .research-section .section-description {
    font-size: 20px;
  }

  .research-section .row.g-0>[class*="col-"]:nth-child(odd) {
    padding-right: 20px;
  }

  /* .research-section .row.g-0 > [class*="col-"]:nth-child(even) {
      padding-left: 20px;
    } */
}

@media (max-width: 768px) {
  .research-section .section-title {
    font-size: 36px;
  }

  .research-section .service-card-content {
    padding: 30px 0;
    min-height: auto;
  }

  .research-section .card-title {
    font-size: 20px;
  }
}

/* News Section */
.news-section {
  background-color: #ffffff;
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.news-section .news-header-content {
  margin-bottom: 60px;
}

.news-section .news-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  color: #08366f;
  margin-bottom: 24px;
}

.news-section .news-section-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #98a8bb;
  max-width: 1146px;
  margin: 0;
}

.news-section .news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-section .news-card:hover {
  transform: translateY(-4px);
}

.news-section .news-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  background-color: #bddbeb;
}

.news-section .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-section .news-card:hover .news-image {
  transform: scale(1.1);
}

.news-section .news-card-content {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-section .news-date {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #98a8bb;
  margin: 0 0 16px 0;
}

.news-section .news-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #08366f;
  margin: 0 0 20px 0;
  flex: 1;
}

.news-section .news-read-more {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #08366f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.news-section .news-read-more:hover {
  color: #08366f;
  opacity: 0.8;
}

.news-section .news-read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.news-section .news-read-more:hover i {
  transform: translateX(4px);
}

/* Responsive Styles for News Section */
@media (max-width: 1024px) {
  .news-section .news-section-title {
    font-size: 48px;
  }

  .news-section .news-section-description {
    font-size: 20px;
  }

  .news-section .news-image-wrapper {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .news-section .news-section-title {
    font-size: 36px;
  }

  .news-section .news-section-description {
    font-size: 18px;
  }

  .news-section .news-image-wrapper {
    height: 200px;
  }

  .news-section .news-title {
    font-size: 20px;
  }
}

/* Footer Section */
.site-footer {
  background-color: #08366f;
  color: #ffffff;
  padding: 60px 20px 40px;
  width: 100%;
}

.site-footer .container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .site-footer .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .site-footer .container {
    padding: 0 75px;
  }
}

.footer-top,
.footer-middle {
  margin-bottom: 40px;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.footer-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #98a8bb;
  margin: 0 0 16px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.footer-link:hover i {
  transform: translateX(4px);
}

.footer-separator {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

.footer-bottom {
  padding-top: 20px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .footer-legal-links {
    margin-bottom: 0;
  }
}

.footer-legal-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #98a8bb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #98a8bb;
  margin: 0;
  text-align: left;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: right;
  }
}

/* Responsive Styles for Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px 30px;
  }

  .footer-top,
  .footer-middle {
    margin-bottom: 30px;
  }

  .footer-separator {
    margin: 30px 0;
  }

  .footer-heading {
    font-size: 16px;
  }

  .footer-links a,
  .footer-text,
  .footer-link {
    font-size: 14px;
  }
}

/* Breadcrumb Section */
.breadcrumb-section {
  background-color: #f8f8f8;
  min-height: 200px;
  padding: 100px 50px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(8, 54, 111, 0.1);
  position: relative;
}

.breadcrumb-section .container {
  width: 100%;
}

.breadcrumb-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  padding: 40px 0;
}

.breadcrumb-nav {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .breadcrumb-nav {
    margin-bottom: 30px;
  }
}

.breadcrumb-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #08366f;
  margin: 0;
}

@media (min-width: 768px) {
  .breadcrumb-title {
    font-size: 64px;
  }
}

@media (min-width: 1024px) {
  .breadcrumb-title {
    font-size: 80px;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '/';
  padding: 0 12px;
  color: #98a8bb;
  font-size: 14px;
}

.breadcrumb-item a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #98a8bb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #08366f;
}

.breadcrumb-item a i {
  font-size: 12px;
}

.breadcrumb-item.active {
  color: #08366f;
  font-weight: 500;
}

/* About Section */
.about-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #28a745;
  display: block;
  margin-bottom: 12px;
}

.about-content-wrapper {
  margin-bottom: 40px;
}

.about-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #08366f;
  margin: 0 0 24px 0;
}

.about-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #08366f;
  margin: 0 0 24px 0;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #08366f;
  opacity: 0.6;
}

/* Statistics Section */
.statistics-section {
  background-color: #08366f;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  font-size: 48px;
  color: #fff; /* make visible on dark background */
  margin-bottom: 20px;
}

/* Keep icons white when the card is hovered inside the dark statistics section */
.statistics-section .stat-card:hover .stat-icon,
.statistics-section .stat-card:hover .stat-icon i {
  color: #fff;
}


.stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

/* Mission Vision Section */
.mission-vision-section {
  background-color: #f8f8f8;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.mission-vision-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 50px 40px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(8, 54, 111, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.15);
}

.card-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.card-icon-wrapper i {
  font-size: 36px;
  color: #08366f;
}

.mission-card .card-icon-wrapper {
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
}

.vision-card .card-icon-wrapper {
  background: linear-gradient(135deg, #d9d7f1 0%, #dee5f1 100%);
}

.mission-vision-card .card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #08366f;
  margin: 0 0 24px 0;
}

.mission-vision-card .card-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #08366f;
  margin: 0 0 20px 0;
}

.mission-vision-card .card-text:last-child {
  margin-bottom: 0;
}

/* Values Section */
.values-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #08366f;
  margin: 0 0 16px 0;
}

.section-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #98a8bb;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  background-color: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #28a745;
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: #08366f;
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
}

.value-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #08366f;
  margin: 0 0 16px 0;
}

.value-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin: 0;
}

/* Expertise Section */
.expertise-section {
  background-color: #f8f8f8;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.expertise-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(8, 54, 111, 0.05);
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.15);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  color: #08366f;
  transition: transform 0.3s ease, background 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
}

.expertise-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: #08366f;
  margin: 0 0 16px 0;
}

.expertise-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin: 0;
}

/* Why Choose Us Section - List styles for about page */
.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-choose-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 18px;
}

.why-choose-content {
  flex: 1;
}

.contact-card {
  background: linear-gradient(135deg, #08366f 0%, #0a4a8a 100%);
  border-radius: 16px;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.2);
}

.contact-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 30px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 20px;
}

.contact-info-content {
  flex: 1;
}

.contact-info-content strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #98a8bb;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-content a,
.contact-info-content span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.6;
  display: block;
}

.contact-info-content a:hover {
  color: #28a745;
}

/* Responsive Styles for About Sections */
@media (max-width: 1024px) {

  .about-section-title,
  .section-title {
    font-size: 40px;
  }

  .about-text {
    font-size: 16px;
  }

  .stat-number {
    font-size: 40px;
  }

  .mission-vision-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {

  .about-section,
  .statistics-section,
  .mission-vision-section,
  .values-section,
  .expertise-section {
    padding: 60px 20px;
  }

  .about-section-title,
  .section-title {
    font-size: 32px;
  }

  .about-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .about-image-wrapper {
    height: 300px;
    margin-bottom: 40px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-icon {
    font-size: 36px;
  }

  .stat-number {
    font-size: 36px;
  }

  .mission-vision-card {
    padding: 30px 24px;
  }

  .mission-vision-card .card-title {
    font-size: 28px;
  }

  .value-card,
  .expertise-card {
    padding: 30px 24px;
  }

  .value-icon,
  .expertise-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .contact-card {
    padding: 30px 24px;
    margin-top: 40px;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    min-width: 50px;
    min-height: 50px;
  }

  .contact-info-item {
    gap: 16px;
  }

  .section-description {
    font-size: 16px;
  }
}

/* Services Intro Section */
.services-intro-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.intro-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #08366f;
  margin: 0 0 24px 0;
}

.intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.intro-stat-item {
  text-align: center;
}

.intro-stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #28a745;
  margin-bottom: 8px;
}

.intro-stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #98a8bb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-intro-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.intro-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: #08366f;
  opacity: 0.6;
}

/* Premium Services Section */
.premium-services-section {
  background-color: #f8f8f8;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.premium-service-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(8, 54, 111, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.premium-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(8, 54, 111, 0.15);
  border-color: #28a745;
}

.premium-service-card.featured {
  border: 2px solid #28a745;
  position: relative;
}

.premium-service-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  z-index: 1;
}

.service-card-header {
  position: relative;
  padding: 40px 30px 20px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #08366f;
  transition: transform 0.3s ease, background 0.3s ease;
  margin-bottom: 20px;
}

.premium-service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-service-card.featured .service-badge {
  background: linear-gradient(135deg, #08366f 0%, #0a4a8a 100%);
}

.service-card-body {
  padding: 0 30px 30px;
  flex: 1;
}

.service-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #08366f;
  margin: 0 0 16px 0;
}

.service-card-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin: 0 0 24px 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #08366f;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features li i {
  color: #28a745;
  font-size: 14px;
  flex-shrink: 0;
}

.service-card-footer {
  padding: 20px 30px 30px;
  border-top: 1px solid rgba(8, 54, 111, 0.1);
}

.service-card-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #08366f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.service-card-link:hover {
  color: #28a745;
  gap: 12px;
}

.service-card-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-card-link:hover i {
  transform: translateX(4px);
}

/* Process Section */
.process-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.process-timeline {
  position: relative;
}

.process-step {
  text-align: center;
  padding: 40px 30px;
  background-color: #f8f8f8;
  border-radius: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 100%;
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.1);
}

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 24px;
  font-size: 36px;
  color: #08366f;
  transition: transform 0.3s ease, background 0.3s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
}

.process-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #08366f;
  margin: 0 0 12px 0;
}

.process-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin: 0;
}

/* Benefits Section */
.benefits-section {
  background-color: #f8f8f8;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.benefits-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.benefits-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: #08366f;
  opacity: 0.6;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 24px;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #08366f;
  margin: 0 0 8px 0;
}

.benefit-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background-color: #08366f;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.cta-card {
  background: linear-gradient(135deg, #08366f 0%, #0a4a8a 100%);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 12px 40px rgba(8, 54, 111, 0.3);
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.cta-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #98a8bb;
  margin: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #28a745;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
  transform: translateY(-4px);
  background-color: #20c997;
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
  color: #ffffff;
}

.cta-button i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(4px);
}

/* Responsive Styles for Services Page */
@media (max-width: 1024px) {

  .services-intro-section,
  .premium-services-section,
  .process-section,
  .benefits-section,
  .cta-section {
    padding: 60px 20px;
  }

  .intro-stat-number {
    font-size: 40px;
  }

  .service-card-title {
    font-size: 22px;
  }

  .cta-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {

  .services-intro-section,
  .premium-services-section,
  .process-section,
  .benefits-section,
  .cta-section {
    padding: 60px 20px;
  }

  .intro-text {
    font-size: 16px;
  }

  .intro-stats {
    gap: 30px;
  }

  .intro-stat-number {
    font-size: 36px;
  }

  .services-intro-image,
  .benefits-image-wrapper {
    height: 300px;
    margin-bottom: 40px;
  }

  .intro-image-placeholder,
  .benefits-image-placeholder {
    font-size: 80px;
  }

  .premium-service-card {
    margin-bottom: 30px;
  }

  .service-card-header {
    padding: 30px 24px 20px;
  }

  .service-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .service-card-body {
    padding: 0 24px 24px;
  }

  .service-card-title {
    font-size: 20px;
  }

  .service-card-footer {
    padding: 20px 24px 24px;
  }

  .process-step {
    padding: 30px 24px;
    margin-bottom: 40px;
  }

  .process-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .benefit-item {
    padding: 24px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .cta-card {
    padding: 40px 30px;
  }

  .cta-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .cta-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* Service Details Page Styles */

/* Service Hero Section */
.service-hero-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.service-hero-content {
  padding-right: 40px;
}

.service-badge-large {
  display: inline-block;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.service-hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #08366f;
  margin: 0 0 24px 0;
}

.service-hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #08366f;
  margin: 0 0 32px 0;
}

.service-hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #08366f;
}

.hero-feature-item i {
  color: #28a745;
  font-size: 18px;
}

.service-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #28a745;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.cta-button-primary:hover {
  transform: translateY(-4px);
  background-color: #20c997;
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
  color: #ffffff;
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #08366f;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid #08366f;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cta-button-secondary:hover {
  transform: translateY(-4px);
  background-color: #08366f;
  color: #ffffff;
}

.service-hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: #08366f;
  opacity: 0.6;
}

/* Service Overview Section */
.service-overview-section {
  background-color: #f8f8f8;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.service-content-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(8, 54, 111, 0.08);
}

.service-content-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #08366f;
  margin: 0 0 24px 0;
}

.service-content-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #08366f;
  margin: 0 0 24px 0;
}

.service-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #08366f;
  margin: 40px 0 24px 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.capability-item {
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(8, 54, 111, 0.1);
}

.capability-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #ffffff;
}

.capability-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #08366f;
  margin: 0 0 12px 0;
}

.capability-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin: 0;
}

/* Service Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-info-card,
.sidebar-contact-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(8, 54, 111, 0.08);
}

.sidebar-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #08366f;
  margin: 0 0 24px 0;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(8, 54, 111, 0.1);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #08366f;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-label i {
  color: #28a745;
}

.info-value {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #08366f;
}

.sidebar-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin: 0 0 24px 0;
}

.sidebar-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #08366f;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-bottom: 12px;
  width: 100%;
}

.sidebar-button:last-child {
  margin-bottom: 0;
}

.sidebar-button:hover {
  transform: translateY(-2px);
  background-color: #0a4a8a;
  color: #ffffff;
}

/* Service Process Detail Section */
.service-process-detail-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.process-detail-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-detail-step {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.process-detail-step:last-child {
  margin-bottom: 0;
}

.process-detail-step::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 80px;
  bottom: -60px;
  width: 2px;
  background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.process-detail-step:last-child::after {
  display: none;
}

.process-detail-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  position: relative;
  z-index: 1;
}

.process-detail-content {
  flex: 1;
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-detail-step:hover .process-detail-content {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.1);
}

.process-detail-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #08366f;
  margin: 0 0 16px 0;
}

.process-detail-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #08366f;
  margin: 0 0 20px 0;
}

.process-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-detail-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #08366f;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.process-detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
  font-size: 18px;
}

/* Service Benefits Detail Section */
.service-benefits-detail-section {
  background-color: #f8f8f8;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.benefit-detail-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(8, 54, 111, 0.05);
}

.benefit-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.15);
}

.benefit-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: #08366f;
  transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-detail-card:hover .benefit-detail-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
}

.benefit-detail-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #08366f;
  margin: 0 0 16px 0;
}

.benefit-detail-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin: 0;
}

/* Related Services Section */
.related-services-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.related-service-card {
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.1);
  background-color: #ffffff;
}

.related-service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: #08366f;
  transition: transform 0.3s ease, background 0.3s ease;
}

.related-service-card:hover .related-service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
}

.related-service-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #08366f;
  margin: 0 0 16px 0;
}

.related-service-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin: 0 0 24px 0;
}

.related-service-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #08366f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.related-service-link:hover {
  color: #28a745;
  gap: 12px;
}

.related-service-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.related-service-link:hover i {
  transform: translateX(4px);
}

/* Responsive Styles for Service Details Page */
@media (max-width: 1024px) {

  .service-hero-section,
  .service-overview-section,
  .service-process-detail-section,
  .service-benefits-detail-section,
  .related-services-section {
    padding: 60px 20px;
  }

  .service-hero-title {
    font-size: 40px;
  }

  .service-content-title {
    font-size: 32px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .service-hero-section,
  .service-overview-section,
  .service-process-detail-section,
  .service-benefits-detail-section,
  .related-services-section {
    padding: 60px 20px;
  }

  .service-hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .service-hero-title {
    font-size: 32px;
  }

  .service-hero-description {
    font-size: 16px;
  }

  .service-hero-image {
    height: 300px;
  }

  .service-image-placeholder {
    font-size: 80px;
  }

  .service-content-wrapper {
    padding: 30px 24px;
  }

  .service-content-title {
    font-size: 28px;
  }

  .service-content-text {
    font-size: 16px;
  }

  .service-subtitle {
    font-size: 24px;
  }

  .capability-item {
    padding: 24px;
  }

  .process-detail-step {
    flex-direction: column;
    gap: 20px;
  }

  .process-detail-step::after {
    display: none;
  }

  .process-detail-content {
    padding: 30px 24px;
  }

  .benefit-detail-card {
    padding: 30px 24px;
    margin-bottom: 24px;
  }

  .related-service-card {
    padding: 30px 24px;
    margin-bottom: 24px;
  }
}

/* FAQ Page Styles */

/* FAQ Intro Section */
.faq-intro-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.faq-intro-content {
  padding-right: 40px;
}

.faq-search-wrapper {
  margin-top: 40px;
}

.faq-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 100px;
  padding: 16px 24px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-search-box:focus-within {
  border-color: #28a745;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
}

.faq-search-box i {
  color: #98a8bb;
  font-size: 18px;
  margin-right: 16px;
}

.faq-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #08366f;
  outline: none;
}

.faq-search-input::placeholder {
  color: #98a8bb;
}

.faq-intro-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.faq-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: #08366f;
  opacity: 0.6;
}

/* FAQ Categories Section */
.faq-categories-section {
  background-color: #f8f8f8;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(8, 54, 111, 0.1);
}

.faq-category-tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-tab-btn {
  background-color: #ffffff;
  color: #08366f;
  border: 2px solid #e0e0e0;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tab-btn:hover {
  border-color: #28a745;
  color: #28a745;
  transform: translateY(-2px);
}

.faq-tab-btn.active {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
  border-color: transparent;
}

/* FAQ Content Section */
.faq-content-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.faq-category-block {
  margin-bottom: 60px;
}

.faq-category-block:last-child {
  margin-bottom: 0;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.faq-category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
}

.faq-category-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #08366f;
  margin: 0;
}

.faq-item {
  background-color: #f8f8f8;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(8, 54, 111, 0.1);
}

.faq-item.highlight {
  border: 2px solid #28a745;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.faq-item.highlight mark {
  background-color: #ffeb3b;
  padding: 2px 4px;
  border-radius: 3px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #ffffff;
}

.faq-question[aria-expanded="true"] {
  background-color: #ffffff;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #28a745;
  min-width: 40px;
}

.faq-question-text {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #08366f;
  margin: 0;
}

.faq-chevron {
  color: #08366f;
  font-size: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 30px 24px 90px;
  background-color: #ffffff;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #08366f;
  margin: 0;
}

/* FAQ CTA Section */
.faq-cta-section {
  background-color: #f8f8f8;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.faq-cta-card {
  background: linear-gradient(135deg, #08366f 0%, #0a4a8a 100%);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 12px 40px rgba(8, 54, 111, 0.2);
}

.faq-cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.faq-cta-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #98a8bb;
  margin: 0;
}

/* Responsive Styles for FAQ Page */
@media (max-width: 1024px) {

  .faq-intro-section,
  .faq-content-section,
  .faq-cta-section {
    padding: 60px 20px;
  }

  .faq-category-title {
    font-size: 28px;
  }

  .faq-cta-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {

  .faq-intro-section,
  .faq-content-section,
  .faq-cta-section {
    padding: 60px 20px;
  }

  .faq-intro-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .faq-intro-image {
    height: 300px;
  }

  .faq-image-placeholder {
    font-size: 80px;
  }

  .faq-category-tabs {
    gap: 12px;
  }

  .faq-tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .faq-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .faq-category-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .faq-category-title {
    font-size: 24px;
  }

  .faq-question {
    padding: 20px 24px;
    gap: 16px;
  }

  .faq-number {
    font-size: 18px;
    min-width: 35px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 24px 20px 70px;
  }

  .faq-cta-card {
    padding: 40px 30px;
  }

  .faq-cta-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .faq-cta-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* Contact Page Styles */

/* Contact Intro Section */
.contact-intro-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-intro-content {
  padding-right: 40px;
}

.contact-intro-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.contact-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: #08366f;
  opacity: 0.6;
}

/* Contact Info Section */
.contact-info-section {
  background-color: #f8f8f8;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-info-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(8, 54, 111, 0.05);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.15);
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: #ffffff;
}

.contact-info-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #08366f;
  margin: 0 0 12px 0;
}

.contact-info-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #98a8bb;
  margin: 0 0 16px 0;
}

.contact-info-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #08366f;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: #28a745;
}

.contact-info-hours {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #98a8bb;
  margin: 0;
}

.contact-info-address {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #08366f;
}

.contact-info-address p {
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-form-wrapper {
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(8, 54, 111, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #08366f;
  margin-bottom: 8px;
  display: block;
}

.form-label .required {
  color: #dc3545;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #08366f;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control.error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.form-control::placeholder {
  color: #98a8bb;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.contact-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.contact-submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
  transform: translateX(4px);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.office-hours {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(8, 54, 111, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #08366f;
}

.hours-time {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #08366f;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 12px;
}

.quick-links li:last-child {
  margin-bottom: 0;
}

.quick-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #08366f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.quick-links a:hover {
  color: #28a745;
  gap: 16px;
}

.quick-links a i {
  font-size: 14px;
  color: #28a745;
  transition: transform 0.3s ease;
}

.quick-links a:hover i {
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #08366f 0%, #0a4a8a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.1);
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
}

/* Contact Map Section */
.contact-map-section {
  background-color: #f8f8f8;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.map-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c3d9e7 0%, #dee5f1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #08366f;
  opacity: 0.6;
  text-align: center;
  padding: 40px;
}

.map-placeholder p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #08366f;
  margin: 24px 0;
}

.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #08366f;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-top: 16px;
}

.map-link-btn:hover {
  transform: translateY(-2px);
  background-color: #0a4a8a;
  color: #ffffff;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {

  .contact-intro-section,
  .contact-info-section,
  .contact-form-section,
  .contact-map-section {
    padding: 60px 20px;
  }

  .contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {

  .contact-intro-section,
  .contact-info-section,
  .contact-form-section,
  .contact-map-section {
    padding: 60px 20px;
  }

  .contact-intro-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-intro-image {
    height: 300px;
  }

  .contact-image-placeholder {
    font-size: 80px;
  }

  .contact-info-card {
    padding: 30px 24px;
    margin-bottom: 24px;
  }

  .contact-info-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .contact-form-wrapper {
    padding: 30px 24px;
  }

  .contact-sidebar {
    margin-top: 40px;
  }

  .map-wrapper {
    height: 400px;
  }

  .map-placeholder {
    font-size: 60px;
    padding: 30px 20px;
  }

  .map-placeholder p {
    font-size: 16px;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   Product Pages & Facilities Styles
   ======================================== */

/* Products Hero */
.products-hero-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.products-hero-section .hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #08366f;
  margin-bottom: 30px;
}

.products-hero-section .hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: #08366f;
  max-width: 900px;
}

/* Product Cards on Main Products Page */
.product-card-header {
  margin-bottom: 20px;
}

.product-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-icon {
  font-size: 32px;
  color: #08366f;
}

.product-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #08366f;
  margin-bottom: 15px;
}

.product-card-description {
  font-size: 16px;
  line-height: 1.5;
  color: #08366f;
  margin-bottom: 15px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  font-size: 13px;
  color: #08366f;
  font-weight: 500;
}

.feature-tag i {
  font-size: 12px;
  color: #28a745;
}

/* Products CTA Section */
.products-cta-section {
  background: linear-gradient(135deg, #08366f 0%, #28a745 100%);
  padding: 80px 20px;
  text-align: center;
}

.products-cta-section .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.products-cta-section .cta-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.products-cta-section .cta-description {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
  opacity: 0.95;
}

.products-cta-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: #ffffff;
  color: #08366f;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-cta-section .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #08366f;
}

/* Product Detail Pages */
.product-detail-hero {
  background-color: #ffffff;
  padding: 100px 50px;
}

.breadcrumb-nav {
  font-size: 14px;
  color: #98a8bb;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb-nav a {
  color: #08366f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #28a745;
}

.breadcrumb-nav .separator {
  color: #98a8bb;
  margin: 0 4px;
}

.breadcrumb-nav .current {
  color: #98a8bb;
}

.product-detail-title {
  font-size: 56px;
  font-weight: 700;
  color: #08366f;
  margin-bottom: 15px;
}

.product-detail-subtitle {
  font-size: 24px;
  color: #98a8bb;
  font-weight: 400;
}

/* Product Overview Section */
.product-overview-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.product-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.product-icon-large {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #08366f 0%, #28a745 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon-large i {
  font-size: 100px;
  color: #ffffff;
}

.section-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: #08366f;
  margin-bottom: 20px;
}

.overview-text {
  font-size: 18px;
  line-height: 1.7;
  color: #08366f;
  margin-bottom: 20px;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background-color: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(8, 54, 111, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #08366f 0%, #28a745 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 36px;
  color: #ffffff;
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: #08366f;
  margin-bottom: 12px;
}

.benefit-description {
  font-size: 15px;
  line-height: 1.5;
  color: #98a8bb;
}

/* Applications Section */
.applications-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.application-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.application-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(8, 54, 111, 0.12);
}

.application-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.application-icon {
  font-size: 32px;
  color: #08366f;
}

.application-title {
  font-size: 22px;
  font-weight: 600;
  color: #08366f;
  margin: 0;
}

.application-description {
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin-bottom: 20px;
}

.application-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.application-features li {
  font-size: 15px;
  color: #08366f;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.application-features i {
  color: #28a745;
  font-size: 14px;
}

/* Product Range Table */
.product-range-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.product-table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(8, 54, 111, 0.08);
}

.product-table thead {
  background-color: #08366f;
}

.product-table thead th {
  padding: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.product-table tbody td {
  padding: 18px 20px;
  font-size: 15px;
  color: #08366f;
  border-bottom: 1px solid #e0e0e0;
}

.product-table tbody tr:last-child td {
  border-bottom: none;
}

.product-table tbody tr:hover {
  background-color: #f8f9fa;
}

/* Technical Specs Section */
.tech-specs-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.spec-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #08366f;
  height: 100%;
}

.spec-title {
  font-size: 16px;
  font-weight: 600;
  color: #98a8bb;
  margin-bottom: 8px;
}

.spec-value {
  font-size: 24px;
  font-weight: 700;
  color: #08366f;
  margin-bottom: 5px;
}

.spec-description {
  font-size: 14px;
  color: #98a8bb;
}

/* Product CTA Section */
.product-cta-section {
  background: linear-gradient(135deg, #08366f 0%, #28a745 100%);
  padding: 80px 20px;
}

.product-cta-section .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.product-cta-section .cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.product-cta-section .cta-description {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 35px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background-color: #ffffff;
  color: #08366f;
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #08366f;
}

.cta-button.secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
  background-color: #ffffff;
  color: #08366f;
  transform: translateY(-3px);
}

/* Facilities Page Styles */
.facilities-hero-section {
  background-color: #ffffff;
  padding: 100px 50px;
  text-align: center;
}

.facilities-hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #08366f;
  margin-bottom: 25px;
}

.facilities-hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: #08366f;
  max-width: 900px;
  margin: 0 auto;
}

/* Facilities Stats */
.facilities-stats-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.stat-card {
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(8, 54, 111, 0.15);
}

.stat-icon {
  font-size: 48px;
  color: #08366f;
  margin-bottom: 15px;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #08366f;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #98a8bb;
}

/* Division Sections */
.division-section {
  padding: 80px 20px;
}

.biotech-division {
  background-color: #ffffff;
}

.chemical-division {
  background-color: #f8f9fa;
}

.division-header {
  text-align: center;
  margin-bottom: 60px;
}

.division-title {
  font-size: 48px;
  font-weight: 700;
  color: #08366f;
  margin-bottom: 15px;
}

.division-subtitle {
  font-size: 20px;
  color: #98a8bb;
}

/* Facility Feature Cards */
.facility-feature-card {
  background-color: #ffffff;
  padding: 35px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(8, 54, 111, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chemical-division .facility-feature-card {
  background-color: #ffffff;
}

.facility-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(8, 54, 111, 0.15);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #08366f 0%, #28a745 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 32px;
  color: #ffffff;
}

.feature-title {
  font-size: 24px;
  font-weight: 600;
  color: #08366f;
  margin-bottom: 15px;
}

.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #08366f;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 15px;
  color: #08366f;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list i {
  color: #28a745;
  font-size: 14px;
}

/* Certifications Box */
.certifications-box {
  background: linear-gradient(135deg, #08366f 0%, #28a745 100%);
  padding: 40px;
  border-radius: 16px;
  margin-top: 40px;
}

.certifications-title {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.certification-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.certification-item i {
  font-size: 24px;
}

/* EHS Section */
.ehs-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.ehs-section .section-description {
  margin: 0 auto 50px;
}

.ehs-card {
  background-color: #f8f9fa;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ehs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(8, 54, 111, 0.1);
}

.ehs-icon {
  width: 80px;
  height: 80px;
  background-color: #08366f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ehs-icon i {
  font-size: 36px;
  color: #ffffff;
}

.ehs-title {
  font-size: 22px;
  font-weight: 600;
  color: #08366f;
  margin-bottom: 12px;
}

.ehs-description {
  font-size: 15px;
  line-height: 1.6;
  color: #08366f;
}

/* Facilities CTA */
.facilities-cta-section {
  background: linear-gradient(135deg, #08366f 0%, #28a745 100%);
  padding: 80px 20px;
  text-align: center;
}

.facilities-cta-section .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.facilities-cta-section .cta-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.facilities-cta-section .cta-description {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .product-detail-title {
    font-size: 36px;
  }

  .facilities-hero-title,
  .products-hero-section .hero-title {
    font-size: 42px;
  }

  .division-title {
    font-size: 36px;
  }

  .product-cta-section .cta-title,
  .facilities-cta-section .cta-title {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .product-icon-large {
    width: 150px;
    height: 150px;
  }

  .product-icon-large i {
    font-size: 70px;
  }
}

/* Product Link Wrapper on Index */
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Section Description for Products */
.products-section .section-description {
  max-width: 1000px;
  margin: 0 auto 40px;
}

/* View All Products Button */
.btn-view-all-products {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #08366f 0%, #28a745 100%);
  color: #ffffff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(8, 54, 111, 0.2);
}

.btn-view-all-products:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(8, 54, 111, 0.3);
  color: #ffffff;
}

.btn-view-all-products i {
  transition: transform 0.3s ease;
}

.btn-view-all-products:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .btn-view-all-products {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* Facilities Stats - Dark text on light background */
.facilities-stats-section .stat-number {
  color: #08366f;
}

.facilities-stats-section .stat-value {
  color: #08366f;
}

/* About Page - Stat number hover color change to green */
.statistics-section .stat-card:hover .stat-number {
  color: #28a745;
  transition: color 0.3s ease;
}

/* Leadership Section Styles */
.leadership-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  padding: 100px 20px;
  position: relative;
}

.leadership-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.leadership-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #28a745;
  margin-bottom: 20px;
}

.leadership-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #08366f;
  margin: 0 0 12px 0;
}

.leadership-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #6c757d;
  margin: 0 0 32px 0;
}

.leadership-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #495057;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .leadership-section {
    padding: 60px 20px;
  }

  .leadership-name {
    font-size: 32px;
  }

  .leadership-title {
    font-size: 18px;
  }

  .leadership-description {
    font-size: 16px;
  }
}

/* Additional utility classes for inline style replacements */
.section-description-spacing {
  margin-top: 20px;
}

.product-status-label {
  font-size: 14px;
  font-weight: 400;
  color: #6c757d;
}

/* Flagship Projects Section Styles */
.flagship-project-card {
  border-bottom: 1px solid #08366f;
}

.flagship-project-content {
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 0;
}

.flagship-project-title {
  max-width: 100%;
  margin-bottom: 20px;
}

.flagship-project-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #08366f;
  margin-bottom: 20px;
}

.flagship-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.flagship-project-tag {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.flagship-project-funding {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #98a8bb;
  margin: 0;
}

@media (max-width: 768px) {
  .flagship-project-content {
    padding: 30px 0;
  }

  .flagship-project-description {
    font-size: 16px;
  }

  .flagship-project-tags {
    gap: 10px;
  }

  .flagship-project-tag {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* Sticky Header Styles - Fixed header for all pages */
.site-header.sticky-header {
  position: fixed;
  background: transparent;
  /* box-shadow: 0 2px 10px rgba(8, 54, 111, 0.08); */
}

/* Transparent header for index page hero section (when at top) */
body.index-page .site-header.sticky-header:not(.scrolled) {
  background: transparent;
  box-shadow: none;
}

.site-header.sticky-header.scrolled {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Hero CTA Styles */
.hero-cta-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (min-width: 1200px) {
  .hero-cta-wrapper {
    padding-left: 40%;
    /* Align with description wrapper positioning */
  }
}

/* Primary button uses existing gradient style from .btn-view-all-products */
/* Secondary button - outlined style matching design */
.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #08366f !important;
  border: 2px solid #08366f !important;
  box-shadow: 0 4px 15px rgba(8, 54, 111, 0.15) !important;
}

.hero-cta-secondary:hover {
  background: #08366f !important;
  color: #ffffff !important;
  border-color: #08366f !important;
  box-shadow: 0 8px 25px rgba(8, 54, 111, 0.3) !important;
}

.hero-cta-secondary span,
.hero-cta-secondary i {
  color: inherit;
}

/* Add padding to body when header is sticky */
body.header-sticky {
  padding-top: 80px;
}

@media (max-width: 768px) {
  .hero-cta-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  body.header-sticky {
    padding-top: 70px;
  }
}

/* Enhanced Why Choose Us Section Design */
.why-choose-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #08366f 0%, #28a745 100%);
}

.why-choose-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(8, 54, 111, 0.08);
  text-align: center;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(8, 54, 111, 0.15);
  border-color: #28a745;
}

.why-choose-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.why-choose-card-1 .why-choose-icon {
  background: linear-gradient(135deg, #08366f 0%, #0a4a8a 100%);
}

.why-choose-card-2 .why-choose-icon {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.why-choose-card-3 .why-choose-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.why-choose-card-4 .why-choose-icon {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.icon-bg-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  transition: all 0.4s ease;
}

.why-choose-card-1 .icon-bg-pattern {
  background: #08366f;
}

.why-choose-card-2 .icon-bg-pattern {
  background: #28a745;
}

.why-choose-card-3 .icon-bg-pattern {
  background: #ff6b6b;
}

.why-choose-card-4 .icon-bg-pattern {
  background: #4ecdc4;
}

.why-choose-card:hover .icon-bg-pattern {
  width: 120px;
  height: 120px;
  opacity: 0.15;
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-choose-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #08366f;
  margin: 0 0 15px 0;
  transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-title {
  color: #28a745;
}

.why-choose-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #6c757d;
  margin: 0;
  transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-text {
  color: #495057;
}

.card-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #08366f 0%, #28a745 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-choose-card:hover .card-hover-effect {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 20px;
  }

  .why-choose-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .why-choose-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .why-choose-title {
    font-size: 20px;
  }

  .why-choose-text {
    font-size: 15px;
  }
}

/* Flagship Projects Section */
#flagship-projects .service-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

#flagship-projects .service-card:hover {
  box-shadow: 0 8px 30px rgba(8, 54, 111, 0.15);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  #flagship-projects .service-card {
    padding: 30px 20px;
  }
}