/**
# Global Styles
-----------------------------------------------*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 0.99rem;
    font-style: normal;
    color: #333;
    -webkit-transition: padding-top 0.3s ease;
    -moz-transition: padding-top 0.3s ease;
    transition: padding-top 0.3s ease;
}

h1, h2, h3, h4, h5, .section-title, .lead {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

h2 span {
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: -0.05rem;
    font-style: italic;
    /* font-size: 2rem; */
    margin-right: 0.6rem;
    /* color: #7cb7b2; */
}

h2 span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 8px;
    transform: skewX(-20deg) rotate(-0.5deg);
   clip-path: polygon(0 0, 100% 20%, 100% 90%, 0 100%);
    background: rgba(159, 203, 199, 0.5);
}

h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
}

a {
    color: #7cb7b2;
}

a:hover, a:focus {
    color: #538884;
}

.btn, .btn:active, .btn:focus, .btn:hover {
    min-width: 160px;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 1rem 1rem;
    background-color: #deae34;
    padding: 0.5rem 1.5rem;
    border-radius: 999px; /* Makes it a pill */
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:active, .btn:focus {
    background-color: #ffd66e !important;
}

.btn:hover {   
    background-color: #cd9601;
}

.btn-outline {
    color: #333;
    background: none;
    outline: 1px solid #333;
}

.btn-outline:active, .btn-outline:focus, .btn-outline:hover {
    color: ##fff !important;
    background-color: #333 !important;
}

.bold-link {
    font-weight: 600;
    text-decoration: none;
    color: #222;
}

.rounded {
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
}

.grayscale-image {
    -webkit-filter: grayscale(100%); /* For older WebKit browsers */
    -moz-filter: grayscale(100%); /* For older Firefox browsers */
    -o-filter: grayscale(100%); /* For older Opera browsers */
    -ms-filter: grayscale(100%); /* For older IE browsers */
    filter: grayscale(100%);
}

.ease {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.65;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevent interaction */
}

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

@media screen and (max-width: 1200px) {
    .video-background video {
        width: auto;
        height: 100%; /* 16:9 aspect ratio */
    }
}

.text-gold {
    color: #deae34 !important;
}

.text-teal {
    color: #7cb7b2;
}

.text-black {
    color: #222 !important;
}

.text-red {
    color: #bb1717 !important;
}

.mobile-only {
    display: none !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.pointer { cursor: pointer; }

/**
# Navbar
-----------------------------------------------*/
.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar.absolute {
  position: absolute;
  top: 0;
  width: 100%;
}

.navbar.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030; /* same as Bootstrap fixed-top */
}

.navbar-brand {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1060;
}

@media (min-width: 992px) {
    .navbar-brand {
        position: absolute;
        left: 0;
        transform: none;
        margin-right: auto;
    }
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
    display: block;
    margin: 5px auto 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  max-height: 60px; /* Adjust as needed */
}

.navbar .nav-item, .navbar .nav-item .btn {
    line-height: 4rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    color: #7cb7b2;
}

.navbar .nav-item .btn.btn-outline {
    outline-color: #7cb7b2;
}

.navbar .nav-item .btn {
    width: auto;
    min-width: auto;
    line-height: 1rem;
    padding: 1rem;
    border-radius: 0.15rem;
}

.navbar .nav-item .btn:hover, #navbarNav .btn:focus, #navbarNav .btn:active, #navbarNav .btn.active {
    color: #fff;
    background-color: #7cb7b2 !important;
    border-color: #7cb7b2 !important;
    outline-color: #7cb7b2;
}

.nav-link.active {
    font-weight: 500;
    color: #a4d5d1;
}

.navbar .nav-item {
    margin-right: 1.5rem;
}

.navbar-toggler, .navbar-toggler:active, .navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(164, 213, 209, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    z-index: 1060;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: initial !important;
    }

    .navbar-brand img {
        max-height: 120px;
        width: auto;
        display: block;
    }

    .navbar .nav-item {
        line-height: 2rem;
    }

    /**
     * Make mobile navbar expand to full-screen
     */
    .navbar-collapse {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: white; /* or any background */
        padding: 2rem; /* Add some padding */
        overflow-y: auto; /* In case content is long */
        z-index: 1050; /* Make sure it’s above other content */
    }

    /* Optional: Style the nav links bigger & centered */
    .navbar-collapse .navbar-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .navbar-collapse .nav-link, .navbar .nav-item .btn  {
        font-size: 1.25rem;
        padding: 1rem;
    }

    .navbar .nav-item {
        margin-right: 0;
    }

    .navbar .nav-item .btn {
        margin-top: 1rem;
    }

    /* Hide the toggler icon background while open, optional */
    .navbar-toggler.collapsed {
        /* your styles if needed */
    }
}

/**
# Hero Section
-----------------------------------------------*/
.hero {
    min-height: 240px;
    position: relative;
    min-height: none;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* clip-path: ellipse(100% 80% at 50% 20%); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    width: 100%;
    height:100%;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #19888a;
    background: linear-gradient(182deg, rgba(25, 136, 138, 1) 0%, rgba(217, 217, 167, 1) 100%);
    z-index: 1;
}

.page-home .hero::after {
    content: "";
    display: none;
}

.page-home .hero {
    height: 75vh;
    padding: 6rem 2rem;
}

@media (min-width: 1200px) {
    .page-home .hero {
        min-height: 80vh;
    }
}

.hero-content {
    z-index: 2;
}

.hero .lead {
    font-size: 3rem;
    /* text-transform: uppercase; */
    font-weight: 600;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 992px) {
    .hero .lead {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    body:not(.page-home) .hero {
        min-height: 40vh;
    }

    body:not(.page-home) .hero h1 {
        font-size: 2.5rem;
    }
}

.hero img {
    width: 200px;
}

/**
# Services Section
-----------------------------------------------*/
.services .card {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

.services h3
.credits  h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
}

/**
# Services Expanded View (Slider)
-----------------------------------------------*/
.service-slider .slick-list {
    overflow: hidden;
}

/* .service-slide.spacer {
    width: 100%;
    pointer-events: none;
}

@media (max-width: 768px) {

  .service-slide.spacer {
    max-width: 60px;
  }
}

@media (min-width: 992px) {
  .service-slide.spacer {
    max-width: calc( (100vw - 960px) / 2 );
  }
}

@media (min-width: 1200px) {
  .service-slide.spacer {
    max-width: calc( (100vw - 1140px) / 2 );
  }
}

@media (min-width: 1400px) {
  .service-slide.spacer {
    max-width: calc( (100vw - 1320px) / 2 );
  }
} */

@media (min-width: 992px) {
.service-list-card {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        padding: 1.5rem;
        border-radius: 8px;
        border: 1px solid #ddd;
        height: 100%;
    }

    /* Image wrapper stays fixed width */
    .service-list-image-wrap {
        flex: 0 0 260px;      /* fixed desktop width */
        overflow: hidden;
        border-radius: 6px;
    }

    /* Image fills entire height of card */
    .service-list-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
            border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    }

    .service-list-card .card-body {
        padding: 0;
    }

    .service-list-card .card-footer {
        padding-left: 0;
        padding-bottom: 0;
    }
}


/**
# Credits Section
-----------------------------------------------*/
.credits .card {
    position: relative;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

.credits .card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Info tab styling */
.credits .card .info-tab {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);

    /* Start hidden */
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.25s ease;
}

/* Hover state: slide up + fade in */
.credits .card:hover .info-tab {
    opacity: 1;
    transform: translateY(0);
}

.credits .card .info-tab a {
    text-decoration: none;
}

/**
# About Section
-----------------------------------------------*/
#about {
    /* padding: 8rem 1rem 0; */
    padding-bottom: 0;
    margin-bottom: 0 !important;
}

#founder a {
    color: #222;
    font-weight: 600;
    text-decoration: none;
}

#founder a:hover, #founder a:focus {
    text-decoration: none;
    color: #7cb7b2;
}

/**
# Awards Section
-----------------------------------------------*/
.awards {}

.awards-intro {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 5rem auto;
    text-align: center;
}

.awards .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.awards .award {
    padding: 1rem 5rem;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 1.15rem;

    /* For older browser support */
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

.award-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 500px;
    padding: 2rem;
}

.award-img {
    height: 300px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}


.award-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem 3rem 0;
}

@media (max-width: 992px) {
    .award-text {
        padding: 3rem 2rem;
    }
}

.award-text .title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 2rem;
}

.award-text .subtitle {
    font-size: 1rem;
    font-style: italic;
}

/**
# Clients Slider Section
-----------------------------------------------*/
.client-logo {
  padding: 0 15px;
}

.client-logo img {
  max-height: 68px;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/**
# Gear Section
-----------------------------------------------*/
.gear-list li {
    margin-bottom: 0.4rem;
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  #gear h5 {
    font-size: 1.1rem;
  }
  .gear-list li {
    font-size: 0.9rem;
  }
}


/**
# CTA Section
-----------------------------------------------*/
.cta {
    background: #d8e0e2;
    padding: 4rem 2rem;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/**
# Pricing Tiers Section
-----------------------------------------------*/
#pricing .card ul {
    font-size: 0.9rem;
}

#pricing .card .investment-range {
    font-weight: 600;
}

@media (min-width: 992px) {
    #pricing .col-lg-4 {
        display: flex;
    }
}

/**
# Blog Listings
-----------------------------------------------*/
article.post {
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

article.post .image-container {
    height: 250px
    overflow: hidden;
}

article.post .image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

/**
# Blog Post Content
-----------------------------------------------*/
.blog-post img {
    width: 500px;
    max-width: 100%;
    height: auto;
    display: block;
    float: left;
    margin: 0 1.5rem 1.5rem 0;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/**
# Contact Form
-----------------------------------------------*/
.form-response-container {
    background: rgba(0, 0, 0, 0.05);
}

#contact .de {
    display: none !important;
}

/**
# Footer
-----------------------------------------------*/
footer {
    font-size: 0.9rem;
    text-align: center;
    padding: 2rem;
    color: #666;
    background: #fff;
    border-top: 1px solid #ddd;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: #777;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer .nav-item a,
footer .nav-item a:visited,
footer .nav-item a:focus,
footer .nav-item a:active{
    color: #777;
    text-decoration: none;
}

footer .nav-item a:hover {
    color: #222;    
  text-decoration: underline;
}

footer .footer-logo {
    max-width: 150px;
}