:root {
  --brand-navy: #0e4970;
  --brand-teal: #2cbaa1;
  --brand-white: #ffffff;
  --muted: #6f6f6f;
}
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--brand-white);
  color: var(--brand-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a{
    text-decoration: none !important;
}

/* Shared button styles used in the header CTA */
.btn-primary-custom-green {
  letter-spacing: 0;
  position: relative;
  background: var(--brand-teal);
  border: none;
  color: var(--brand-white);
  line-height: 20px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.btn-primary-custom-green:hover {
  background: var(--brand-white);
  transform: translateY(-2px);
  color: #000000;
}

.btn-primary-custom-navy i {
    position: absolute;
  right: 6px;
  top: 50%;
    background-color: #2CBAA1;
    border-radius: 50px;
  transform: translateY(-50%) rotate(-48deg);
    padding: 5px 5px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  line-height: 1;
}

.btn-primary-custom-navy.hero-btn  {
    padding: 12px 55px 12px 30px;
}

.btn-primary-custom-navy:hover i {
  transform: translateY(-50%) rotate(0deg);
}

/* Shared header styles */
.main-header {
  background: var(--brand-navy);
  padding: 5px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
  z-index: 1030;
}

.main-header + * {
  margin-top: 70px;
}

.main-header .navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff !important;
  padding: 0.5rem 0.8rem !important;
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
  opacity: 1;
  color: var(--brand-teal) !important;
}

.main-header .navbar-toggler i {
  font-size: 1.7rem;
}

.nav-link.active {
  color: #2cbaa1;
}

/* shared hero styles */
.hero-title {
      font-size: 5rem;
    font-weight: 600;
    line-height: 80px;
      font-family: "Inter", sans-serif;
    letter-spacing: -2px;
  color: #030213;
}

.hero-right-content {
      font-family: "Source Serif 4", serif;
    font-weight: 700;
    font-style: italic;
}

.stars {
    color: #FB9826;
    margin-bottom: 6px;
}
.hero-copy {
    max-width: 880px;
}

.hero-copy p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    line-height: 1.5;
}

.hero-social-proof {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar-stack {
    display: flex;
    align-items: center;
    padding-right: 14px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #c8c8c8;
    border: 2px solid #fff;
    margin-left: -14px;

}

.avatar:hover{
    transform: scale(1.1);
}

.avatar:first-child {
    margin-left: 0;
}

.logo-avatar {
    object-fit: cover;
    background: #0a3958;
}

.avatar-stack img {
    object-fit: cover;
    width: 42px;
    height: 48px;
    padding: 10px;
}

/* shared btn styles */
.btn-primary-custom-navy {
  position: relative;
  display: inline-flex;
  align-items: center;
    letter-spacing: -0.31px;
    background: #0E4970;
    border: none;
    color: #ffffff;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 28px;
    transition: all 0.3s ease;
}
.btn-primary-custom-navy:hover {
  background: #2CBAA1;
  transform: translateY(-2px);
  color: white;
}

/* Badge */
.badge-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    background: #f7f7f7;
    color: var(--ink);
    font-size: 1.125rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}
.badge-soft:hover {
    transform: scale(1.05);
    border: solid 1px var(--brand-navy);
}

.main-btn-center{
transition:0.3s;
}

.main-btn-center:hover{
transform: translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
    .main-btn-center{
        font-size: 1rem;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    background: #2cbaa11a;
    color: #2CBAA1;
    border-radius: 12px;
    padding: 10px 15px;
        border: none;
    letter-spacing: -1%;
    line-height: 28px;
}

/* top border */
.main-btn-center::before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:0;
    height:2px;
    background:#2CBAA1;
    transition:0.4s ease;
}

/* bottom border */
.main-btn-center::after{
    content:"";
    position:absolute;
    bottom:0;
    right:0;
    width:0;
    height:2px;
    background:#2CBAA1;
    transition:0.4s ease;
}

.main-btn-center:hover::before{
    width:100%;
}

.main-btn-center:hover::after{
    width:100%;
}

/* left and right borders */
.main-btn-center span::before,
.main-btn-center span::after{
    content:"";
    position:absolute;
    width:2px;
    height:0;
    background:#2CBAA1;
    transition:0.4s ease;
}

.main-btn-center span::before{
    left:0;
    bottom:0;
}

.main-btn-center span::after{
    right:0;
    top:0;
}

.main-btn-center:hover span::before{
    height:100%;
}

.main-btn-center:hover span::after{
    height:100%;
}

/*shared title styles*/
.main-title {
      font-size: 4.5rem;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #030213;
    letter-spacing: -3%;
}

.main-title span {
    color: #2CBAA1;
    font-family: "Source Serif 4", serif;
    font-weight: 700;
}

.main-subtitle {
    font-size: 3.563rem;
    font-weight: 600;
    line-height: 73px;
    letter-spacing: -3%;
    font-family: "Inter", sans-serif;
    color: #030213;
}

.main-subtitle span {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
}

/* shared mission section styles */
.mission-top-icon {
    position: absolute;
    top: -35px;
    right: 40px;
    border-radius: 15px;
    width: 65px;
    padding: 30px 30px 40px 30px;
    height: 65px;
    background: #FAFBFC;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mission-top-icon:hover {
    transform: scale(1.1);
}

.mission-title {
    font-size: 2.25rem;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #030213;
    line-height: 50px;
    letter-spacing: -2%;
}

.mission-title span {
    font-family: "Source Serif 4", serif;
    font-weight: 700;
}

.para-graph {
  font-size: 1.125rem;
  line-height: 27px;
  font-weight: 400;
    font-family: "Inter", sans-serif;
  letter-spacing: -2%;
  color: #6f6f6f;
} 

/* SERVICES */
.service-card {
  border: 1px solid #edf2f7;
  border-radius: 20px;
  background: white;
}
.service-card h4 {
    font-size: 1.375rem;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    letter-spacing: -2%;
    line-height: 32px;
    color: #030213;
}
.service-card{
transition:0.3s;
}

.service-card:hover{
transform: translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
/* top border */
.service-card::before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:0;
    height:2px;
    background:#2CBAA1;
    transition:0.4s ease;
}

/* bottom border */
.service-card::after{
    content:"";
    position:absolute;
    bottom:0;
    right:0;
    width:0;
    height:2px;
    background:#2CBAA1;
    transition:0.4s ease;
}

.service-card:hover::before{
    width:100%;
}

.service-card:hover::after{
    width:100%;
}

/* left and right borders */
.service-card div::before,
.service-card div::after{
    content:"";
    position:absolute;
    width:2px;
    height:0;
    background:#2CBAA1;
    transition:0.4s ease;
}

.service-card div::before{
    left:0;
    bottom:0;
}

.service-card div::after{
    right:0;
    top:0;
}

.service-card:hover div::before{
    height:100%;
}

.service-card:hover div::after{
    height:100%;
}


/* shared final CTA styles */

.final-cta {
    position: relative;
    overflow: hidden;
    border: 10px solid #fff;
    border-radius: 32px;
    /* min-height: 500px; */
    background:
        radial-gradient(circle at center, rgba(44, 186, 161, 0.18), rgba(44, 186, 161, 0) 58%),
        radial-gradient(circle, rgba(6, 31, 40, 0.07) 1px, transparent 1px);
    background-size: auto, 16px 16px;
    background-position: center, center;
    box-shadow: 0 0 64px rgba(0, 0, 0, 0.12);
}

.final-cta-corner {
    --arc-start: 255deg;
    --arc-span: 98deg;
    --arc-thickness: 64px;
    position: absolute;
    display: block;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: conic-gradient(
        from var(--arc-start),
        rgba(44, 186, 161, 0) 0deg,
        rgba(44, 186, 161, 0.38) 12deg,
        #2cbaa1 30deg,
        #2cbaa1 calc(var(--arc-span) - 30deg),
        rgba(44, 186, 161, 0.38) calc(var(--arc-span) - 12deg),
        rgba(44, 186, 161, 0) var(--arc-span),
        transparent var(--arc-span) 360deg
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--arc-thickness)), #000 calc(100% - var(--arc-thickness)), #000 calc(100% - 1px), transparent 100%);
    mask: radial-gradient(farthest-side, transparent calc(100% - var(--arc-thickness)), #000 calc(100% - var(--arc-thickness)), #000 calc(100% - 1px), transparent 100%);
    box-shadow: 0 0 16px rgba(44, 186, 161, 0.2);
    pointer-events: none;
}

.final-cta-corner-left {
    top: 3px;
    left: -200px;
    transform: rotate(43deg);
}

.final-cta-corner-right {
    --arc-start: 75deg;
    right: -200px;
    top: -173px;
    transform: rotate(40deg);
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    /* min-height: 480px; */
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* gap: 24px; */
}

/* Shared footer styles */
.main-footer{
background:#0E4970;
color:#ffffff;
padding:40px 0 30px;
}

.main-footer .footer-logo{
margin-bottom:20px;
}

.main-footer .footer-desc{
    font-size: 1.25rem;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: -2%;
}

.main-footer .footer-desc span{
font-style:italic;
  font-family: "Source Serif 4", serif;
color:#ffffff;
font-size: 1.125rem;
}

/* social icons */

.main-footer .social-icons{
display:flex;
gap:15px;
justify-content: flex-end;
}


.main-footer .social-icons a{
width: 40px;
    height: 40px;
    background: #F5F6F7;
    color: #0E4970;
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: 0.3s;
}

.main-footer .social-icons a:hover{
background: #2CBAA1;
color: #ffffff;
}

/* footer links */

.main-footer .footer-links h5{
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 24px;
}

.main-footer .footer-links ul{
list-style:none;
padding:0;
margin:0;
}

.main-footer .footer-links ul li{
    margin-bottom: 12px;
    color: #F5F6F7;
    font-size: 1rem;
    font-weight: 400;
}

.main-footer .footer-links ul li a{
color:#d6e4ee;
text-decoration:none;
font-size: 1ren;
transition:0.3s;
}

.main-footer .footer-links ul li a:hover{
color:#2CBAA1;
}

/* divider */

.main-footer .footer-divider{
border-color:rgba(255,255,255,0.2);
margin:30px 0 20px;
}

/* bottom */

.main-footer .footer-bottom{
display:flex;
align-items:center;
justify-content:space-between;
gap:16px;
}

.main-footer .footer-legal-links{
display:flex;
align-items:center;
gap:12px;
margin-left:auto;
}
.main-footer .footer-legal-links a:hover{
  color: #2CBAA1;
}

.main-footer .footer-bottom p{
    color: #b8d4e68a;
    margin-bottom: 0;
    font-size: 0.875rem;
    font-family: "Inter", sans-serif;
    width: fit-content;
}

.main-footer .footer-bottom a{
text-decoration:none;
color:#d6e4ee;
transition:0.3s;
width: fit-content;
}

@media (max-width: 991px) {
   
  .final-cta-corner-left,
  .final-cta-corner-right,
  .final-cta-corner {
    display: none !important;
  }

  .main-footer .footer-brand{
  margin-bottom:25px;
  }
  .main-footer .social-icons{
  justify-content:flex-start;
  }
  .main-footer .footer-links{
  margin-bottom:40px;
  }

}

@media (max-width: 767px) {
    .hero-title {
        margin: 16px 0;
        font-size: 3.75rem !important;
        line-height: 70px !important;
    }
    .main-title {
          font-size: 2.813rem !important;
    }
}

@media (max-width: 425px) {
.main-btn-center {
    font-size: 0.875rem !important;
}
}

@media (max-width: 767px) {

  .final-cta-corner-left,
  .final-cta-corner-right,
  .final-cta-corner {
    display: none !important;
  }
  .quote-icon{
    top:-35px;
  }
  .main-footer .footer-bottom{
    flex-wrap:wrap;
    justify-content: center;
  }

  .main-footer .footer-links{
    margin-bottom:30px;
  }

  .main-footer .social-icons{
    justify-content:flex-start;
   }

  .main-footer .footer-desc{
    font-size: 1rem;
  }

  .main-footer .footer-legal-links{
    justify-content: center;
    width: 100%;
  }
}

/* ================= SCROLL ANIMATIONS ================= */

/* Animation Keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatInSoft {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animation Utility Classes */
.animate-left {
  opacity: 0;
  transform: translateX(-80px);
  will-change: transform, opacity;
}

.animate-right {
  opacity: 0;
  transform: translateX(80px);
  will-change: transform, opacity;
}

.animate-up {
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
}

.animate-down {
  opacity: 0;
  transform: translateY(-60px);
  will-change: transform, opacity;
}

.animate-float {
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  will-change: transform, opacity;
}

/* Active animation state */
.animate-left.animate-active {
  animation: slideInLeft 1150ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-right.animate-active {
  animation: slideInRight 1150ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-up.animate-active {
  animation: slideInUp 1150ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-down.animate-active {
  animation: slideInDown 1150ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-float.animate-active {
  animation: floatInSoft 1250ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Staggered animation delays for child elements */
.animate-delayed-1 {
  animation-delay: 180ms;
}

.animate-delayed-2 {
  animation-delay: 320ms;
}

.animate-delayed-3 {
  animation-delay: 460ms;
}

.animate-delayed-4 {
  animation-delay: 600ms;
}

.animate-delayed-5 {
  animation-delay: 740ms;
}

.animate-delayed-6 {
  animation-delay: 880ms;
}

/* Tablet: keep all animations */
@media (max-width: 991px) {
   .animate-left,
  .animate-right,
  .animate-up {
    opacity: 0;
    will-change: transform, opacity;
  }

  .animate-left {
    transform: translateX(-36px);
  }

  .animate-right {
    transform: translateX(36px);
  }

  .animate-up {
    transform: translateY(32px);
  }

  .animate-left.animate-active {
    animation: slideInLeft 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .animate-right.animate-active {
    animation: slideInRight 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .animate-up.animate-active {
    animation: slideInUp 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  /* Disable non-requested animations on mobile */
  .animate-float,
  .animate-float.animate-active {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

/* Mobile: keep only up/left/right scroll animations */
@media (max-width: 767px) {
  .animate-left,
  .animate-right,
  .animate-up {
    opacity: 0;
    will-change: transform, opacity;
  }

  .animate-left {
    transform: translateX(-36px);
  }

  .animate-right {
    transform: translateX(36px);
  }

  .animate-up {
    transform: translateY(32px);
  }

  .animate-left.animate-active {
    animation: slideInLeft 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .animate-right.animate-active {
    animation: slideInRight 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .animate-up.animate-active {
    animation: slideInUp 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  /* Disable non-requested animations on mobile */
  .animate-float,
  .animate-float.animate-active {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}