
/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, sans-serif;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --nav-font: "Plus Jakarta Sans", sans-serif;
  --serif-font: "DM Serif Display", serif;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #555555;
  --heading-color: #0d2a4a; /* Dark Navy */
  --accent-color: #2c7d42;  /* Muted Gold */
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #555555;
  --nav-hover-color: #c4a45a;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #555555;
  --nav-dropdown-hover-color: #c4a45a;
}

/* ... (rest of CSS with color replacements) ... */

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(196, 164, 90, 0.08);
  color: #c4a45a;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ... Contact Info ... */
.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(196, 164, 90, 0.1);
  color: #c4a45a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(196, 164, 90, 0.1);
}

.info-card:hover .info-icon {
  background: var(--accent-color);
  color: #fff;
}

.modern-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #0d2a4a, #0e360e);
  color: #fff;
  border: none;
  padding: 16px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(13, 42, 74, 0.3);
  margin-top: 10px;
}

.modern-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 42, 74, 0.4);
  filter: brightness(1.1);
}

/* Form Select custom arrow - update color to gold */
.form-floating > .form-select.modern-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4a45a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='12' cy='12' r='10'/%3e%3cpolyline points='8 10 12 14 16 10'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.25rem center !important;
  background-size: 24px 24px !important;
  padding-right: 3.5rem !important;
}

.modern-input:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 4px rgba(196, 164, 90, 0.1) !important;
  background: #fff !important;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #091e5b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0e2d89;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}



a:hover {
  color: color-mix(in srgb, #0d82d7, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.modern-heading {
  color: var(--heading-color) !important;
}

.modern-heading span {
  color: var(--accent-color) !important;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message,
.n8n-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message,
.n8n-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading,
.n8n-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before,
.n8n-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  0% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/


.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: linear-gradient(135deg, #0d2a4a, #c4a45a);
  color: #ffffff;
}

.footer .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background:  var(--heading-color);
  color: #fff;
}

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

.back-to-top img {
  display: none; /* Removed WhatsApp icon */
}
  


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 118px;
  overflow: visible;
}


@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}


.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h1,
.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 50px;
  font-weight: 700;
  position: relative;
  color: #ffffff;
}

.hero .info h1 span,
.hero .info h2 span {
  color: var(--accent-color);
  text-decoration: underline;
}

.hero .info h1:after,
.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h1,
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: #ffffff;
  opacity: 0.9;
  font-size: 18px;
}

.hero .info h4 {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 25px !important;
  opacity: 0.9;
  font-size: 1.5rem;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.benefit-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  text-align: left;
}

.benefit-bullet i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.hero .info .btn-get-started {
  color: #000000;
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin: 10px;
  border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
  background: transparent;
  color: var(--accent-color);
}

.hero .info .btn-get-started.secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.hero .info .btn-get-started.secondary:hover {
  background: #ffffff;
  color: #091e5b;
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/*--------------------------------------------------------------
# Call Us Popup
--------------------------------------------------------------*/
.call-popup {
  position: fixed;
  top: 120px !important; /* Positioned below nav */
  right: -400px;
  width: 320px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  padding: 20px;
  z-index: 10001;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  border-left: 5px solid #0563bb;
}

.call-popup.active {
  right: 20px;
}

.call-popup .icon {
  width: 50px;
  height: 50px;
  background: rgba(5, 99, 187, 0.1);
  color: #0563bb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px;
  animation: pulse-blue 2s infinite;
}

.call-popup .content h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #272829;
}

.call-popup .content p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: #45505b;
}

.call-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #aaa;
  font-size: 18px;
}

.call-popup .close-btn:hover {
  color: #0563bb;
}

@keyframes pulse-blue {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 99, 187, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(5, 99, 187, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 99, 187, 0); }
}

/*--------------------------------------------------------------
# EPD Journey Timeline
--------------------------------------------------------------*/
.section_timeline {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--background-color);
}

.circle-timeline {
  z-index: 2;
  border-radius: 50%;
  background-color: #cbd5e1; /* Neutral gray */
  justify-content: center;
  align-items: center;
  width: .9375rem;
  height: .9375rem;
  margin-top: 3rem;
  transition: all 0.4s ease;
}

.timeline {
  max-width: 912px;
  margin-left: auto;
  margin-right: auto;
}

.wrap_circle-timeline {
  z-index: 1;
  justify-content: center;
  width: 2rem;
  display: flex;
  position: relative;
}

.timeline_fade-top {
  z-index: 1;
  background-image: linear-gradient(180deg, var(--background-color), transparent);
  width: 4px;
  height: 4rem;
  position: absolute;
}

.timeline_empty {
  width: 100%;
}

.timeline_row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.title_timeline-card {
  padding-bottom: 10px;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.timeline_fade-bottom {
  z-index: 1;
  background-image: linear-gradient(180deg, transparent, var(--background-color));
  width: 4px;
  height: 4rem;
  position: absolute;
  bottom: 0%;
}

.timeline_progress-line {
  z-index: 0;
  background-color: var(--accent-color);
  width: 3px;
  height: 0%;
  position: absolute;
  top: 0;
  transition: height 0.1s ease-out;
}

.content_timeline {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
  position: relative;
}

.timeline-line {
  background-color: rgba(0,0,0,0.1);
  width: 3px;
  height: 100%;
}

.timeline_progress {
  z-index: 0;
  flex-direction: column;
  align-items: center;
  width: 2rem;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: clip;
}

.item_timeline {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 12rem 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  overflow: hidden;
}

.timeline_list {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.headline_timeline {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: center;
  margin-left: auto;
}

.label-large {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Modern Redesigned Vertical Timeline
--------------------------------------------------------------*/
.modern-timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 40px 0;
}

.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e2e8f0;
  transform: translateX(-50%);
}

.track-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  box-shadow: 0 0 15px var(--accent-color);
  transition: height 0.1s linear;
}

.timeline-items {
  position: relative;
  z-index: 1;
}

.timeline-item-modern {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 80px;
  width: 100%;
}

.timeline-item-modern.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 4px solid #e2e8f0;
  border-radius: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #64748b;
  z-index: 2;
  transition: all 0.4s ease;
}

.timeline-item-modern.active .timeline-dot {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 20px rgba(5, 99, 187, 0.4);
}

.timeline-content-box {
  width: 85%;
  background: #fff;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  transition: all 0.4s ease;
}

.timeline-item-modern.left .timeline-content-box {
  margin-right: 40px;
}

.timeline-item-modern.right .timeline-content-box {
  margin-left: 40px;
}

.timeline-item-modern.active .timeline-content-box {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(5, 99, 187, 0.1);
}

.step-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.timeline-content-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e293b;
}

.timeline-content-box p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.step-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 32px;
  color: rgba(5, 99, 187, 0.05);
  transition: all 0.4s ease;
}

.timeline-item-modern.active .step-icon {
  color: rgba(5, 99, 187, 0.1);
  transform: scale(1.2) rotate(-5deg);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .timeline-track {
    left: 30px;
    transform: none;
  }
  .timeline-dot {
    left: 30px;
    transform: none;
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .timeline-item-modern {
    padding-right: 0;
    padding-left: 70px;
    justify-content: flex-start;
    margin-bottom: 50px;
  }
  .timeline-item-modern.right {
    padding-left: 70px;
  }
  .timeline-item-modern.left .timeline-content-box,
  .timeline-item-modern.right .timeline-content-box {
    margin: 0;
    width: 100%;
    padding: 25px;
  }
  .step-icon {
    font-size: 24px;
    top: 20px;
    right: 20px;
  }
}

.tone-medium {
  color: var(--default-color);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .timeline_row {
    grid-template-columns: max-content 1fr;
  }
  .timeline_empty {
    display: none;
  }
  .timeline_row:nth-child(even) {
     direction: ltr;
  }
  .timeline_row .item_timeline {
    order: 2;
  }
  .timeline_row .wrap_circle-timeline {
    order: 1;
  }
}

.hero-card {
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--accent-color) !important;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  border-radius: 50px;
  padding: 12px 30px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff !important;
}

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

@media (max-width: 991px) {
  #hero {
    text-align: center;
    padding-top: 140px;
  }
  
  .btn-outline-white {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Modern Blog Section
--------------------------------------------------------------*/
.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(5, 99, 187, 0.1);
  color: #0563bb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.modern-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.modern-heading span {
  background: linear-gradient(120deg, #0563bb, #289CCE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.modern-blog {
  padding: 80px 0;
  background: #ffffff;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(5, 99, 187, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}

.blog-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  color: #0563bb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  color: #289CCE;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.blog-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #272829;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-content h4 {
  color: #0563bb;
}

.blog-content p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  align-self: flex-start;
  font-weight: 600;
  color: #0563bb;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.blog-read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more {
  color: #289CCE;
}

.blog-card:hover .blog-read-more i {
  transform: translateX(5px);
}

.modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0563bb, #289CCE);
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(5, 99, 187, 0.3);
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(5, 99, 187, 0.4);
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f7f8f9;
  color: #45505b;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer .logo img {
  max-height: 100px;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 15px;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 10px 0 10px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0563bb;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #0678e3;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

/*--------------------------------------------------------------
# Call Us Popup
--------------------------------------------------------------*/
.call-popup {
  position: fixed;
  top: 120px !important; /* Positioned below nav */
  right: -400px;
  width: 320px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  padding: 20px;
  z-index: 10001;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  border-left: 5px solid #0563bb;
}

.call-popup.active {
  right: 20px;
}

.call-popup .icon {
  width: 50px;
  height: 50px;
  background: rgba(5, 99, 187, 0.1);
  color: #0563bb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px;
  animation: pulse-blue 2s infinite;
}

.call-popup .content h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #272829;
}

.call-popup .content p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: #45505b;
}

.call-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #aaa;
  font-size: 18px;
}

.call-popup .close-btn:hover {
  color: #0563bb;
}

@keyframes pulse-blue {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 99, 187, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(5, 99, 187, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 99, 187, 0); }
}

/* Geo Coverage Redesign */
.geo-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(5, 99, 187, 0.05);
}

.geo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(5, 99, 187, 0.1);
  border-color: #0563bb;
}

.geo-icon {
  width: 60px;
  height: 60px;
  background: rgba(5, 99, 187, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #0563bb;
  transition: all 0.3s ease;
}

.geo-card:hover .geo-icon {
  background: #0563bb;
  color: #fff;
}

.geo-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #272829;
}

.geo-card p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

.modern-link {
  color: #0563bb;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.modern-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.modern-link:hover {
  color: #289CCE;
}

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

.geo-footer {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/*--------------------------------------------------------------
# Professional Typography Refinements
--------------------------------------------------------------*/
body {
  line-height: 1.7;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
}

.modern-heading,
.modern-heading span {
  font-family: var(--heading-font);
  letter-spacing: -0.04em !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #185f49, #289cce) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #1a9d82; /* Fallback */
}

/* Serif Accents for Sophistication */
.section-badge, 
.info-content h3,
.geo-card h4 {
  font-family: var(--heading-font);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a9d82;
}

.lead-text {
  font-family: var(--default-font);
  font-weight: 400;
  color: #555;
  opacity: 0.9;
}

/* Editorial Style for specific callouts - REMOVED SERIFS */
.hero h1, 
.hero h4,
.about h3 {
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.04em !important;
  font-style: normal !important;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #50d8af, #1a9d82);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #272829;
  margin-bottom: 30px;
}

.hero p {
  color: #555 !important;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Modern UI Components
--------------------------------------------------------------*/
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(5, 99, 187, 0.08);
  color: #0563bb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lead-text {
  font-size: 18px;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Modern Contact Section Styles
--------------------------------------------------------------*/
.contact {
  background: #f8fcfd;
  padding: 100px 0;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(5, 99, 187, 0.05);
}

.info-card:hover {
  transform: translateX(10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(5, 99, 187, 0.1);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(196, 164, 90, 0.1);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: var(--accent-color);
  color: #fff;
}

.info-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #272829;
}

.info-content p {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
}

.verification-tag {
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: inline-block;
  font-size: 13px;
  color: #444;
  border: 1px solid rgba(196, 164, 90, 0.1);
}

.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.modern-input {
  border: 2px solid #f0f0f0 !important;
  border-radius: 12px !important;
  padding: 1.2rem 1.25rem !important;
  font-size: 15px !important;
  color: #272829 !important;
  background: #fcfcfc !important;
  transition: all 0.3s ease !important;
  height: calc(3.5rem + 10px) !important;
}

.form-floating > textarea.modern-input {
  height: 150px !important;
}

.modern-input:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 4px rgba(196, 164, 90, 0.1) !important;
  background: #fff !important;
}

.form-floating > label {
  padding: 1.2rem 1.25rem !important;
  color: #888 !important;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out !important;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem) !important;
}

.form-floating > .form-select.modern-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4a45a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='12' cy='12' r='10'/%3e%3cpolyline points='8 10 12 14 16 10'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.25rem center !important;
  background-size: 24px 24px !important;
  padding-right: 3.5rem !important;
}

.modern-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #0d2a4a, #5ac46c);
  color: #fff;
  border: none;
  padding: 16px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(13, 42, 74, 0.3);
  margin-top: 10px;
}

.modern-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 42, 74, 0.4);
  filter: brightness(1.1);
}

.form-status-container {
  margin-bottom: 20px;
}

.form-status-container .loading,
.form-status-container .error-message,
.form-status-container .sent-message {
  display: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-status-container .loading {
  background: rgba(13, 42, 74, 0.05);
  color: #0d2a4a;
}

.form-status-container .sent-message {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.form-status-container .error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

/*--------------------------------------------------------------
# Redesigned Service Overview/Definition Sections
--------------------------------------------------------------*/
.about .row.align-items-center {
  padding: 50px 0;
}

.image-stack {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 85%;
  background: var(--accent-color);
  opacity: 0.1;
  border-radius: 50px;
  z-index: 1;
  transform: translate(15%, 15%);
}

.image-stack img {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(9, 30, 91, 0.25);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  height: auto;
}

.image-stack:hover img {
  transform: translateY(-15px);
  box-shadow: 0 35px 60px -15px rgba(9, 30, 91, 0.3);
}

.about .content {
  padding: 20px;
}

.about .content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
  text-align: justify;
}

.about .content strong {
  color: var(--accent-color);
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .content {
    padding: 20px 0;
    text-align: center;
  }
  
  .about .content p {
    text-align: center;
  }
  
  .image-stack::before {
    display: none;
  }
  
  .image-stack {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Modern Trust Grid Redesign
--------------------------------------------------------------*/
.trust-indicators {
  background-image: radial-gradient(circle at 0% 0%, rgba(183, 154, 82, 0.05) 0%, transparent 40%),
                    radial-gradient(circle at 100% 100%, rgba(9, 30, 91, 0.03) 0%, transparent 40%);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.trust-indicators::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 154, 82, 0.2), transparent);
}

.trust-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  margin-top: 50px;
}

.trust-item-modern {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 45px 35px;
  border-radius: 40px;
  border: 1px solid rgba(183, 154, 82, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.trust-item-modern:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 40px 80px rgba(9, 30, 91, 0.08);
  border-color: var(--accent-color);
  background: #ffffff;
}

.trust-item-modern .icon-wrapper {
  width: 70px;
  height: 70px;
  background: #f8fafc;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.5s ease;
  border: 1px solid rgba(183, 154, 82, 0.05);
}

.trust-item-modern:hover .icon-wrapper {
  background: var(--accent-color);
  transform: rotate(-5deg);
}

.trust-item-modern .icon-wrapper i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.trust-item-modern:hover .icon-wrapper i {
  color: #000000;
  transform: scale(1.1);
}

.trust-item-modern h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.trust-item-modern p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 0;
}

.trust-item-modern .badge-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent-color);
  opacity: 0.05;
  line-height: 1;
  transition: all 0.5s ease;
}

.trust-item-modern:hover .badge-number {
  opacity: 0.12;
  transform: scale(1.2) rotate(5deg);
}

@media (max-width: 1200px) {
  .trust-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-grid-modern {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  .trust-indicators {
    padding: 70px 0;
  }
}


/*--------------------------------------------------------------
# Compact & Compressed Variants for Modern Sections
--------------------------------------------------------------*/

/* Compact Trust Grid */
.trust-indicators.compact {
  padding: 60px 0;
}

.trust-indicators.compact .trust-grid-modern {
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-indicators.compact .trust-item-modern {
  padding: 30px 20px;
  min-height: auto;
}

.trust-indicators.compact .trust-item-modern .icon-wrapper {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.trust-indicators.compact .trust-item-modern .icon-wrapper i {
  font-size: 24px;
}

.trust-indicators.compact .trust-item-modern h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.trust-indicators.compact .trust-item-modern p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.trust-indicators.compact .trust-item-modern .badge-number {
  font-size: 2.5rem;
  top: 15px;
  right: 15px;
}

@media (max-width: 1200px) {
  .trust-indicators.compact .trust-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-indicators.compact .trust-grid-modern {
    grid-template-columns: 1fr;
  }
}

/* Compressed Modern Timeline */
.modern-timeline-wrapper.compressed {
  margin-top: 40px;
  padding: 20px 0;
}

.modern-timeline-wrapper.compressed .timeline-item-modern {
  margin-bottom: 40px;
}

.modern-timeline-wrapper.compressed .timeline-content-box {
  padding: 20px 25px;
  border-radius: 16px;
}

.modern-timeline-wrapper.compressed .timeline-content-box h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.modern-timeline-wrapper.compressed .timeline-content-box p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.modern-timeline-wrapper.compressed .step-label {
  font-size: 10px;
  margin-bottom: 8px;
}

.modern-timeline-wrapper.compressed .timeline-dot {
  width: 36px;
  height: 36px;
  font-size: 16px;
  top: 20px;
  border-width: 3px;
}

.modern-timeline-wrapper.compressed .step-icon {
  font-size: 24px;
  top: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .modern-timeline-wrapper.compressed .timeline-dot {
    left: 20px;
  }
  .modern-timeline-wrapper.compressed .timeline-track {
    left: 20px;
  }
  .modern-timeline-wrapper.compressed .timeline-item-modern {
    padding-left: 55px;
  }
  .modern-timeline-wrapper.compressed .timeline-item-modern.right {
    padding-left: 55px;
  }
}

