@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");



/* General Styles */

.section-head {
    font-weight: 600;
    font-size: 60px;
    color: #fff !important;
    text-align: center !important;
}

.bg-primary-navy {
    background-color: #0e253d;
}

.bg-primary-orange {
    background-color: #ee7f1a;
}

.bg-primary-gradient {
    /* background-color: #ee7f1a; */
    background: linear-gradient(to right, #0e253d, #ee7f1a);

}

.para1 {
    color: #fff !important;
    font-weight: 500;
    font-size: 20px;
}



/* Our Process */
.process-card p {
    font-size: 20px;
    font-weight: 500;
    color: #fff !important;
}

.wrap-process-card {
    margin-bottom: 40px !important;
}


/* Home Cta Section */
.cta_section h4, .works-section p {
    color: #fff !important;
    font-weight: 500;
}

.works-section .button {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}



/* The Science of Section */
@media(max-width: 1400px) {
    .icon-card {
        min-height: 350px;
    }
}

.icon-card {
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.35s ease;
    background: #ffffff;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    min-height: 350px;
}

.icon-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: radial-gradient(circle at top left, #0e253d, #ee7f1a); */
    color: #fff;
    font-size: 30px;
    /* border: 2px solid #ee7f1a; */
}

.icon-card h5 {
    font-weight: 600;
    margin-top: 15px;
    color: #0e253d;
}

.icon-card p {
    color: #000 !important;
    font-size: 16px;
    opacity: 0.75;
    font-weight: 400;
}

/* Contact Icons */
.contact-icons-card {
    position: fixed;
    right: 25px;
    top: 270px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-icon {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background-color: #ee7f1a !important;
    transform: scale(1.1);
}

@media (max-width: 1199px) {
    .contact-icons-card {
        padding: 12px 8px;
        gap: 10px;
    }
    .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .contact-icons-card {
        right: 15px;
        top: 200px;
        padding: 10px 6px;
        gap: 8px;
        border-radius: 25px;
    }
    .contact-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-icons-card {
        right: 10px;
        top: 180px;
        padding: 8px 5px;
        gap: 6px;
        border-radius: 20px;
    }
    .contact-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0px !important;
}




/* Banner Section */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-section video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 55vw;
    /* initially small */
    height: 60vh;
    border-radius: 10px;
    /* initially small */
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    z-index: -1;
    transition: width 0.2s linear, height 0.2s linear;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    /* slight dark overlay */
    pointer-events: none;
    z-index: 2;
    /* above video, below text */
}

/* TEXT stays centered */
.hero-overlay-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    z-index: 10;
    color: #fff;
    text-align: center;
    /* pointer-events: none; */
    transition: opacity 0.2s linear;
}

.hero-overlay-content h1 {
    font-weight: 600;
    font-size: 60px !important;
    color: #7fffd4;
}




.banner-cta-section {
    margin-top: 30px;
}

.banner-cta-section .button {
    cursor: pointer;
}

@media(max-width: 1400px) {
    .banner-cta-section .button {
        padding: 0px 20px !important;
    }
}

@media(max-width: 1300px) {
    .banner-cta-section .button {
        padding: 0px 12px !important;
    }

    .full-nav-links a {
        font-size: 16px !important;
        line-height: 35px !important;
    }
}




/* Header Logo Styling */
.main-nav {
    padding: 20px 40px;
    position: relative;
    z-index: 1000;
}

.logo-container {
    position: fixed;
    top: 32px;
    z-index: 5;
    width: 160px;
    overflow: hidden;
    cursor: pointer;
}

.logo-container:hover {
    transform: scale(1.05);
}

.header-logo {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Adjust menu icon position */
.wrap-nav {
    display: flex !important;
    vertical-align: middle;
}


@media(max-width: 1400px) {
    .hero-overlay-content h1 {
        font-size: 45px !important;
    }
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-container {
        max-width: 120px;
    }

    .main-nav {
        padding: 15px 20px;
    }
}

/* Header H1 Styling */
.header-full .head-img h1 {
    font-size: 40px !important;
    line-height: 1.2 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    text-transform: capitalize;
    color: #fff !important;
}

/* Video Hero Container */
.head-img.video-hero {
    --scroll-progress: 0;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    overflow: visible;
    box-sizing: border-box;
    transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
    z-index: 2;
}

/* Card container for video */
.video-card-container {
    position: absolute;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
    transform-origin: center center;
    will-change: transform, width, height, border-radius, box-shadow;
    z-index: 1;
}

/* Smooth transition for scrolling state */
.head-img.video-hero.scrolling .video-card-container {
    width: calc(90% + (10% * var(--scroll-progress, 0)));
    max-width: calc(1200px + (100% - 1200px) * var(--scroll-progress, 0));
    height: calc(80vh + (20vh * var(--scroll-progress, 0)));
    border-radius: calc(20px * (1 - var(--scroll-progress, 0)));
    box-shadow: 0 calc(10px * (1 - var(--scroll-progress, 0))) calc(30px * (1 - var(--scroll-progress, 0))) rgba(0, 0, 0, calc(0.2 * (1 - var(--scroll-progress, 0))));
}

/* When fully expanded */
.head-img.video-hero.fully-expanded .video-card-container,
.head-img.video-hero.scrolled .video-card-container {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
    z-index: 10;
}

/* Expanded state when scrolled */
.head-img.video-hero.scrolled .video-card-container {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
    margin: 0;
}

/* Video styles */
.head-img.video-hero .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) !important;
    will-change: transform;
}

/* Content wrapper */
.wrap-head-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    color: #fff;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
    pointer-events: none;
    opacity: 1;
    transform: translateY(0);
}

/* Adjust content during scroll */
.head-img.video-hero.scrolling .wrap-head-content {
    opacity: calc(1 - (var(--scroll-progress, 0) * 0.5));
    transform: translateY(calc(20px * var(--scroll-progress, 0)));
}

/* When fully scrolled, hide the content */
.head-img.video-hero.fully-expanded .wrap-head-content,
.head-img.video-hero.scrolled .wrap-head-content {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* Center content in card mode */
.head-img.video-hero:not(.scrolled) .wrap-head-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
}

/* Make buttons clickable */
.wrap-head-content .button {
    pointer-events: auto;
}

/* Debug styles - can be removed after testing */
.head-img.video-hero::after {
    content: '';
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 9999;
    pointer-events: none;
    display: none;
    /* Disable by default, enable when debugging */
}

.head-img.video-hero.scrolled::after {
    content: 'State: Scrolled' !important;
    display: block !important;
}

.head-img.video-hero.fully-expanded::after {
    content: 'State: Fully Expanded' !important;
    display: block !important;
    background: #4CAF50 !important;
}

.head-img.video-hero .bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

/* Content wrapper above the video */
.head-img.video-hero .wrap-head-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    text-align: center;
    color: #fff;
    /* adjust to match your styles */
}

@media (max-width: 1200px) {
    .header-full .head-img h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 992px) {
    .header-full .head-img h1 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 768px) {
    .header-full .head-img h1 {
        font-size: 1.5rem !important;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .tagline-marquee-2 {
        font-size: 80px !important;
    }

    .tagline-marquee-2 .img-tagline {
        width: 100px !important;
        height: 100px !important;
    }

    h1 {
        font-size: 40px !important;
    }
}

@media (max-width: 576px) {
    .header-full .head-img h1 {
        font-size: 1.3rem !important;
    }
}

/* Highlight Quote Styling */
/* .highlight-quote {
    margin: 30px 0;
    padding: 20px 0;
    position: relative;
}

.highlight-quote blockquote {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 20px 30px;
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    border-radius: 10px;
    border-left: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-quote blockquote:before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 15px;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.highlight-quote blockquote:after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    bottom: -30px;
    right: 15px;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
} */

/* BLOCKQUOTE STYLE (Similar to your given sample) */
/* .big-quote-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
} */

/* LEFT BIG QUOTE ICON */
/* .big-quote-wrapper .quote-icon {
    font-size: 80px;
    font-weight: 800;
    color: #27b1be;
    line-height: 0.5;
    margin-top: 10px;
    font-family: Georgia, serif;
} */

/* MAIN QUOTE TEXT */
/* .big-quote-wrapper .big-quote-text {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    color: #7fffd4;
} */

/* RESPONSIVE */
/* @media (max-width: 768px) {
    .big-quote-wrapper .quote-icon {
        font-size: 60px;
    }

    .big-quote-wrapper .big-quote-text {
        font-size: 22px;
    }
} */

/* @media (max-width: 480px) {
    .big-quote-wrapper {
        gap: 10px;
    }

    .big-quote-wrapper .quote-icon {
        font-size: 50px;
    }

    .big-quote-wrapper .big-quote-text {
        font-size: 18px;
    }
} */


/* Quote block */
.big-quote-wrapper {
  position: relative;       
  display: block;
  padding: 8px 0 0 0;     
  margin: 70px 0;
  box-sizing: border-box;
  background-image: url('../img/icon/quote.png');
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  min-height: 200px;
}


.big-quote-wrapper .quote-icon {
  position: absolute;
  top: -6px;                 
  left: 0;
  font-size: 64px;              
  line-height: 1;
  font-weight: 800;
  color: #27b1be;             
  display: block;
  pointer-events: none;
  transform: translateY(0);   
}


.big-quote-wrapper .big-quote-content {
  margin-left: 0;        
  padding-left: 70px;       
  box-sizing: border-box;
}

/* Main quote text */
.big-quote-wrapper .big-quote-text {
  font-size: 45px;            
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  color: #7fffd4;            
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;          
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .big-quote-wrapper .quote-icon {
    font-size: 56px;
    top: -2px;
  }
  .big-quote-wrapper .big-quote-text {
    font-size: 46px;
  }
  .big-quote-wrapper .big-quote-content {
    padding-left: 64px;
  }
}

@media (max-width: 480px) {
  .big-quote-wrapper .quote-icon {
    font-size: 44px;
    top: 0;
    left: 6px;
  }
  .big-quote-wrapper .big-quote-content {
    padding-left: 56px;
  }
  .big-quote-wrapper .big-quote-text {
    font-size: 24px;
    line-height: 1.1;
  }
}




/* Fade-in Animation */
.fade-in-scroll {
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .highlight-quote blockquote {
        font-size: 1.2rem;
        padding: 15px 20px;
    }

    .highlight-quote blockquote:before,
    .highlight-quote blockquote:after {
        font-size: 3rem;
    }
}

/* Dual Button Container Styling */
.dual-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.dual-button-container .button {
    flex: 0 1 auto;
    /* min-width: 150px; */
}



/* @media (max-width: 768px) {
  .dual-button-container {
    flex-direction: column;
    gap: 15px;
  }

  .dual-button-container .button {
    width: 100%;
    max-width: 250px;
  }
} */

/* Diagnostics Blend Styles */
.diagnostics-blend {
    margin: 30px 0;
}

.diagnostics-blend h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.diagnostics-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.diagnostics-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

.diagnostics-list li:before {
    content: "•";
    color: #d4af37;
    /* Gold color for bullets */
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

@media (max-width: 768px) {
    .diagnostics-list li {
        font-size: 1rem;
        padding-left: 20px;
    }

    .diagnostics-blend h4 {
        font-size: 1.2rem;
    }
}


/* 19.1 FOUNDERS SECTION */

@media(max-width: 1024px) {
    .founder-flex-section {
        flex-wrap: wrap !important;
    }
}

h1 {
    font-size: 80px !important;
}

.founder-section {
    padding: 80px 0;
    background-color: #0e253d;
}

.founder-section .s-title {
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.founder-card {
    border-radius: 10px;
    overflow: hidden;
    margin: 45px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media(min-width: 1025px) {
    .founder-flex-section {
        flex-wrap: nowrap !important;
    }
}

@media(max-width: 992px) {
    .para1 {
        font-size: 14px;
    }

    .hero-overlay-content h1 {
        font-size: 35px ! important;
    }

    h1 {
        font-size: 60px !important;
    }

    .founder-image {
        height: 280px !important;
    }

    .founder-card {
        margin: 20px;
    }

    .founder-title {
        font-size: 12px;
        line-height: 12px;
    }

    .section-head {
        font-size: 40px;
    }

    .founder-flex-section {
        flex-wrap: nowrap !important;
    }

    .button-pos {
        font-size: 12px !important;
    }
}

@media (max-width: 576px) {
    .hero-overlay-content h1 {
        font-size: 20px ! important;
    }

    .para1 {
        line-height: 15px !important;
    }

    .founder-image {
        height: 400px !important;
    }

    .founder-card {
        margin: 0px;
    }

    .founder-flex-section {
        flex-wrap: wrap !important;
    }

    .founder-content h4 {
        text-align: center;
    }

    .section-head {
        font-size: 25px;
    }

    .process-card p {
        font-size: 14px;
    }

    .process-card h4, .cta_section h4 {
        font-size: 25px !important;
    }

    .process-card {
        margin-bottom: 15px;
    }

    .banner-cta-section {
        /* flex-direction: column; */
    }

    

    .tagline-marquee-2 .img-tagline {
        width: 120px !important;
        height: 120px !important;
    }

    .tagline-marquee-1 {
        font-size: 40px;
    }

    .full-nav-links {
        /* align-items: baseline !important; */
    }

    .full-nav .section-scrollbar-demo-menu {
        right: 0% !important;
    }
}





.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.founder-image {
    height: 650px;
    overflow: hidden;
    border-radius: 20px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-content h4 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-title {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.founder-location {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-location:before {
    font-weight: 900;
    margin-right: 8px;
    font-size: 12px;
}

.founder-social {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a2a;
    color: #fff;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.founder-button {
    display: inline-block;
    margin-top: auto;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
}

.founder-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.tagline-marquee-2 {
    font-size: 200px ;
}

@media(max-width: 1600px) {
    .full-nav-links a {
        font-size: 25px;
        line-height: 50px;
    }

    .tagline-marquee-2 {
        font-size: 150px ;
        ;
    }

    .mission-about{
        font-size: 30px !important;
    }

    /* .tagline-marquee-2 .img-tagline {
        width: 160px !important;
        height: 160px !important;
    } */
}


@media(max-width: 1440px) {
    .full-nav-links a {
        font-size: 20px;
        line-height: 45px;
    }
}

.works-section .stack-section a, .works-section .stack-section img {
    cursor: none !important;
}

.tagline-marquee-2 {
    line-height: 200px !important;
}




/* Footer Section */

.footer {
    background-color: #0f0f0f;
    /* Dark luxury background */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.footer canvas {
    /* display: none !important; */
    left: 40% !important;
}

.footer-logo {
    width: 160px;
    max-width: 100%;
}

.footer-title {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-text {
    opacity: 0.7;
    line-height: 1.6;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: #ffffff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}