@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Spacing Scale */
:root {
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --container-max: 1200px;
  --container-padding: 2rem;
}

:root {
  /* Base size */
  --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  
  /* Scale for different text sizes */
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-size-md: var(--font-size-base);
  --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.875rem);
  --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
  --font-size-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 3rem);
  --font-size-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3.75rem);
}

body {
  font-size: var(--font-size-base) !important;
  line-height: 1.6 !important;
}

h1 { font-size: var(--font-size-2xl) !important; }
h2 { font-size: var(--font-size-2xl) !important; }
h3 { font-size: var(--font-size-lg) !important; }
h4 { font-size: var(--font-size-xl) !important; }
h5 { font-size: var(--font-size-sm) !important; }/* sub headers*/
h6 { font-size: var(--font-size-4xl) !important; } /* main page title header*/

small { font-size: var(--font-size-sm) !important; }


/* font scaling for desktop */
@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
}

/* Green Gradients - less saturated */
.gradient-before-green {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #e5f8ee 100%);
  height: 50px;
  width: 100%;
}
.gradient-wrapper-green {
  background: linear-gradient(180deg, #e5f8ee 0%, #f2fbf7 40%, #ffffff 100%);
}

/* Blue Gradients  */
.gradient-before-blue {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #e3f0fb 100%);
  height: 50px;
  width: 100%;
}
.gradient-wrapper-blue {
  background: linear-gradient(180deg, #e3f0fb 0%, #f2f8fd 40%, #ffffff 100%);
}

/* Grey Gradients */
.gradient-before-grey {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #e8e8e8 100%);
  height: 50px;
  width: 100%;
}
.gradient-wrapper-grey {
  background: linear-gradient(180deg, #e8e8e8 0%, #f4f4f4 40%, #ffffff 100%);
}

.page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
  transition: padding 0.3s ease;
}

@media (max-width: 1024px) {
  .page-container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .page-container {
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .page-container {
    padding: 0 20px;
  }
	  .why-partner-section {
    padding: 1.5rem 0.5rem;
  }
}

/* Header Styles - White background for For B pages when not scrolled */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  padding: 20px 100px;
  height: 110px;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: transparent;
  padding: 15px 30px;
  height: auto;
}

.header.scrolled .header-container {
  padding: 8px 30px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid #ffffff;
  background-color: #ffffffb5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.header-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
  height: 60px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo img {
  height: 40px;
}

.left-section {
  display: flex;
  gap: 60px;
  align-items: center;
  flex: 1;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  position: relative;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: #006995;
}

.header.scrolled .nav-link {
  color: #006995;
  font-size: 0.9rem;
}

.nav-link:hover {
  color: #0093d1;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #006995;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.contact-btn {
  background: linear-gradient(135deg, #006995 0%, #0093d1 100%);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.5s ease-out;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 105, 149, 0.25);
  white-space: nowrap;
  min-width: fit-content;
	text-transform: uppercase;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #005580 0%, #0077a8 100%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  z-index: -1;
}

.header.scrolled .contact-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
	text-transform: uppercase;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 105, 149, 0.3);
}

.contact-btn:hover::before {
  opacity: 1;
}

.contact-btn:active {
  transform: translateY(-1px);
  transition: all 0.1s ease;
}

/* Active page link - desktop only */
@media (min-width: 1101px) {
  .nav-link.active {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .header.scrolled .nav-link.active {
    font-size: 1rem;
  }

  .nav-link.active::after {
    width: 100%;
  }

  .nav-link:hover {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .header.scrolled .nav-link:hover {
    font-size: 1rem;
  }
}

/* Responsive scaling for medium screens */
@media (max-width: 1400px) {
  .header {
    padding: 20px 60px;
  }

  .header.scrolled {
    padding: 15px 30px;
  }

  .header-container {
    gap: 40px;
  }

  .hero-content-box {
    padding: 0px 60px;
  }

  .left-section {
    gap: 40px;
  }

  .nav {
    gap: 30px;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .header.scrolled .nav-link {
    font-size: 0.85rem;
  }

  .header.scrolled .contact-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1280px) {
  .header {
    padding: 20px 45px;
  }

  .header-container {
    gap: 32px;
  }

  .left-section {
    gap: 32px;
  }

  .nav {
    gap: 22px;
  }

  .nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.3px;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 0.92rem;
  }

  .logo img {
    height: 48px;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: 20px 40px;
  }

  .header-container {
    gap: 30px;
  }

  .hero-content-box {
    padding: 0px 10px;
  }

  .left-section {
    gap: 30px;
  }

  .nav {
    gap: 20px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .header.scrolled .nav-link {
    font-size: 0.8rem;
  }

  .logo img {
    height: 50px;
  }

  .header.scrolled .logo img {
    height: 35px;
  }
}

@media (max-width: 1130px) {
  .header {
    padding: 20px 30px;
  }

  .header-container {
    gap: 20px;
  }

  .left-section {
    gap: 20px;
  }

  .nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.2px;
  }

  .contact-btn {
    padding: 9px 16px;
    font-size: 0.85rem;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 5.4em;
  right: 0.5em;
  width: 250px;
  border-radius: 8px;
  background-color: #ffffffb9;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: none;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  color: #006995;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
  transition: color 0.3s ease;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: #555555;
}

.mobile-contact-btn {
  background: linear-gradient(135deg, #006995 0%, #0093d1 100%);
  color: #fff;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  text-align: center;
  display: block;
  margin-top: 20px;
  transition: all 0.5s ease-out;
  box-shadow: 0 4px 15px rgba(0, 105, 149, 0.25);
}

.mobile-contact-btn:hover {
  background-color: #1a4f7a;
}

#mobileMenuClose.mobile-menu-close {
  display: none;
}

/* Hamburger styling and animation */
.hamburger {
  background: none;
  border: none;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #006995;
  border-radius: 3px;
  position: absolute;
  left: 5px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 18px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}

.hamburger.active span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

/* Mobile Responsive */
@media (max-width: 1100px) {
  .nav {
    display: none !important;
  }

  .contact-btn {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .mobile-menu {
    display: block;
  }

  .header {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
  }

  .header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
  }

  .header.scrolled .header-container {
    border-radius: 12px;
    margin: 10px;
  }

  .logo img {
    height: 45px;
  }

  .header.scrolled .logo img {
    height: 35px;
  }

  .hero-content-box {
    padding: 0px 20px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 20px 20px;
  }

  .header.scrolled {
    padding: 10px 15px;
  }

  .header.scrolled .header-container {
    padding: 6px 15px;
    border-radius: 10px;
    margin: 16px 8px;
  }

  .logo img {
    height: 45px;
  }

  .header.scrolled .logo img {
    height: 32px;
  }

  .hero-content-box {
    padding: 0px 20px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .header.scrolled .logo img {
    height: 40px;
  }

  .header-container {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0.73) 15%,
      rgba(255, 255, 255, 0.7) 30%,
      rgba(255, 255, 255, 0.66) 45%,
      rgba(255, 255, 255, 0.6) 60%,
      rgba(255, 255, 255, 0.5) 70%,
      rgba(255, 255, 255, 0.42) 75%,
      rgba(255, 255, 255, 0.35) 79%,
      rgba(255, 255, 255, 0.28) 83%,
      rgba(255, 255, 255, 0.22) 87%,
      rgba(255, 255, 255, 0.16) 91%,
      rgba(255, 255, 255, 0.1) 94%,
      rgba(255, 255, 255, 0.05) 97%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

/* Hero Section with Background Image */
.hero-section {
  position: relative;
  width: calc(100% - 16px);
  min-height: 75vh;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 0;
  overflow: hidden;
  margin: 110px auto 2rem auto;
  margin-left: 8px;
  margin-right: 8px;
}

/* Background image layer */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("photos/shutterstock/header1.webp") center right/cover no-repeat;
  filter: brightness(75%);
  border-radius: 0 0 20px 20px;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-section::before {
    background-position: 75% center; 
  }
}

/* Content Box Left Side */
.hero-content-box {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 0 100px;
  margin: 0;
}

/* Text Container with Border */
.text-container {
  background-color: transparent;
  text-align: left;
  max-width: 500px;
}

.small-supertext {
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}

.main-heading {
  color: #fff;
  background-clip: text;
  font-weight: 600;
  line-height: 1.2;
}

.sub-description {
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  margin-top: var(--space-xs);
}

/* CTA Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #006995 0%, #0093d1 100%);
  color: #fff;
  text-decoration: none;
  padding: 17px 20px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.5s ease-out;
  text-align: center;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 105, 149, 0.25);
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #005580 0%, #0077a8 100%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  z-index: -1;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 105, 149, 0.3);
}

.hero-btn:hover::before {
  opacity: 1;
}

.hero-btn:active {
  transform: translateY(-2px);
  transition: all 0.1s ease;
}

/* Arrow Icon */
.hero-btn .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.5s ease-out;
}

.hero-btn:hover .arrow-icon {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .hero-btn .arrow-icon {
    vertical-align: middle;
    position: relative;
    top: -2px; 
  }
}
/* Responsive adjustments for hero */
@media (max-width: 1100px) {
  .hero-section {
    margin-top: 80px;
  }
}

@media (max-width: 1100px) {
  .nav {
    display: none !important;
  }

  .contact-btn {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .mobile-menu {
    display: block;
  }

  .header {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    height: 85px;
  }

  .header-container {
    width: 99%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
  }

  .header.scrolled .header-container {
    border-radius: 12px;
    margin: 10px;
  }

  .logo img {
    height: 45px;
  }

  .header.scrolled .logo img {
    height: 35px;
  }

  .hero-content-box {
    padding: 0px 20px;
  }
  
  .hero-section {
    margin-top: 85px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    margin-top: 70px;
    min-height: 60vh;
  }

  .hero-content-box {
    padding: 0 30px;
  }

  .main-heading {
  }
}

@media (max-width: 768px) {
  .header {
    padding: 20px 20px;
    height: 75px;
  }

  .header.scrolled {
    padding: 10px 15px;
  }

  .header.scrolled .header-container {
    padding: 6px 15px;
    border-radius: 10px;
    margin: 16px 8px;
  }

  .logo img {
    height: 45px;
  }

  .header.scrolled .logo img {
    height: 32px;
  }

  .hero-content-box {
    padding: 0px 20px;
  }
  
  .hero-section {
    margin-top: 75px;
  }
}


@media (max-width: 480px) {

  .hero-section {
    position: relative;
    width: calc(100%);
    margin: 75px 0 0 0;
    align-items: stretch;
    padding: 40px 0;
    min-height: 85vh;
  }
  
  .hero-content-box {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 65vh;
  }
  
  .text-group {
    /* This keeps all text  at the top of the header */
  }
  
  .hero-btn {
    margin-top: auto;
    align-self: flex-start;
  }
}
/* Partners Carousel Section - Compact */


.partners-carousel {
  padding: 1.5rem 0;
  background-color: transparent;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
mask-image: linear-gradient(
  to right,
  transparent 0%,
  black 10%,
  black 90%,
  transparent 100%
);
-webkit-mask-image: linear-gradient(
  to right,
  transparent 0%,
  black 10%,
  black 90%,
  transparent 100%
);
}

.carousel-track {
  margin-bottom: 1.5rem;
  display: flex;
  user-select: none;
  width: max-content;
  gap: 30px;
  animation: scroll 30s linear infinite;
}

.carousel-track:active {
  cursor: grabbing;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 60px;
}

.logo-item img {
  max-height: 50px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;

  transition: transform 0.3s ease;
}

.logo-item:hover img {
  transform: translateY(-3px);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Wipe animation */
@keyframes wipeIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.main-heading {
  opacity: 0;
  animation: wipeIn 1.5s ease-out 0.2s forwards;
}

.sub-description {
  opacity: 0;
  animation: wipeIn 1.5s ease-out 0.4s forwards;
}

.hero-btn {
  opacity: 0;
  animation: wipeIn 1.5s ease-out 0.6s forwards;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-section {
    padding: 50px 60px;
  }


  .main-heading {
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 30px;
    justify-content: center;
    min-height: 75vh;
  }


  .main-heading {
    text-align: center;
  }

  .hero-content-box {
    margin-left: 0;
    max-width: 100%;
  }
	  .hero-btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }


  .text-container {
    padding: 25px;
  }

  .main-heading {
  }

  .small-supertext,
  .sub-description {
	  text-align: center;
  }

  .partners-carousel {
    padding: 1.5rem 0;
  }

  .carousel-track {
    gap: 20px;
  }

  .logo-item {
    min-width: 90px;
    height: 50px;
  }

  .logo-item img {
    max-height: 40px;
    max-width: 90px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 20px;
  }

  .header {
    padding: 0 !important;
  }
	  .hero-section::after {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.2) 20%,
      rgba(0, 0, 0, 0) 40%
    );
  }

  /* Adjust background to respect margins */
  .hero-section::before {
    content: "";
    top: 0;
    left: 10px;
    right: 10px;
    bottom: 0;
    filter: brightness(70%);
    border-radius: 20px 20px 20px 20px;
    z-index: 0;
  }

  .hero-btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }

  .text-container {
    padding: 20px;
    text-align: center;
  }

  .main-heading {
  }

  .small-supertext,
  .sub-description {
  }

  .hero-btn {
    padding: 12px 24px;
  }

  .carousel-track {
    gap: 15px;
  }

  .logo-item {
    min-width: 80px;
    height: 45px;
  }

  .logo-item img {
    max-height: 35px;
    max-width: 80px;
  }

  .hero-content-box {
    padding: 0px;
  }

  .main-heading {
    text-align: center;
  }
}
@media (max-width: 1400px) {
  .hero-content-box {
    padding: 0 60px;
  }
}

@media (max-width: 1200px) {
  .hero-content-box {
    padding: 0 10px;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .hero-content-box {
    padding: 0 40px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

/* Spacing Scale */
:root {
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --space-3xl: 6rem;
  --space-4xl: 6rem;
  --container-max: 1200px;
  --container-padding: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

/* Company Description Section */
.company-description {
  padding: var(--space-xl) var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 1em;
  overflow: hidden;
}


/* Gradient background layer */
.company-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #004d6b 0%, #006995 50%, #0891b2 100%);
  z-index: -2;
}

/* Glass overlay */
.company-description::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1), 
              inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
  z-index: -1;
}

.company-description p {
  margin-bottom: var(--space-lg);
  font-family: "Montserrat";
  font-weight: 400;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #ffffff;
}

.company-description p:last-child {
  margin-bottom: 0;
}

/* --- Mobile Styles --- */
@media (max-width: 768px) {
  .company-description {
    padding: var(--space-lg) var(--space-sm) !important;
    border-radius: 0;
    border-radius: 8px;
  }

  .company-description::before {
    background-position: center top;
    background-size: cover;
    filter: brightness(65%);
  }

  .company-description p {
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    margin-top: 0.5rem;
    max-width: 90%;
  }

  .company-description p:first-child {
    margin-top: 1rem;
  }

  .company-description p:last-child {
    margin-bottom: 0;
  }

  .container {
    padding: 0 0.5em;
  }
}

/* Ensure Montserrat used for charts/labels */
body, canvas, table {
  font-family: 'Montserrat', sans-serif;
}
/* Chart box */
.chart-box {
  border-radius: 8px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make canvas scale cleanly and preserve aspect ratio */
.chart-box canvas {
  width: 100% !important;
  height: auto !important;
  max-height: 420px;
}
/* Main Content Section */
.main-content-section {
  padding: var(--space-4xl) 0;
}

.content-container {
  display: block;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}



.content-left,
.content-right {
  display: flex;
  flex-direction: column;
}

.content-left h2 {
  font-size: 1.75rem;
  font-weight: 500;
  color: #006995;
  margin-bottom: var(--space-xs);
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
}

.content-left h2:first-child,
.content-right h2:first-child {
  margin-top: 0;
}

.content-left p,
.content-right p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: var(--space-xs);
}

.content-left ul,
.content-right ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-sm);
}

.content-left li,
.content-right li {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.75rem;
  position: relative;
}

.content-left li:before,
.content-container,
.content-right li:before {
  content: '•';
  left: 0;
  color: #006995;
  font-weight: bold;
}
.content-left li:before{
	padding-right: 1em;
}

/*features section  */
  .features {
            padding: 1.5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
			margin-top: var(--space-lg);
        }

        .feature-content {
            display: flex;
            flex-direction: column;
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
			margin-top: -0.5em;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .feature-list svg {
            width: 1.5rem;
            height: 1.5rem;
            flex-shrink: 0;
            color: #006995;
            background-color: #e6f4f9;
            padding: 0.25rem;
            border-radius: 8px;
            margin-top: 0.125rem;
        }

        .feature-list span {
            color: #475569;
        }

        .feature-image {
            position: relative;
        }

        .feature-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 3/3;
            object-fit: cover;
            border-radius: 1rem;
        }

.feature-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-list li.fade-in {
  opacity: 1;
  transform: translateY(0);
}

        /* Mobile responsiveness */
@media (max-width: 1024px) {
				.feature-list {
				margin-top: 0em;
			}
}
        @media (max-width: 768px) {
			.features{
				padding: 4rem 0.5rem;
			}
            .features h1 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .feature-row {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            /* Text stacks on top of image */
            .feature-content {
                order: 1;
            }

            .feature-image {
                order: 2;
            }


            .feature-content > p {
                font-size: 1rem;
				text-align: center;
            }
        }


ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: var(--space-md);
}

li {
  font-weight: 400;
  color: #333;
  margin-bottom: 0.75rem;
  position: relative;
  font-family: "Montserrat";
}

li::before {
  content: "";
  left: 0;
  top: 0.125rem;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Custom bullet colors for each section */
.ti-blue li::before {
  background-image: url("photos/bullet-blue.svg");
}

.ti-green li::before {
  background-image: url("photos/bullet-green.svg");
}

.ti-orange li::before {
  background-image: url("photos/bullet-orange.svg");
}

@media (max-width: 768px) {
  .ti {
    padding: var(--space-md) var(--space-xs);
  }

  .ti-container {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  /* Force image on top, text on bottom for all sections */
  .ti-container {
    display: flex;
    flex-direction: column;
  }

  .ti-image {
    order: 1;
    min-height: 250px;
  }

  .ti-text {
    order: 2;
    padding: var(--space-md);
  }

  .ti-text h2 {
    font-size: 1.5rem;
  }
	
	  .insurers h2 {

  }


}

h2 {
  font-weight: 500;
  color: #006995;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  font-family: "montserrat";
  text-align: center;
}

p {
  font-weight: 400;
  color: #333333;
  margin-bottom: var(--space-xs);
  font-family: "Montserrat";
  line-height: 1.8;
}

/* Why whiskerDocs section */
.features {
  padding: 1.5rem 2rem;
}

.why-title {
  text-align: center;
  margin-bottom: 1rem;
}

.why-intro {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.why-container {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.why-image-section {
  flex: 1;
}

.why-main-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3.6/5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-content {
  flex: 1;
  display: flex;
  flex-direction: column;
	gap: 2rem;
}


.why-item-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.why-item-icon .material-icons {
  font-size: 1.5rem;
  color: #006995;
  border-radius: 8px;
}

.why-item-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-item-title {
  font-weight: 600;
  color: #006995;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.why-item-text {
  color: #555;
  line-height: 1.7;
  font-size: medium;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .features {
    padding: 1.5rem 1.5rem;
  }
  
  .why-intro {
    margin-bottom: 2rem;
  }
  
  .why-intro br {
    display: none; /* Remove line breaks on mobile */
  }
  
  .why-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .why-image-section {
    position: relative;
    top: 0;
    width: 100%;
  }
  
  .why-main-image {
    aspect-ratio: 16/9;
    max-height: 250px;
  }
  
  .why-item {
    padding: 0.5rem 0;
  }
  .why-content {
	gap: 1rem;  
	}

  
  .why-item-text {
    line-height: 1.6;
  }
}

/* Small mobile optimization */
@media (max-width: 480px) {
  .features {
    padding: 1.5rem 0.5rem;
  }
  
  .why-item {
    padding: 0.5rem 0;
  }
	.why-content {
		gap: 0px;
	}
}
/* Stats Section */
.stats {
  padding: 2rem 2rem;
  background-color: transparent;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}
.stats-container h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #006995;
}
.stats-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start; 
}

.stat-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%; 
}

/* Gradient background layer for each card */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #004d6b 0%, #006995 50%, #0891b2 100%);
  border-radius: 1.5rem;
  z-index: 1;
}

/* Glass overlay for each card 
.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
  z-index: 2;
}
*/
.stat-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 10;
	align-self: flex-start;
}
.stat-icon.blue,
.stat-icon.indigo,
.stat-icon.cyan {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.stat-icon svg {
  width: 2rem;
  height: 2rem;
}
.stat-number-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.stat-card:nth-child(1) .stat-number,
.stat-card:nth-child(2) .stat-number,
.stat-card:nth-child(3) .stat-number {
  color: #ffffff;
}
.stat-arrow {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  position: relative;
  z-index: 10;
}
.stat-card.counting .stat-arrow {
  opacity: 1;
  transform: translateY(0);
	display: none;
}
.stat-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}
.stat-arrow.down svg {
  transform: rotate(180deg);
}
.stat-label {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  font-size: large;
  display: flex;
  flex-direction: column;
  flex: 1; 
}

.stat-label-title {
  margin-bottom: 0.5rem;
  min-height: 4.5em; 
  display: flex;
  align-items: flex-start;
}

.stat-label-title b {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.stat-label-text {
  line-height: 1.6;
  flex: 1;
}
.material-icons, .material-symbols-outlined {
	font-size: 1.75rem !important;
}
@media (min-width: 993px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {

  .stat-number {
    font-size: 2rem;
  }
	.why-partner-section {
    padding: 1.5rem 1.5rem;
  }
}

.stats-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #333333;
    margin: -10px auto 40px;
    max-width: 700px;
}

.stat-arrow.down {
    transform: rotate(180deg);
}

.citation-btn {
  background: rgba(255, 255, 255, 0.0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 0.2rem 0.38rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  z-index: 15;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25),
              0 2px 6px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.citation-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3),
              0 3px 8px rgba(0, 0, 0, 0.2);
}

.citation-btn:active {
  transform: scale(0.95);
}

.citation-wrapper {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* bubble is appended to document.body by JS, so these are body-level styles */
.citation-bubble {
  position: fixed;
  background: #ffffff;
  color: #333333;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-size: 0.85rem;
  line-height: 1.6;
  width: 320px;
  max-width: calc(100vw - 2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 99999;
  font-weight: normal;
  pointer-events: none;
  white-space: normal;
}

.citation-bubble.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* the little arrow pointing down to the button */
.citation-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  border: 10px solid transparent;
  border-top-color: #ffffff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.citation-bubble a {
  color: #0891b2;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.citation-bubble a:hover {
  color: #006995;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .citation-bubble {
    width: 90vw;
    max-width: 340px;
    font-size: 0.8rem;
    padding: 1rem;
  }

  .citation-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.82rem;
    border-radius: 8px;
    touch-action: manipulation;
    aspect-ratio: auto;
  }
}
/* Disable pointer events and hover effects on TrustPilot widget */
.trustpilot-widget {
  pointer-events: none !important;
  cursor: default !important;
}

.trustpilot-widget * {
  pointer-events: none !important;
  cursor: default !important;
}

.trustpilot-widget a {
  pointer-events: none !important;
  cursor: default !important;
  text-decoration: none !important;
}

.trustpilot-widget a:hover {
  text-decoration: none !important;
  opacity: 1 !important;
  transform: none !important;
}


.trustpilot-widget iframe {
  pointer-events: none !important;
}

/* REVIEWS SECTION */
.reviews-section {
  padding: var(--space-4xl) var(--space-md);
}


.reviews-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.reviews-header h3 {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.rating-container {
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stars {
  display: flex;
}

.star {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
  color: #fbbf24;
}

.rating-text {
  color: #4b5563;
  font-size: 1rem;
}

.reviews-subtext {
  color: #6b7280;
  font-size: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 993px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: var(--space-md);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-header {
  margin-bottom: var(--space-xs);
}


.logo-blue,
.logo-purple,
.logo-emerald {
  border-radius: 50%;
  width: 45px;  
  height: 45px; 
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-blue {
  background: linear-gradient(to bottom right, #2563eb, #1e40af);
}
.logo-purple {
  background: linear-gradient(to bottom right, #9333ea, #6b21a8);
}
.logo-emerald {
  background: linear-gradient(to bottom right, #059669, #047857);
}
.logo-text {
  color: white;
  font-weight: 500;
}

.card-stars {
  display: flex;
  margin-bottom: 12px;
}

.card-star {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
  color: #fbbf24;
}

.review-text {
  color: #374151;
  margin-bottom: var(--space-md);
  flex-grow: 1;
  line-height: 1.625;
}

.author-info {
  padding-top: var(--space-md);
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

.author-name {
  color: #111827;
  font-weight: 500;
  margin-bottom: 4px;
}

.author-role,
.author-company {
  color: #6b7280;
  line-height: 1.5;
}

.author-company-invis {
  color: transparent;
  user-select: none;
}

/* Reviews Animation - Desktop Only */
@media (min-width: 769px) {
  .review-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .review-card.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure cards are visible on mobile without animation */
@media (max-width: 768px) {
  .review-card {
    opacity: 1;
    transform: none;
  }
}


/* Flipped Layout - Table on Left */
.text-table-layout.flipped {
  grid-template-columns: 1.2fr 1fr;
}


/* Responsive Adjustments */
@media (max-width: 968px) {
  .text-table-layout,
  .text-table-layout.flipped {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .table-column {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 600px;
  }
}

/* Quote Box Styling */
.quote-box {
  background: url('photos/bird1.jpg') center/cover no-repeat;
  border-radius: 8px;
  padding: var(--space-xl) 0;
  text-align: center;
  margin: 4rem 2rem;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.quote-container {
  max-width: 1200px;
  margin: 0 auto;
}

.quote-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.quote-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-md);
}

.quote-author {
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
	padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .quote-container {
    margin: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .quote-box {
    min-height: 500px; /* Make it taller/portrait */
    display: flex;
    flex-direction: column;
    justify-content: center;
	margin: 0px;
  }
  
  .quote-text {
    font-size: 1.1rem; /* Much bigger text */
    line-height: 1.7;
    padding: 0 var(--space-sm);
  }
  
  .quote-author {
    font-size: 1rem; /* Bigger author name */
    padding: 0 var(--space-md);
  }
}

/* timeline section */
.timeline-section {
  padding: 1.5rem var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Content Area */
.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  margin-top: var(--space-xl);
}

/* Left Content */
.content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.year-display {
  font-size: 5rem;
  font-weight: 600;
  color: #006995;
  margin-bottom: var(--space-md);
  height: 6rem;
  display: flex;
  align-items: center;
}

.year-digit {
  display: inline-block;
  width: 3rem;
  height: 6rem;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

.digit-scroll {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.digit-number {
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 600;
  color: #006995;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.content-title {
  font-size: 2rem;
  font-weight: 500;
  color: #333333;
  min-height: 6rem;
  display: flex;
  justify-content: flex-start;
  text-align: left;
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  min-height: 8rem;
}

/* Right Image */
.content-right {
  display: flex;
  align-items: center;
}

.timeline-image {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom Navigation */
.timeline-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: var(--space-md) 0;
}

.timeline-dots {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-dot:hover {
  background: #a0a0a0;
  transform: scale(1.2);
}

.timeline-dot.active {
  background: #b8dce8;
  width: 60px;
  height: 16px;
  border-radius: 8px;
}

.timeline-dot.active:hover {
  transform: scale(1.05);
}

/* Timer fill for active dot */
.timer-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #006995;
  transition: width 0.1s linear;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .content-container {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .timeline-image {
    height: 400px;
  }

  .year-display {
    font-size: 3.5rem;
    height: 4.5rem;
  }

  .year-digit {
    width: 2.2rem;
    height: 4.5rem;
  }

  .digit-number {
    height: 4.5rem;
    font-size: 3.5rem;
  }

  .content-title {
    font-size: 2rem;
    min-height: 5rem;
  }

  .content-text {
    min-height: 6rem;
  }
}

@media (max-width: 768px) {
  .timeline-section {
    padding: 1.5rem var(--space-xs);
  }

  .content-container {
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .year-display {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    height: 3rem;
  }

  .year-digit {
    width: 1.6rem;
    height: 3rem;
  }

  .digit-number {
    height: 3rem;
    font-size: 2.5rem;
  }

  .content-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    min-height: 4rem;
  }

  .content-text {
    font-size: 1rem;
    min-height: 5rem;
  }

  .timeline-image {
    height: 300px;
  }

  .timeline-dot {
    width: 14px;
    height: 14px;
  }

  .timeline-dot.active {
    width: 50px;
    height: 14px;
    border-radius: 7px;
  }

  .timer-fill {
    border-radius: 7px;
  }

  .timeline-dots {
    gap: 0.75rem;
  }

  .timeline-navigation {
    gap: 0.75rem;
  }
}
@media (max-width: 768px) {
.timeline-section {
  padding:  1.5rem 0px;
}
}
/* Form Style */
:root {
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --container-max: 1200px;
}

/* Desktop Form */
#contactForm {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  padding: var(--space-lg);
  max-width: var(--container-max);
	    background: #ffffffb5;
    border-radius: 16px;
    border: 1px solid white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #ffffffb5;
    border-radius: 16px;
    border: 1px solid white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}

.form-title {
  font-weight: 600;
  margin: 0 0 var(--space-md) 0;
  color: #006995;
  text-align: center;
}

.modal #contactForm {
  background-image: none;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.form-item {
  margin-bottom: var(--space-sm);
}

.form-item label {
  display: none;
}

.form-item input[type="text"],
.form-item input[type="email"],
.form-item input[type="tel"],
.form-item select,
.form-item textarea {
  width: 100%;
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  background-color: #ffffffc2;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  min-height: 52px;
}

.form-item textarea {
  min-height: 120px;
  resize: vertical;
}

.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus {
  outline: none;
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-item input::placeholder,
.form-item textarea::placeholder {
  color: #86868b;
}

.form-item select {
  color: #86868b;
  cursor: pointer;
}

.form-item select.has-value {
  color: #1d1d1f;
}

.form-actions {
  margin-top: var(--space-md);
}

input[type="submit"] {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, #006995 0%, #0093d1 100%);
  color: white;
  border: none;
  border-radius: 16px; 
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.5s ease-out;
  box-sizing: border-box;
  min-height: 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 105, 149, 0.25); 
  white-space: nowrap;
}

/* Hover gradient overlay */
input[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #005580 0%, #0077a8 100%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  z-index: -1;
}


input[type="submit"]:hover::before {
  opacity: 1;
}

input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 105, 149, 0.3);
}
/* Desktop Form Animations */
#contactForm:not(.modal #contactForm) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
}

#contactForm.active:not(.modal #contactForm) {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#contactForm:not(.modal #contactForm) .form-item,
#contactForm:not(.modal #contactForm) .form-actions {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}

#contactForm.active:not(.modal #contactForm) .form-item,
#contactForm.active:not(.modal #contactForm) .form-actions {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
#contactForm:not(.modal #contactForm) .form-row:nth-child(1) .form-item:nth-child(1) { transition-delay: 0.25s; }
#contactForm:not(.modal #contactForm) .form-row:nth-child(1) .form-item:nth-child(2) { transition-delay: 0.3s; }
#contactForm:not(.modal #contactForm) .form-row:nth-child(2) .form-item:nth-child(1) { transition-delay: 0.35s; }
#contactForm:not(.modal #contactForm) .form-row:nth-child(2) .form-item:nth-child(2) { transition-delay: 0.4s; }
#contactForm:not(.modal #contactForm) .form-row:nth-child(3) .form-item:nth-child(1) { transition-delay: 0.45s; }
#contactForm:not(.modal #contactForm) .form-row:nth-child(3) .form-item:nth-child(2) { transition-delay: 0.5s; }
#contactForm:not(.modal #contactForm) .form-item:nth-child(4) { transition-delay: 0.55s; }
#contactForm:not(.modal #contactForm) .form-actions { transition-delay: 0.6s; }

/* Modal keeps forms visible */
.modal #contactForm,
.modal #contactForm .form-item,
.modal #contactForm .form-actions {
  opacity: 1 !important;
  transform: none !important;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* When modal is just open (not using .show class) */
.modal[style*="display: block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #86868b;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    transition: color 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #1d1d1f;
}

/* Form Title - applies to both modal and page forms */
.modal .form-title,
#contactFormModal .form-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 30px 0;
    color: #006995;
    text-align: center;
}

/* Form styling - applies to modal form */
#contactFormModal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#contactFormModal .form-item {
    margin-bottom: 20px;
}

#contactFormModal .form-item label {
    display: none;
}

#contactFormModal .form-item input[type="text"],
#contactFormModal .form-item input[type="email"],
#contactFormModal .form-item input[type="tel"],
#contactFormModal .form-item select,
#contactFormModal .form-item textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    min-height: 52px;
}

#contactFormModal .form-item textarea {
    min-height: 120px;
    resize: vertical;
}

#contactFormModal .form-item input:focus,
#contactFormModal .form-item select:focus,
#contactFormModal .form-item textarea:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

#contactFormModal .form-item input::placeholder,
#contactFormModal .form-item textarea::placeholder {
    color: #86868b;
}

#contactFormModal .form-item select {
    color: #86868b;
    cursor: pointer;
}

#contactFormModal .form-item select.has-value {
    color: #1d1d1f;
}

#contactFormModal .form-actions {
    margin-top: 30px;
}

#contactFormModal input[type="submit"] {
    width: 100%;
    padding: 16px 20px;
    background-color: #006995;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    min-height: 52px;
}

#contactFormModal input[type="submit"]:hover {
    background-color: #0093D1;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 105, 149, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal .form-title,
    #contactFormModal .form-title {
        font-size: 24px;
    }
    
    #contactFormModal .form-row {
        grid-template-columns: 1fr;
        gap: 0px;
		margin-bottom: 0px;
    }
}


/* Mobile */
@media (max-width: 768px) {
  #contactForm {
    padding: 1.5rem var(--space-md);
    margin: var(--space-xl) var(--space-xs);
  }

  .modal-content {
    padding: var(--space-md) var(--space-sm);
    margin: var(--space-sm);
  }

  .modal-close {
    right: var(--space-xs);
    top: var(--space-xs);
  }

  .form-title {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
  }

.form-row {
  grid-template-columns: 1fr;
  gap: var(--space-xs);
  margin-bottom: 0;
}

.form-item {
  margin-bottom: 0;
}

.form-row:not(:last-of-type) {
  margin-bottom: var(--space-xs);
}
  .form-actions {
    margin-top: var(--space-sm);
  }
}
/* Footer Styles */
.footer {
  background-color: transparent;
  padding: 40px 0 20px 0;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h5 {
  color: #006995;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  padding-left: 0px !important;
}

.footer-column ul li a {
  color: #006995;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #1a3d73;
  text-decoration: underline;
}

.footer-social {
  text-align: right;
}

.social-title {
  color: #006995;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-links a {
  color: #006995;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #1a3d73;
}

.footer-bottom {
  border-top: 1px solid #006995;
  padding-top: 20px;
  text-align: center;
  color: #2c5aa0;
  font-size: 0.875rem;
}

@media (max-width: 961px) {
	 .social-links {
    justify-content: flex-start;
  }

	
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-social {
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-column h3 {
    font-size: 0.875rem;
  }

  .footer-column ul li a {
    font-size: 0.75rem;
  }

  .social-title {
    font-size: 0.875rem;
  }

  .social-links a {
    font-size: 1.25rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}


/* SHARED CODE AMONG SUB PAGES */
/* Why Partner Section */
.why-partner-section {
  padding: 1.5rem 0;
}

.section-title {
  font-weight: 500;
  color: #006995;
  text-align: center;
}

p.options {
    text-align: center;
    color: #555555;
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.benefits-container {
  background-color: transparent;
  border-radius: 8px;
padding: 0 var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
  margin-top: var(--space-xl);
	
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.benefit-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.benefit-number {
  background: #006995;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.benefit-text {
  color: #333;
  font-weight: 500;
}


@media (max-width: 480px) {
.benefits-container {
padding: 0 var(--space-sm);
  margin-top: var(--space-md);
	
}
}

/* CTA Section */
.cta-section {
  padding: 1.5rem 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-weight: 500;
  color: #006995;
  margin-bottom: 15px;
}

.cta-container p {
  color: #666;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #006995 0%, #0093d1 100%);
  color: #fff;
  text-decoration: none;
  padding: 17px 40px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.5s ease-out;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 105, 149, 0.25);
  letter-spacing: 0.5px;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #005580 0%, #0077a8 100%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  z-index: -1;
}

.cta-btn:hover::before {
  opacity: 1;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 105, 149, 0.35);
}

@media (max-width: 768px) {

  
  .cta-btn {
    padding: 15px 35px;

  }
}
