@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600&display=swap');

:root {
    --rich-black: #0D1321;
    --navy: #153147;
    --chambray: #3E5C76;
    --mist: #ADB8BA;
    --almond: #EDEAE3;
    --cyen:#29D6D5;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    font-family: 'Assistant', sans-serif;
    font-size: 20px;
    line-height: 1.6;
}
u {
    color: #153147;
}

/* Header */
header {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    background: #0D1321;
    color: var(--almond);
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}


.logo img {
    width: 143px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    font-weight: normal;
    font-size: 20px;
}

.nav-links li a {
    color: var(--almond);
    text-decoration: none;
    transition: 0.3s;
}

.nav-links li a.active {
    font-weight: bold;
}

.cta-button {
   color: var(--navy);
text-decoration: none;
box-sizing: border-box;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 12px 34px;
gap: 10px;
width: auto;
height: auto;
background: linear-gradient(180deg, #EDEAE3 4.17%, #EFEDE7 42.98%, #FFFFFF 100%);
/* Grays/White */
border: 2px solid #FFFFFF;
box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.25);
border-radius: 5px;
font-size: 16px;
font-weight: bold;
}

.menu-toggle {
    display: none; /* Hide the toggle button by default */
}

 /* ----------------HERO SECTION -----------------------*/
      
       .hero {
        background: linear-gradient(180deg, #0D1321 8.4%, #13293D 72%, #153147 80.5%, #203D54 92%, #2E4B63 100%);
        display: flex;
        flex-direction: column; /* Align content in a column */
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        width: 100%;
        height: 100vh;
        padding: 50px 20px;
        overflow: hidden;
        z-index: -1;
    }
    
    /* VIDEO OVERLAY */
    .video-bg {
        position: absolute;
        width: 100%;
        height: 446px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        mix-blend-mode: color-dodge;
        opacity: 0.2;
        object-fit: cover;
    }
    
    /* Hero Content */
    .hero-content {
        max-width: 1040px;
        padding:100px;
        text-align: center;
        z-index: 2;
    }
    
    /* Headings */
    .hero-content h1 {
        font-size: clamp(28px, 3.94vw, 70px);
        font-weight: bold;
        color: var(--almond);
       margin-bottom: 20px;
    }
    
    .hero-content .subtitle {
        font-size: clamp(22px, 1.1vw, 36px);
        color: var(--mist);
        margin-bottom: 80px; /* Space below subtitle */
    }
    
    /* Animated Text */
    .slider-container {
        font-size: clamp(14px, 2vw, 24px);
        padding-bottom: 40px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    /* Fixed text */
    .static-text {
        color: var(--mist);
    }

    .animated-words {
        display: inline-block;
        position: relative;
        height: 1.2em; /* Ensures height remains fixed */
    }
    
    
    /* Hide words initially */
    .word {
        display: none;
        text-decoration: underline;
        color: var(--cyen);
        font-weight: bold;
    }
    
    /* Show active word */
    .word.show {
        display: inline-block;
    }
    
    /* Sliding animation */
    @keyframes slideUp {
        to {
            opacity: 0;
            transform: translateY(50px);
        }
        from {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Signup Button Row */
    .hero .button-row {
        display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    }
    
    /* Signup Button */
    .signup-btn-home {
        display: flex;
        width: clamp(180px, 20vw, 220px);
        height: 50px;
        background: var(--almond);
        border-radius: 5px;
        padding: 12px 44px;
        font-size: clamp(14px, 2vw, 20px);
        justify-content: center;
        align-items: center;
        color: var(--navy);
        cursor: pointer;
        transition: 0.3s ease;
    }
    

/*------------- Startup Section -------------*/


.startup {
    padding: 60px 15%;
    text-align: left;
    color: var(--navy);
    background-color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 0; 
}

.startup h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 500;
}

.cta p{
    font-size: 26px;
    margin: 80px 24px 20px 0;
}
/* Container */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}

/* Sections (US & India) */
.section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
}

/* Section Titles */
.section-title {
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Circular Flags */
.section-title img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ccc;
}

/* Center Logo */
.container .logo {
    flex: 0.5;
    display: flex;
    justify-content: center;
}

.container .logo img {
    width: 245px;
    height: 275px;
}

/* Card Styling */
.card {
    width: 412px;
    background: linear-gradient(180deg, rgba(237, 234, 227, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

/* Card Content */
.card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%; /* Prevents shifting */
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Icons - Matches Background */
.icon {
    width: 84px;
    height: 84px;
    margin-right: 20px;
    align-items: center;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 227, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%);
    background-blend-mode: multiply;
    border-radius: 8px;    
    overflow: hidden; /* Ensures no extra space */
}

/* Headings */
.heading {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    display: flex;
    align-items: center;
    color: #153147;
}

/* Card Details (Initially Hidden) */
.details {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #153147;
    display: none;
    color: #153147;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: var(--chambray);
    display: none;
}

/* Hover Effects */
.card:hover {
    padding: 24px;
    transform: scale(1.05);
}

.card:hover .details {
    display: block;
    padding: 20px 0;
}

.card:hover .divider {
    display: block;
}

.card:hover .card-content {
    flex-direction: column; /* Stack the content vertically */
    align-items: flex-start; /* Keep icon aligned left */
}

/* Smooth transition for details and divider */
.details, .divider {
    transition: all 0.3s ease-in-out;
}

.card:hover .card-content .heading {
    display: none;
}

.card:hover .heading-hover {
    display: inline-flex;
    top: 140px;
    padding: 20px 0 0 0;
}

.heading-hover {
    display: none;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    align-items: center;
    color: #153147;
}

/* Prevent Main Heading from Moving */
.startup:hover .section-title {
    position: relative;
    top: 0;
}
/*----- Global Video Section -----*/
.global-video {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 528px;
    overflow: hidden;
    
    /* Gradient Background */
    background: linear-gradient(180deg, #0D1321 8.4%, #13293D 72%, #153147 80.5%, #203D54 92%, #2E4B63 100%);
}

/* Video Overlay */
.global-video-bg {
    position: absolute;
    width: 935px;
    height: 528px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%); /* Center horizontally */
    object-fit: cover;
    mix-blend-mode: color-dodge;
    opacity: 0.7;
    
    /* Ensuring it stays inside the parent */
    max-width: 100%;
    max-height: 100%;
}



/* ----- Footer ----- */
footer {
    background: linear-gradient(180deg, #0D1321 0%, #153147 41.5%, #3E5C76 94.5%);
    color: #EDEAE3;
    padding: 40px 0;
    text-align: center;
}

/* Center content properly */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Ensures everything is centered */
    align-items: center;
    max-width: 1280px; /* Match content width */
    margin: 0 auto;
    padding: 0 30px 20px 30px;
    gap: 40px;
}
/* ----- Footer Columns ----- */
.footer-column {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    margin-bottom: 20px;
    text-align: left;
}

.top-button{
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ----- Center Logo Properly ----- */
.logo-column {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.logo-column img {
    width: 209px;
    height: 51px;
}

/* ----- Footer Headings ----- */
.footer-column h3 {
    margin-bottom: 10px;
    font-size: 14px;
    color: #EDEAE3;
}

/* ----- Footer Text ----- */
.footer-column p a {
    font-size: 14px;
    margin: 5px 0;
    color: #EDEAE3;
    text-decoration: none;
}

.footer-column p{
    font-size: 14px;
    margin: 5px 0;
  
}

/* ----- Footer Links ----- */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: #EDEAE3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

/* ----- Social Icons ----- */
.social-icons {
    display: flex;
    gap: 10px;
    padding: 10px 0 0;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 38px;
    height: 38px;
}

/* ----- Back to Top Button - Centered in Its Column ----- */
img.back-to-top {
    justify-content: center;
    align-items: center;
}

.footer-column.back-to-top-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* ----- Footer Divider - Matches Content Width ----- */
.footer-divider {
    width: 80%; /* Matches content width instead of full width */
    height: 1px;
    background: var(--almond);
    margin: 10px auto; /* Centers it properly */
    transition: opacity 0.3s ease-in-out;
}

/* ----- Copyright Text ----- */
.copyright {
    color: #ffffff;
    font-size: 12px;
    text-align: center;
}

/* --------- About Page --------- */
/* Mask group */
.vision-video-bg{
position: absolute;
width: 1440px;
height: 446px;
left: calc(50% - 1440px/2);
bottom: 0;
object-fit: cover;
mix-blend-mode: color-dodge;
opacity: 0.2;
}

/* ----- About Hero Section ----- */
.about-hero {
    background: linear-gradient(180deg, #0D1321 8.4%, #13293D 72%, #153147 80.5%, #203D54 92%, #2E4B63 100%);
    color: var(--almond);
    padding: 40px 15%;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: -1;
}

.about-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 100px;
}

.about-hero p {
    padding: 10px 10px;
    margin-bottom: 130px;
    line-height: 1.6;
}

/*-----What is SABA---*/
.whtsaba {
    padding: 60px 15%;
    text-align: left;
    color: var(--navy);
    background: #ffffff;
}

.whtsaba h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 500;
}

.whtsaba p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.whtsaba .button-row{
        display: flex;
        justify-content: center;
        margin: 60px 0 0 0;
    }

.signup-btn{
    display: flex;
    width: 200px;
    height: 50px;
    background: var(--navy);
    border-radius: 5px;
    padding: 12px 44px;
    font-size: 18px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

/* ----- Founder Section ----- */
.founder {
    padding: 60px 15%;
    text-align: left;
    color: var(--navy);
    background: rgba(237, 234, 227, 0.5);
}

.founder h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 500;
}

.founder p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.signature {
    margin-top: 20px;
    font-size: 20px;
}
/* --------- Podcast Section --------- */

/* ----- Podcast Hero Section ----- */
.podcast-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 600px; /* Full viewport height */
    overflow: hidden; /* Prevents scrolling issues */
    z-index: -1;
    /* Gradient Background */
    background: linear-gradient(180deg, #0D1321 8.4%, #13293D 72%, #153147 80.5%, #203D54 92%, #2E4B63 100%);
}

.podcast-hero img {
    max-width: 100%;
    height: auto;
}

/* ----- Podcast Content Section ----- */
.yt-link {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between icon and text */
    font-size: 24px;
    color: var(--navy); /* YouTube red color */
    font-weight: bold;
    text-decoration: underline;
}

.yt-link img {
    width: 40px; /* Adjust icon size */
    height: 40px;
}
.podcast {
    padding: 60px 15%;
    text-align: left;
    color: var(--navy);
}

.podcast h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
}

.podcast h2 {
    text-align: left;
    font-weight: bold;
}

.podcast p {
    font-size: 20px;
    line-height: 1.6;
}

.podcast u {
    color: #153147;
}
/* --------- Form Section --------- */

/* ----- Form Text Styling ----- */
.form u {
    color: #153147;
}

/* ----- Form Container ----- */
.form-container {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
}

/* ----- Form Group ----- */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

/* ----- Form Row ----- */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

/* ----- Label Styling ----- */
label {
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
}

/* ----- Input, Select, Textarea Styling ----- */
input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0 !important;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    flex: 1;
}

/* Wrapper for Select */
.select-wrapper {
    position: relative;
    width: 100%;
}

/* Style the Select Dropdown */
.select-wrapper select {
    width: 100%;
    padding: 10px;
    padding-right: 40px; /* Space for the arrow */
    font-size: 16px;
    border: 1px solid #ccc;
    -webkit-appearance: none; /* Remove default styling */
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    background-image: url('/assets/Icon.svg'); /* Adjust path as needed */
    background-repeat: no-repeat;
    background-position: right 15px center; /* Adjust arrow position */
    background-size: 16px; /* Adjust arrow size */
    cursor: pointer;
}



/* ----- Button Row ----- */
.button-row {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 60px;
    gap: 20px;
    width: 100%;
}

/* ----- Button Styling ----- */
button {
    display: block;
    width: 100%;
    padding: 12px 34px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

/* ----- Cancel Button ----- */
.cancel-btn {
    background: white;
    border: 1px solid #000;
}

/* ----- Submit Button ----- */
.submit-btn {
    background: #13293D;
    color: white;
}

/* ----- Button Hover Effects ----- */
.cancel-btn:hover {
    background: white;
}

.submit-btn:hover {
    background: #0f1e2b;
}
/* --------- Form Section --------- */
.form {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 50px 242px;
    text-align: left;
    color: var(--navy);
}

/* Paragraph inside Form */
.form .para {
    width: 100%;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 60px;
}



/* --------- Contact Hero Section --------- */
.contact-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 174px 0;
    text-align: center;
    height: 480px;
    color: var(--almond);
    background: linear-gradient(180deg, #0D1321 8.4%, #13293D 72%, #153147 80.5%, #203D54 92%, #2E4B63 100%);
}

/* Contact Hero Title */
.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 40px;
    margin-top: 100px;
}

/* Contact Hero Paragraph */
.contact-hero p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 120px;
    font-weight: lighter;
}


/***-----------How It works-------***/

.wrapper {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    position: relative;
}
.slider__section {
    position: relative;
    overflow: hidden;
}
.custom-swiper {
    padding: 20px 0;
}
.custom-wrapper {
    display: flex;
    align-items: center;
}
.custom-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.custom-card {
    width: 100%;
    max-width: 522px;
    min-height: 528px;
    background: linear-gradient(180deg, #EDEAE3 0%, #FFFFFF 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 30px 30px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.custom-header {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    width: 100%;
}

.custom-step {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: bold;
    color: var(--navy);
}

.custom-title {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: bold;
}
.custom-divider {
    width: 100%;
    height: 2px;
    background-color: var(--navy);
    margin-bottom: 32px;
    border-radius: 2px;
}
.custom-desc {
    font-size: 20px;
    line-height: 1.5;
    color: var(--navy);
    text-align: left;
    flex-grow: 1;
    overflow: hidden;
}

.custom-desc u {
    color: #153147;
}
.custom-desc br {
    content: "";
    margin-bottom: 15px; /* Adds space after a line break */
    display: block; /* Ensures the spacing is applied */
}



.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 33px;
    height: 47px;
    font-size: 24px;
    font-weight: bold;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.swiper-button-prev {
    left: -25px;
}

.swiper-button-next {
    right: -25px;
}

.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
    color:var(--mist);
}

@media (max-width: 768px) {
    .swiper-button-prev {
        left: -5px;
    }
    .swiper-button-next {
        right: -5px;
    }
    .swiper-button-prev, .swiper-button-next {
        width: 10px;
        height: 20px;
    }
}


.hiw {
    padding: 60px 15%;
    text-align: left;
    color: var(--navy);
    background: rgba(237, 234, 227, 0.5);
}

.hiw h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 500;
}

.hiw p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}