﻿* {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.section-left-bg {
    position: absolute;
    top: 0;
    left: -20px;
    width: 150px;
    z-index: 0;
}

.section-right-bg {
    position: absolute;
    top: 0;
    right: -80px;
    width: 300px;
    z-index: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.section-main-title {
    color: #E7E7E7;
    font-size: 48px;
    text-shadow: 0px 0px 0px rgba(0,0,0,0.6), 1px 1px 1px rgba(255,255,255,0.4);
    margin: 0;
}

.section-sub-title {
    font-size: 48px;
    font-weight: 800;
    margin: 10px 0;
}

.section-number {
    font-size: 48px;
    font-weight: 700;
    color: #E7E7E7;
    text-shadow: 0px 0px 0px rgba(0,0,0,0.6), 1px 1px 1px rgba(255,255,255,0.4);
    text-align: right;
    /* display: none; */
}

.section-logo-box {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.section-logo-img {
    height: 36px;
    margin-right: 8px;
}

.section-logo-text {
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
}

.logo-section-img {
    height: 16px;
}

.logo-text-img {
    height: 20px;
}

.footer-logo .logo-text-img {
    height: 20px
}

@media (max-width:800px) {
    .section-number {
        display: none;
    }

    .section-logo-box {
        display: none;
    }
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    height: 80px;
    z-index: 999;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.container {
/*    max-width: 1300px;*/
    margin: 0 auto;
    width: 100%;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media(max-width:1112px){
    .container{
        padding: 0 20px;
    }
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 36px;
    margin-right: 8px;
}

.brand-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Links */
.navbar-links {
    display: flex;
    gap: 32px;
}

    .navbar-links a {
        font-size: 14px;
        color: #1e1e1e;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease-in-out;
    }

        .navbar-links a:hover {
            color: #002780;
        }

/* Buttons */
.btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

    .btn.demo {
        background-color: #682ba1;
        color: #fff;
        margin-right: 12px;
    }

    .btn.demo a{
        text-decoration: none;
        color: white;
    }

    .btn.login {
        background-color: #002780;
        color: #fff;
    }

/* Mobile Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #1a1a1a;
    cursor: pointer;
}

.drawer {
    position: fixed;
    top: 80px;
    right: 0;
    width: 260px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

    .drawer.open {
        transform: translateX(0);
    }

.drawer-menu {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
}

    .drawer-menu a {
        font-size: 16px;
        color: #1a1a1a;
        text-decoration: none;
    }

@media (max-width: 820px) {
    .navbar-links,
    #desktopButtons {
        display: none;
    }

    .btn {
        width: 200px;
    }

    .menu-toggle {
        display: block;
    }
}

.hero {
    display: flex;
    padding: 0px 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-image: url("../img/HeroBG.png");
    background-size: cover;
    background-position: center;
    margin: 100px 0px;
}

@media (max-width:1200px) {
    .hero {
        padding: 1px 20px;
       margin-top: 100px;
    }
}



@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0px 100px;
    }
}


.hero-left {
    z-index: 2;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.hero-brand {
    font-size: 36px;
    font-weight: bold;
    color: #002780;
    margin: 8px 0;
}

.hero-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0;
}

.hero-tagline {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-feature {
    border-left: 5px solid red;
    padding-left: 12px;
    font-size: 16px;
}

.intro {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.intro-icon {
    width: 48px;
    height: 48px;
}

.intro-text {
    font-weight: bold;
    font-size: 12px;
    color: #2F2F2F;
}

.intro-btn {
    background-color: #002780;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

.carousel-box {
    background: linear-gradient(90deg, #0D0761, #043B7E, #114798);
    border-radius: 24px;
    padding: 20px;
    max-width: 500px;
   
    color: white;
}

   .carousel-box .carousel > div {
    display: none;
}

/* Only show items after Slick initializes */
.carousel.slick-initialized > div {
    display: block;
}

.slick-dots li button:before {
    color: skyblue !important;
    opacity: 0.5;
}
.slick-dots li.slick-active button:before {
    color: skyblue !important;
    opacity: 1;
}


.carousel-images{
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    height: 40px;
}

@media(max-width:520px) {
    .carousel-box {
        max-width: 300px;
    }

    .hero-tagline {
        max-width: 400px;
    }
}

.carousel h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.hero-right {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 0 auto;
    overflow: hidden;
    flex-shrink: 1;
    overflow: visible;
}

.circle {
    position: absolute;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 81, 242, 0.4);
}

.circle1 {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation-delay: 0s;
}

.circle2 {
    width: 90%;
    height: 90%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation-delay: 1s;
}

.circle3 {
    width: 80%;
    height: 80%;
    background: linear-gradient(10deg, #0D0761 50%, #043B7E 100%, #114798);
    animation-delay: 2s;
}

@keyframes pulseRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.03);
    }
}

@media (max-width:1200px) {
    .hero-right {
        display: none;
    }
}

.hero-social-icons {
    position: fixed;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-end;
}

.hero-social-icons a{
    text-decoration: none;
}

.hero-icon {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.3s ease;
    padding-left: 12px;
    color: #fff;
}

    .hero-icon i {
        font-size: 20px;
        color: white;
        z-index: 1;
    }

.hero-icon-label {
    margin-left: 12px;
    color: white;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* On hover: expand only the hovered icon */
.hero-icon:hover {
    width: 115px;
}

    .hero-icon:hover .hero-icon-label {
        opacity: 1;
    }

/* Platform-specific background colors */
.linkedin {
    background-color: #0077B5;
}

.facebook {
    background-color: #1877F2;
}

.twitter {
    background-color: #1DA1F2;
}

.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F56040);
}

@media(max-width:570px) {
    .hero-social-icons {
        display: none;
    }
}

.features-section {
    position: relative;
    padding: 0rem 5rem;
    background: white;
    overflow: hidden;
    padding-top: 0;
    margin-top: 0;
}

.features-container {
    margin: 0 auto;
    position: relative;
    z-index: 0;
    background-image: url("../img/rightbg.png");
    background-size: inherit;
    background-position: bottom;
    background-repeat: no-repeat;
}

@media(max-width:768px) {
    .features-section {
        padding: 80px 20px;
    }
}

@media(max-width: 990px) {
    .features-container {
        background-image: none;
    }
}

.feature-description {
    max-width: 750px;
    font-size: 14px;
    color: #474242;
    padding-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 32px;
}

@media(max-width:2250px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(700px, 1fr));
    }
}

@media(max-width:1590px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(650px, 1fr));
    }
}

@media(max-width:1390px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    }
}

@media(max-width:1191px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

.feature-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    border-bottom: 2px solid #0A045F;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.feature-img {
    width: 200px;
    height: 150px;
    margin-right: 16px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    max-width: 200px;
}

.feature-card-description {
    font-size: 14px;
    margin: 8px 0;
    color: #777;
}

.feature-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-explore-label {
    font-size: 24px;
    font-weight: bold;
    color: #E7E7E7;
    transition: transform 0.3s ease;
    cursor: pointer;
    /* display: none; */
}
.feature-explore-label:hover {
    transform: scale(1.2);
    
}

.feature-know-more-btn {
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    background: transparent;
    border: 1px solid #1d1d1d;
    cursor: default;
}


@media (max-width:520px) {
    .feature-img {
        width: 100px !important;
    }

    .feature-explore-label {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.about-us {
    position: relative;
    padding: 4rem 5rem;
    background: white;
    overflow: hidden;
}

@media(max-width:768px) {
    .about-us {
        padding: 80px 20px;
    }
}

.how-started {
    margin-top: 100px;
}

.stats-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: inset 0px 4px 8px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    padding: 40px;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 200px;
}

@media(max-width:768px) {
    .steps-container {
        align-items: center
    }
}

.stat-icon {
    width: 74px;
    height: 74px;
    background-color: #0b0c2a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .stat-icon img {
        width: 38px;
        height: 38px;
    }

.stat-info h3 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
    background: linear-gradient(90deg, #0D0761, #043B7E, #114798);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.stat-info p {
    margin: 4px 0 0;
    font-size: 1rem;
    color: #333;
}

.how-started h2 {
    color: #00237d;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.how-started p {
    color: #222;
    font-size: 16px;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

/* Left Box */
.step-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px 50px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.step-title {
    position: relative;
    top: -30px;
    right: -90px;
    background: #002780;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    display: inline-block;
    margin-bottom: 20px;
}

@media(max-width: 1280px) {
    .step-title {
        right: -65px;
    }
}

@media(max-width: 948px) {
    .step-title {
        right: -90px;
    }
}

@media(max-width: 768px) {
    .step-title {
        right: -65px;
    }
}

.step-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-box li {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 3px solid #eee;
    cursor: pointer;
}
    .step-box li:hover {
        color: #682ba1;
    }
    .step-box li.active {
        color: #00237d;
        font-weight: 700;
        border-bottom: 5px solid #00237d;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .second-line{
        margin-left: 20px;
    }

/* Illustration - bottom left */
.girl-left {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 70px;
    z-index: 1;
}

/* Right content */
/* .right-outer-container{
  box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.1);
  width: 70%;
} */
.step-detail-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    flex: 2;
    min-width: 320px;
    box-shadow: inset 0px 4px 8px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Top right illustration */
.girl-top-right {
    position: absolute;
    top: -37px;
    right: 51px;
    width: 70px;
    z-index: 2;
}

/* Bottom right illustration */
.girl-bottom-right {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70px;
    z-index: 1;
}

/* Card inside detail box */
.about-card {
    background-color: #ffff;
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 30px;*/
    height: 300px;
/*    flex-wrap: wrap;*/
    padding: 40px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    flex-direction: column;
}

    .about-card.row-layout {
        flex-direction: row; 
        align-items: center;
    }

    @media(max-width:980px){
        .about-card.row-layout {
            flex-direction: column; 
        }
    }

.about-card-content {
    flex: 1;
}

    .about-card-content h4 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
       
    }

    .about-card-content p {
        font-size: 14px;
        color: #444;
        margin-bottom: 20px;
        max-width: 400px;
    }

    .about-card-content button {
        background: #002780;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
    }
.about-card {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 10px
}

.about-card-image img.large-image {
    width: 64%;
    position: relative;
    left: -150px;
}

@media(max-width: 1469px){
    .about-card-image img.large-image {
        
        left: 0px;
    }
}
@media(max-width: 1400px) {
    .about-card-image img.large-image {
        display:none;
    }
}

.desc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.desc-list li{
    margin-bottom: 10px;
}

.about-card-image {
    position: relative;
    height: 200%;
/*    overflow: hidden;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    top: -20px;
    right: -100px;
}

@media(max-width: 1926px){
    .about-card-image{
        height: 180%;
        right: -80px;
    }
}
@media(max-width: 1856px) {
    .about-card-image {
        height: 150%;
    }
}

@media(max-width: 1751px) {
    .about-card-image {
        height: 145%;
        right: -85px;
    }
}

    .about-card-image img {
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }

.bullet-point {
    margin-bottom: 10px;
}




@media (max-width: 1460px) {


    .about-card-image {
        overflow: unset;
    }
}

@media (max-width: 750px) {


    .about-card-image {
        display: none;
    }
    .about-card{
        height: auto;
    }
}





/* Responsive content max width */


@media (max-width: 1440px) {
   

    .about-card-content p {
        max-width: 260px;
    }
}

@media (max-width: 1200px) {
    

    .about-card-content p {
        max-width: 230px;
    }
}

@media (max-width: 992px) {
    .about-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-card-image {
        width: 100%;
        justify-content: center;
    }

        .about-card-image img {
           
            transform-origin: center;
            width: 100%;
            height: auto;
        }

    .about-card-content p {
        max-width: 100%;
        text-align: center;
    }
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }

    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .girl-left,
    .girl-top-right,
    .girl-bottom-right {
        display: none;
    }
}



@media (max-width:768px) {
    .about-card-image img {
        display: none;
    }
}

.clients {
    position: relative;
    text-align: center;
    margin: 80px 0;
    font-size: 20px;
    font-weight: 600;
    z-index: 1; 
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

    .clients::before {
        content: "";
        position: absolute;
        top: -100px; 
        bottom: -100px; 
        left: -100px;
        right: -100px;
        background-image: url("../img/HeroBG.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1; 
    }
    .client-image{
        height: 120px !important;
    }
.client-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 20px;
    flex-wrap: wrap;
}

    .client-logos img {
        height: 100px;
    }

    .dice-image{
        border-radius: 50%;
        background-color: #fff;
    }

.pricing-shadow-container {
    box-shadow: inset 0px 4px 8px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 50px;
}

.pricing-section {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 30px 20px;
    width: 330px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.pricing-icon {
    width: 40px;
    margin-bottom: 20px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 22px;
    color: #002780;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-bold {
    font-weight: 800;
    font-size: 24px;
}

.pricing-offer {
    color: #219B69;
    font-size: 16px;
    margin-bottom: 20px;
}

.pricing-features {
    margin-bottom: 20px;
    line-height: 2;
}

    .pricing-features p {
        font-size: 14px;
        margin: 10px 0;
        display: flex;
        align-items: center;
    }

.dot {
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.features-btn {
    width: 100%;
    /* height: 40px; */
    padding: 10px;
    text-align: center;
    border: 1px solid #000;
    background: transparent;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.buy-btn {
    width: 100%;
    /* height: 40px; */
    padding: 12px;
    background: #002780;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.contact-btn {
    background: #002780;
}
/*
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
}*/

.join-us {
    position: relative;
    padding: 4rem 5rem;
    background: white;
    font-family: 'Helvetica Neue', sans-serif;
    overflow: hidden;
}

@media(max-width:768px) {
    .join-us {
        padding: 80px 20px;
    }
}

.bg-left, .bg-right {
    position: absolute;
    z-index: 0;
    width: 150px;
    height: auto;
}

.bg-left {
    top: 0;
    left: -120px;
}

.bg-right {
    top: 0;
    right: -200px;
    width: 300px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-title {
    font-size: 48px;
    font-weight: 600;
    color: #E7E7E7;
    text-shadow: 0px 0px 0px rgba(0,0,0,0.6), 1px 1px 1px rgba(255,255,255,0.4);
    margin-bottom: 8px;
}

.page-number {
    font-size: 48px;
    font-weight: 600;
    color: #E7E7E7;
    text-shadow: 0px 0px 0px rgba(0,0,0,0.6), 1px 1px 1px rgba(255,255,255,0.4);
    display: none;
}

@media(min-width: 768px) {
    .page-number {
        display: block;
    }
}

.sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.impact-title {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}

.branding {
    display: none;
    align-items: center;
}

    .branding img {
        height: 36px;
        margin-right: 8px;
    }

.brand-name {
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
}

@media(min-width: 768px) {
    .branding {
        display: flex;
    }
}

.tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.tab {
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    background: none;
    border: none;
    cursor: pointer;
}

    .tab.active {
        color: #000;
        font-weight: 600;
        border-bottom: 2px solid #000;
    }

.description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.know-more-btn {
    background-color: #002780;
    color: white;
    padding: 10px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 40px;
}

    .know-more-btn:hover {
        background-color: #001F70;
    }

.video-section {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: auto;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

#contact-us-section {
    background-color: #06070D;
    color: #fff;
    padding: 60px 20px;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 16px;
    width: 100%;
    box-sizing: border-box;
}

.form-wrapper {
    max-width: 600px;
    width: 100%;
}

    .form-wrapper h1 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 32px;
    }

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group.half {
    flex: 1 1 48%;
}

@media (max-width: 768px) {
    .form-group.half {
        flex: 1 1 100%;
    }
}


.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        border: 1px solid #ccc;
        border-radius: 6px;
        background-color: #f3f3f3;
        color: #000;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-group textarea {
        resize: vertical;
    }

.button-contact {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.submit button {
    background-color: #002780;
    color: #fff;
    padding: 10px 30px;
    font-weight: 700;
    border: none;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

    .submit button:hover {
        background-color: #003bb3;
    }

/* ✅ Responsive Adjustments */
@media screen and (max-width: 768px) {
    .form-wrapper h1 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 12px;
    }

    .submit button {
        font-size: 13px;
        padding: 10px 24px;
    }
}

@media screen and (max-width: 480px) {
    .contact-container {
        padding: 24px 12px;
    }

    .form-wrapper h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .submit button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .button-contact {
        justify-content: center;
    }
}

.getintouch-container {
    position: relative;
    padding: 0rem 5rem 4rem 5rem;
    background: white;
    overflow: hidden;
}

@media(max-width:768px) {
    .getintouch-container {
        padding: 80px 20px;
    }
}

.getintouch-title {
    font-size: 36px;
    color: #002C9D;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
}

.getintouch-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 100px;
}

.getintouch-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px 40px;
}

.getintouch-contact-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    position: relative;
    transition: box-shadow 0.3s;
    background-color: #fff;
}

    .getintouch-contact-card:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

.getintouch-icon-wrapper {
    position: absolute;
    top: -60px;
}

.getintouch-circle-outer,
.getintouch-circle-middle,
.getintouch-circle-inner {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.getintouch-circle-outer {
    background-color: #E7EAF1;
    width: 90px;
    height: 90px;
}

.getintouch-circle-middle {
    background-color: #D3DCEE;
    width: 75px;
    height: 75px;
}

.getintouch-circle-inner {
    background-color: #120B63;
    width: 60px;
    height: 60px;
}

    .getintouch-circle-inner .material-icons {
        color: white;
        font-size: 24px;
    }

.getintouch-contact-card h3 {
    margin-top: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.getintouch-contact-card p {
    font-size: 14px;
    color: #4B4B4B;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    /*    border: 2px solid #000;*/
    background: transparent;
    color: #682ba1;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.getintouch-contact-card button {
    background-color: #002780;
    color: #fff;
    padding: 10px 30px;
    font-weight: 600;
    border: none;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
    width: 100%;
}

/*    .getintouch-contact-card button:hover {
        color: #001F70;
        border-color: #001F70;
    }*/

.client-section {
    position: relative;
    padding: 4rem 5rem;
    background: white;
    font-family: 'Helvetica Neue', sans-serif;
    overflow: hidden;
}

@media(max-width:768px) {
    .client-section {
        padding: 80px 20px;
    }
}

.bg-left, .bg-right {
    position: absolute;
    top: 0;
    width: 100px;
    z-index: 0;
}

.bg-left {
    left: 0;
}

.bg-right {
    right: 0;
}

.client-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d9d9d9;
    font-weight: bold;
    margin-bottom: 1rem;
}

.client-sub-heading {
    font-size: 2rem;
    opacity: 0.4;
    margin: 0;
}

.client-section-number {
    font-size: 2rem;
    opacity: 0.3;
    margin: 0;
}

.client-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.client-main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin: 0;
}

.client-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo {
    width: 36px;
    height: 36px;
}

.client-brand-name {
    font-size: 1rem;
    font-weight: bold;
}

.client-testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: inset 0px 4px 8px 8px rgba(0, 0, 0, 0.1);
    margin: auto;
    position: relative;
    margin-top: 60px;
}

.client-testimonial-logo {
    width: 160px;
    margin-bottom: 1rem;
}

.client-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.5rem 0 0;
}

.client-position {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.client-quote {
    margin-top: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.client-stars {
    margin-top: 1.5rem;
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Background dot images */
.insights-container {
    position: relative;
    padding: 4rem 5rem;
    background: white;
    font-family: 'Helvetica Neue', sans-serif;
    overflow: hidden;
}

@media(max-width:768px) {
    .insights-container {
        padding: 80px 20px;
    }
}

.bg-left, .bg-right {
    position: absolute;
    top: 0;
    width: 120px;
    opacity: 0.4;
}

.bg-left {
    left: 0;
}

.bg-right {
    right: 0;
}

/* Heading section */
.insights-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.insight-light-heading {
    font-size: 36px;
    font-weight: 700;
    color: #d3d3d3;
    letter-spacing: 1px;
}

.insight-section-count {
    font-size: 36px;
    font-weight: 700;
    color: #d3d3d3;
    position: relative;
    margin-left: auto;
}

/* Subheader */
.insights-subheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.insight-dark-heading {
    font-size: 36px;
    font-weight: 800;
    color: #000;
}

.insight-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-logo {
    height: 32px;
}

.insight-brand-name {
    font-weight: 600;
    font-size: 16px;
}

/* Grid of insight cards */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.insight-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .insight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

.insight-card-img {
    width: 100%;
    height: 300px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.insight-category {
    color: #f55;
    font-size: 13px;
    padding: 15px 25px 0;
}

.insight-card-title {
    font-size: 16px;
    font-weight: 700;
    padding: 5px 25px 0;
}

.insight-card-desc {
    font-size: 13px;
    color: #333;
    padding: 10px 25px;
    flex-grow: 1;
}

/* Read More button */
.insight-card .read-more-btn {
    align-self: flex-start;
    margin: 0 20px;
    padding: 6px 16px;
    border: 1px solid #000;
    background: transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

    .insight-card .read-more-btn:hover {
        background: #000;
        color: #fff;
    }

/* View All button */
.insight-view-all-btn {
    display: block;
    margin: 40px auto 0;
    background: #002780;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 14px;
    width: 270px;
    /* font-weight: 600; */
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

    .insight-view-all-btn:hover {
        background: #001d7c;
    }

/* Discord section (optional, hidden if not needed) */
.discord-section {
    display: none;
}

/* * {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
} */

.footer {
    background-color: #FAFAFA;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 80px;
    justify-content: space-between;
}

.footer-desc {
    /* flex: 1; */
    max-width: 500px;
    margin-right: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

    .footer-logo img {
        height: 28px;
        margin-right: 10px;
    }

    .footer-logo span {
        font-weight: 700;
        font-size: 16px;
    }

.footer-desc p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.footer-desc h2{
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    gap: 80px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.linkedin {
    background-color: #0077B5;
}

.facebook {
    background-color: #1877F2;
}

.twitter {
    background-color: #1DA1F2;
}

.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F56040);
}*/

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.link-column {
    min-width: 110px;
}

    .link-column.wide {
        min-width: 190px;
    }

    .link-column h2 { 
        margin-bottom: 16px;
    }

    .link-column a {
        display: block;
        font-size: 14px;
        text-decoration: none;
        color: #666;
        margin-bottom: 8px;
    }

.client-logos-footer img {
    height: 100px;
}
.newsletter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 80px;
    
}

@media (max-width: 1200px) {
    .footer-top {
        padding: 40px 20px;
    }

    .newsletter {
        padding: 40px 20px;
    }
}

@media(max-width:760px) {
    .newsletter {
        flex-direction: column;
        gap: 20px;
    }
}

.newsletter-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #001C5E;
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 14px;
    color: #666;
}

.newsletter-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    gap: 0;
}

.input-container {
    position: relative;
    flex: 1;
    z-index: 99999;
}

    .input-container input[type="email"] {
        width: 87%;
        height: 40px;
        padding: 0 10px 0 38px; /* left padding for the icon */
        border: 1px solid #ccc;
        border-radius: 8px;
        outline: none;
        font-size: 14px;
    }

@media(max-width:536px) {
    .input-container input[type="email"] {
        width: 80%;
    }
}

.email-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #1849A9;
    font-size: 16px;
    pointer-events: none;
}

.newsletter-form button {
    background-color: #001C5E;
    position: relative;
    left: -10px;
    color: white;
    border: none;
    height: 40px;
    padding: 0 24px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    z-index: 1;
}

@media (max-width:562px) {
    .newsletter-form {
        width: 80%;
    }
}

.footer-bottom {
    background-color: #001C5E;
    color: white;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
}

    .footer-bottom p {
        font-size: 13px;
        margin: 0;
    }

.bottom-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

    .bottom-links a {
        font-size: 13px;
        color: white;
        text-decoration: none;
    }