 

 @import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@300;400;500;600;700&display=swap');

 @import url('https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&display=swap');

 @import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@300;400;500;600;700&display=swap');



 /* NAVBAR BACKGROUND EXACT LIKE FIGMA */
.rubicr-nav {
/*    background: rgba(10, 13, 21, 0.78);  */
    background:#434343b0;
    backdrop-filter: blur(6px);
    padding: 12px 0;
    margin-top:20px;
    width:90%;
    margin:20px auto;
    border-radius: 10px;
}

.logo-img {
    height: 34px;
}

/* NAV LINKS */
/*.nav-link {
    color: #fff !important;
    font-size: 16px;
    margin-right: 18px;
}*/


.container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between; /* KEY */
    width: 100%;
}

.navbar-nav {
    margin-left: auto;   /* pushes menu to right */
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-brand {
    margin-left: 30px; /* adjust as needed */
}


@media (max-width: 991px) {
    .navbar-brand {
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        margin-right: 15px;
    }
}

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        gap: 30px;
    }

    .dropdown-item {
   
    padding: 0.6rem 1rem;

}


.nav-link {
    color: #fff !important;
    font-size: 16px;
    margin-right: 18px;
    padding: 5px;
    border: 1px solid transparent;
/*    border-radius: 6px;*/
    transition: 0.3s ease;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400!important;
}

/*.nav-link.active {
    border: 1px solid #d8d8d882!important;
    border-radius: 6px;
    box-shadow: 
        inset 2px 2px 4px rgba(0,0,0,0.4),   
        inset -2px -2px 4px rgba(255,255,255,0.15); 

}*/


.nav-link.active {
    border-bottom: 1px solid #fff!important; /* active border */
  
}

.nav-link:hover {
    color: #d8d8d8 !important;
}

/* DEMO BUTTON */
.demo-btn {
    background: #ffffff;
    color: #000;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
}
.demo-btn:hover {
    opacity: 0.85;
}

/* DROPDOWN */
.dropdown-menu {
     background:#434343b0;
    backdrop-filter: blur(6px);
    border: 0;
    padding: 10px 0;
}

.dropdown-item {
    color: #fff;
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
}
.dropdown-item:hover {
    background: transparent;
    color: #9cc3ff;
}

.fade-menu {
    animation: dropdownFade 0.25s ease;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ============================
     MOBILE MENU
============================= */
.mobile-menu {
/*    background: rgba(10, 13, 21, 0.92);*/

background:#434343b0;
    backdrop-filter: blur(8px);
    color: white;
    width: 80%;
}

.mobile-nav li {
    list-style: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
}

.mobile-dropdown .mobile-submenu {
    display: none;
    padding-left: 15px;
}

.mobile-dropdown.open .mobile-submenu {
    display: block;
}

.mobile-dropdown .toggle-icon {
    font-size: 18px;
}

/* Arrow rotation */
.mobile-dropdown.open .toggle-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {

    .btncontent {
    position: absolute;
    bottom: 60px;
    right: 10px;
    left: 10px;
    
    text-align: center;
    color: white;
    width: 100%;
}

.demo-btn {
    background: #ffffff;
    color: #000!important;
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    /* max-width: max-content; */
    display: block;
    width: calc(100% - 20px)!important;  /* 10px gap on both sides */
}}



/* Show dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Disable Bootstrap click arrow rotation delay */
.nav-item.dropdown > .nav-link {
    pointer-events: auto;
}

/* Optional smooth fade */
.fade-menu {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.nav-item.dropdown:hover .fade-menu {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   HERO BANNER
===================================================== */
.hero-banner {
    position: relative;
   height: 100vh;     
    width: 100%;
    overflow: hidden;
}


/* Common video style */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Default: Desktop */
.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

/* Mobile view */
@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.banner-content {
    position: absolute;
    bottom: 60px;
    right: 60px;
    text-align: right;
    color: white;
}

.banner-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Banner demo button */
.banner-btn {
    background: #ffffff;
    color: #000;
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
}


@media (max-width: 768px) {


/*    .hero-banner {*/
/*    position: relative;*/
/*   height: 400px;     */
/*    width: 100%;*/
/*    overflow: hidden;*/
/*}*/


/*.hero-video {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: contain;*/
/*}*/

.banner-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

    .banner-content {
    position: absolute;
    bottom: 30px;
    right: 10px;
    left: 10px;
    
    text-align: center;
    color: white;
    width: 100%;
}

.banner-btn {
    background: #ffffff;
    color: #000;
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    /* max-width: max-content; */
    display: block;
    width: calc(100% - 20px)!important;  /* 10px gap on both sides */
   border: 1px solid #001A3F;
   margin-top:20px;

}

}

/* =====================================================
   TRUSTED COMPANIES STRIP
===================================================== */
.trusted-title {
    font-size: 18px;
    color: #525252;
    letter-spacing: 0.5px;
    /*text-transform: uppercase;*/
}

.brand-logo {
    width: 160px!important;        
    /*height: 60px;        */
    object-fit: contain; 
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}



/* =====================================================
   DNA SECTION (BLUE BACKGROUND)
===================================================== */
.dna-section {
    background: #071d3a;
    color: white;
    margin:50px 0px 50px 0px;
}

.dna-info{
        display: flex;
    flex-direction: row;
    
}

@media (max-width:768px){
    
    
    .brand-logo {
    width: 100%!important;        
    height: 60px;        
    object-fit: contain; 
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

    .dna-info{
        display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
}

.dna-title {
    font-size: 32px;
    font-weight: 700;
}

.dna-desc {
    font-size: 15px;
    margin-top: 15px;
    color: #dcdcdc;
}

.dna-badges {
    margin-top: 25px;
}

.badge-yellow {
    background: #ffc13b;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #000;
    margin-right: 6px;
}

.badge-blue {
    background: #004fff;
    padding: 6px 12px;
    border-radius: 4px;
    color: white;
    font-size: 12px;
    margin-right: 6px;
}

.badge-green {
    background: #00c27a;
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
}

.dna-img {
    width: 100%;
    max-width: 440px;
}



/* MAIN DARK BLUE SECTION */
.dna-section {
/*    background: linear-gradient(90deg, #060D31 0%, #081447 100%);*/
background-image: url("../assets/images/2bg.png"); /* Replace with your DNA image */
background-size: cover;
    background-position: right center;
    padding: 80px 0px 60px 0px; 
    position: relative;
    overflow: hidden;
}

/* RIGHT SIDE DNA IMAGE */
.dna-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    height: 100%;
/*    background-image: url("../assets/images/2bg.png"); */
    background-size: cover;
    background-position: right center;
/*    opacity: 0.4;     */
}

/* CONTENT BOX */
.dna-content-box {
    position: relative;
    z-index: 10;
    background: #060D31;
    padding: 40px 50px;
    font-family: 'Schibsted Grotesk', sans-serif;
/*    max-width: 550px;*/

    border-radius: 6px;
    left:0px;
}

/* Heading */
.dna-content-box h2 {
    color: #fff;
    font-size: 35px;
/*    font-weight: 600;*/
    margin-bottom: 15px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 400;
}

/* Paragraph */
.dna-content-box .info-text {
    color: #cbd3ff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Schibsted Grotesk', sans-serif;
}

/* Blue Button */
*.btn-blue {
    display: inline-flex;
    padding: 10px;
    background: #4F62FF;
    color: #fff;
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: auto;
    /*width:100%;*/
    width:420px;
    /*max-width: fit-content;*/
    overflow:visible;
     font-family: 'Instrument Sans', sans-serif;
}

/* Button */
/*.btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #4F62FF;
    color: #fff;    
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
}*/

.btn-blue span {
    display: inline-block;
    position: relative;
}

/* Hover Animation */
/*.btn-blue:hover span {
    animation: dropAndReturn 0.45s ease-in-out forwards;
}

@keyframes dropAndReturn {
    0% { transform: translateY(0); opacity: 1; }
    40% { transform: translateY(10px); opacity: 0; }  
    41% { transform: translateY(-12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }    
}

*/


.btn-blue {
 /* display: inline-block;
  background: #0055ff;
  padding: 12px 24px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  position: relative;*/

/*width: 500px!important;  */
}

.btn-blue span {
  display: inline-block;
  font-size: 16px;
  transition: 0.3s;
  width:220px;
  text-align:center;
}

/* Drop + Come Back animation */
@keyframes dropAndReturn {
    0% { transform: translateY(0); opacity: 1; }
    40% { transform: translateY(10px); opacity: 0; }
    41% { transform: translateY(-14px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.ticker-animate {
    animation: dropAndReturn 0.5s ease-in-out forwards;
}



/* Yellow Bottom Text */
.yellow-text {
    color: #FFE66D;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Schibsted Grotesk', sans-serif;
}


.compass-section {
    padding: 80px 0px 80px 40px;
    background: #f7e8c0;
    font-family: 'Schibsted Grotesk', sans-serif;
}

.compass-section.navigator {
    padding: 80px 0px 80px 40px;
    background: #F6F8FF;
    font-family: 'Schibsted Grotesk', sans-serif;
}


/* TITLE ABOVE BOTH PANELS */
.top-title {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}

.title-top {
    font-size: 18px;
    color: #222;
    font-family: 'Schibsted Grotesk', sans-serif;
}

/* LAYOUT */
.compass-flex {
    display: flex;
    align-items: flex-start; /* ensures right panel aligns with left */
    justify-content: space-between;
    gap: 40px;
}

.left-content {
    width: 55%;
}

.right-panel {
    width: 45%;
    padding-left: 40px;
}

.main-heading {
    font-size: 70px;
    font-family: 'Agdasima', sans-serif;
    font-weight: 400;
}

.sub-heading {
    font-size: 18px;
    margin: 15px 0;
    font-family: 'Schibsted Grotesk', sans-serif;
    font-weight: 600;
}

.desc {
    font-size: 15px;
    margin-bottom: 25px;
    font-family: 'Schibsted Grotesk', sans-serif;
    font-weight:400;
}

/* TABS */
.tab {
    border: 2px solid #f0dca2;
    background: white;
    padding: 18px 22px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.tab.active {
    background: #fff7d7;
    border-color: #e8c880;
}

.tab h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'Schibsted Grotesk';
}

.tab p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* BUTTONS */
.btn-group {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.btn-outline {
    padding: 10px;
    border: 1px solid #0c1a46;
    color: #0c1a46;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Instrument Sans', sans-serif;
    max-width: fit-content;
    font-size: 13px;
   
}

.compass-section .btn-group .btn-blue {
    padding: 10px;
    background: #0c1a46;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Instrument Sans', sans-serif;
    max-width: fit-content;
     font-size: 13px;
}

/* RIGHT TEXT & IMG */

.right-text p{
   font-family: 'Schibsted Grotesk', sans-serif;
   font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 25px;
/*    max-width: 420px;*/
}

.right-panel img {
    width: 100%;
    display: block;
    

}

.right-panel img {
  width: 100%;
  border-radius: 8px;
}

/*.right-text p {
    font-family: 'Schibsted Grotesk';
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.right-panel img {
    width: 100%;
    border-radius: 8px;
}
*/
/* RESPONSIVE */

@media (max-width: 768px) {

    .compass-section {
    padding: 80px 15px 80px 15px;
    background: #f7e8c0;
    font-family: 'Schibsted Grotesk', sans-serif;
}

.compass-section.navigator {
    padding: 80px 15px 80px 15px;
    background: #F6F8FF;
    font-family: 'Schibsted Grotesk', sans-serif;
}

}
@media (max-width: 992px) {

    .compass-section {
    padding: 80px 15px 80px 15px;
    background: #f7e8c0;
    font-family: 'Schibsted Grotesk', sans-serif;
}

.compass-section.navigator {
     padding: 80px 15px 80px 15px;
    background: #F6F8FF;
    font-family: 'Schibsted Grotesk', sans-serif;
}


    .main-heading {
    font-size: 32px;
    font-family: 'Agdasima', sans-serif;
    font-weight: 400;
}

    .compass-flex {
        flex-direction: column;
    }

    .btn-group {
        flex-direction: row;
    }

    .btn-outline {
    padding: 10px;
    border: 1px solid #0c1a46;
    color: #0c1a46;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Instrument Sans', sans-serif;
    max-width: fit-content;
    font-size: 13px;
   
}

.compass-section .btn-group .btn-blue {
    padding: 10px;
    background: #0c1a46;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Instrument Sans', sans-serif;
    max-width: fit-content;
    font-size: 13px;
}

    .left-content, .right-panel {
        width: 100%;
        padding-left: 0;
    }


/*    .compass-section.navigator .btn-outline {
    padding: 10px;
    border: 1px solid #0c1a46;
    color: #0c1a46;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Instrument Sans', sans-serif;
    max-width: fit-content;
    font-size: 12px;
   
}*/

}



/* SECTION BACKGROUND */
/* ==============================
   BASE SECTION
============================== */
.industries-section {
    width: 100%;
    background: #071133;
    padding: 100px 0;
    color: #fff;
    font-family: 'Schibsted Grotesk', sans-serif;
}

/* MAIN CONTAINER */
.industries-section .container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* LEFT TITLE */
.industries-section .left .title {
    font-size: 62px;
    font-family: 'Agdasima', sans-serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: capitalize;
}

/* ==============================
   RIGHT — MARQUEE GRID
============================== */
.industries-section .marquee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 60%;
}

/* COLUMN AREA */
.industries-section .marquee-column {
    height: 480px;
    overflow: hidden;
    position: relative;
}

/* TRACK */
.industries-section .marquee-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 10s linear infinite;
}

.industries-section .marquee-track.reverse {
    animation: scrollDown 10s linear infinite;
}

/* ANIMATIONS */
@keyframes scrollUp {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

@keyframes scrollDown {
    from { transform: translateY(-50%); }
    to { transform: translateY(0); }
}

/* CARD */
.industries-section .card {
    background: linear-gradient(180deg, #1A2347, #0C132D);
    padding: 60px 20px;
    border-radius: 16px;
    margin-bottom: 18px;
    text-align: left;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.06);
}

.industries-section .card .icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}

.industries-section .card p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
     font-family: 'Schibsted Grotesk', sans-serif;
}

/* ==============================
   RESPONSIVE
============================== */

/* Tablet – 768px to 991px */
@media (max-width: 991px) {
    
    .btn-blue {
   
    width:100%;
 
    }
    .industries-section .container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .industries-section .left .title {
        font-size: 48px;
    }

    .industries-section .marquee-grid {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile – Below 768px */
@media (max-width: 768px) {

        .industries-section .marquee-column {
        height: 390px; /* 3 smaller cards */
    }


 /* Make cards smaller */
    .industries-section .card {
        padding: 25px 16px;
        border-radius: 12px;
    }

    /* Smaller icons */
    .industries-section .card .icon img {
        width: 38px;
        height: 38px;
    }

    /* Smaller font */
    .industries-section .card p {
        font-size: 14px;
         font-family: 'Schibsted Grotesk', sans-serif;
    }

    /* Keep 3 columns no matter what */
    .industries-section .marquee-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px;
    }

   

     .industries-section .left .title {
        font-size: 38px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {

    .industries-section .card {
        padding: 20px 12px;
    }

    .industries-section .card .icon img {
        width: 32px;
        height: 32px;
    }

    .industries-section .card p {
        font-size: 13px;
         font-family: 'Schibsted Grotesk', sans-serif;
    }

    .industries-section .marquee-column {
        height: 340px;
    }

    .industries-section .left .title {
        font-size: 32px;
    }
}



.consulting-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
    font-family: 'Schibsted Grotesk', sans-serif;
}

/* MAIN CONTAINER */
.consulting-container {
    width: 88%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT IMAGE CARD */
.consulting-image {
    width: 48%;
    border-radius: 18px;
    overflow: hidden;
}

.consulting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* RIGHT CONTENT */
.consulting-content {
    width: 50%;
    color: #fff;
}

.consulting-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    color: #09163A;
    color: #001341;
    margin-bottom: 25px;
    font-family: 'Agdasima', sans-serif;
    font-weight: 400;
}

.consulting-desc {
    font-size: 16px;
    color: #525252;
    line-height: 1.6;
    max-width: 530px;
    margin-bottom: 35px;
}

/* BULLET LINES */
.consulting-list {
    list-style: none;
    margin: 0 0 35px;
    padding: 0;
}

.consulting-list li {
/*    width: 85%;*/
max-width: fit-content;
    height: 35px;
    border: 2px solid #B0E0BF;
    border-radius: 30px;
    margin-bottom: 18px;
    position: relative;
    font-family: 'Schibsted Grotesk', sans-serif;
    font-weight: 400;
    color:#000000;
    padding: 0px 30px 0px 40px;
     line-height: 35px;
}

.consulting-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    background: #238C00;
    border-radius: 50%;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10L9 13L14 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* BUTTON */
.consulting-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #0B2A83;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.8px;
    font-family: 'Instrument Sans', sans-serif;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 992px) {
    .consulting-container {
        flex-direction: column;
        text-align: left;
    }

    .consulting-image,
    .consulting-content {
        width: 100%;
    }


.consulting-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .consulting-list li {
      
width: 100%!important;

        min-height: 50px;
    display: flex;
    align-items: center;
     line-height: 21px;
    }


    
}

@media (max-width: 600px) {


    .consulting-title {
        font-size: 32px;
    }


.consulting-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .consulting-list li {

      width: 100%!important;
        min-height: 50px;
    display: flex;
    align-items: center;
    max-width: none;
    }


    .consulting-btn {
    display: inline-block;
    max-width: fit-content;
    padding: 11px!important;
    background: #0B2A83;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.8px;
    font-family: 'Instrument Sans', sans-serif;
}

}


/*footprint-section*/

.footprint-section {
    background: #040A2A;
    padding: 30px 20px;
    text-align: center;
    color: #ffffff;    
     font-family: 'Agdasima', sans-serif;
    font-weight: 400;
}

.footprint-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #ffffff;
     font-family: 'Agdasima', sans-serif;
    font-weight: 400;
}

.footprint-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

.footprint-box p {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;

     font-family: 'Agdasima', sans-serif;
}

.divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .footprint-row {
        flex-direction: column;
        gap: 20px;
    }

    .divider {
        display: none;
    }

    .footprint-title {
        font-size: 34px;
    }

    .footprint-box p {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .footprint-title {
        font-size: 28px;
    }

    .footprint-box p {
        font-size: 20px;
    }
}


/*why rubicr*/

.why-section {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Schibsted Grotesk', sans-serif;
}

/* TITLE */
.why-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 52px;
    font-weight: 400;
    color: #000;
    font-family: 'Agdasima', sans-serif;
}

/* TABS WRAPPER */
.tabs-wrapper {
    position: relative;
    display: flex;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

/* TAB BUTTON */
.tab-btn {
    flex: 1;
    padding: 18px 11px;
    font-size: 18px;
    border: none;
    background: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #525252;
    border-right: 1px solid #ddd;
    transition: color 0.3s ease;
}

.tab-btn:last-child {
    border-right: none;
}

/* WIPE FILL ANIMATION */
.tab-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #FFF2CC;
    z-index: -1;
    transition: width 2.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ACTIVE STATE */
.tab-btn.active::before {
    width: 100%;

}

.tab-btn.active {
    width: 100%;
    color:#000;
    font-weight: bold;
}

/* CONTENT WRAPPER */
.tab-content {
    margin-top: 30px;
}

/* TAB PANEL */
.tab-panel {
    display: none !important;
    background: #000;
/*    border-radius: 12px;*/
    padding: 0px 0px 0px 60px;
    gap: 30px;
    align-items: center;
}

/* SHOW ACTIVE PANEL */
.tab-panel.active {
    display: flex !important;
     gap: 250px!important;

}

/* CONTENT LEFT */
.tab-panel .content-left {
    width: 50%;
}

.tab-panel h3 {
    font-family: 'Agdasima', sans-serif;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
}

.tab-panel .sub-heading  {
    font-family: 'Schibsted Grotesk', sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff!important;
    font-size: 22px;
}

.tab-panel p {
    font-family: 'Schibsted Grotesk', sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 18px;
}

/* IMAGE */
.tab-panel img {
    width: 100%;
/*    border-radius: 12px;*/
    background-position: right;
}


/* =============== RESPONSIVE =============== */

/* TABLET */
@media (max-width: 900px) {
    .tab-panel {
        flex-direction: column;
        padding: 30px;
    }

    .tab-panel .content-left {
        width: 100%;
    }

    .tab-btn {
        font-size: 16px;
        padding: 14px;
    }

    .tab-panel h3 {
        font-size: 38px;
    }
}


@media (max-width: 600px) {

    .tab-panel.active {
    display: flex !important;
     gap: 40px!important;

}

    .tabs-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        white-space: nowrap;
    }

    .tab-btn {
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
        scroll-snap-align: center;
        font-size: 17px;
        padding: 16px;
    }

    .tabs-wrapper::-webkit-scrollbar {
/*        display: none; */
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .why-title {
        font-size: 34px;
    }

    .tabs-wrapper {
/*        flex-direction: row;*/
/*        border: none;*/
    }

    .tab-btn {
       /* width: 100%;
        font-size: 16px;
        border-right: none;
        border-bottom: 1px solid #ddd;*/

        /*width: auto;
        padding: 10px;
        font-size: 9px;
       
        border-bottom: 1px solid #ddd;*/
    }

    .tab-btn:last-child {
        border-bottom: none;
    }

    .tab-btn::before {
        width: 0%; /* reset animation */
        height: 100%;
    }

    .tab-btn.active::before {
        width: 100%;
    }

    .tab-panel {
        padding: 24px;
        gap: 20px;
    }

    .tab-panel h3 {
        font-size: 30px;
    }

    .tab-panel p {
        font-size: 15px;
    }
}


/*testimonial*/






.testimonial-section {
    background: #DDE8FF;
    padding: 60px 20px;
    text-align: center;
}


.testimonial-section {
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-section .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}





.testimonial-section .section-title {
    font-size: 50px;
    margin-bottom: 40px;
    font-family: 'Agdasima', sans-serif;
    font-weight: 400;
}

/* Swiper */
.testimonial-slider {
    width: 100%;
/*    max-width: 1000px;*/
    margin: auto;
    padding-bottom: 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* Card */
/*.swiper-slide .card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    max-width: 550px;
    min-height:350px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    text-align: left;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}*/

.swiper-slide .card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    width: 100%;
    height:320px;
    /*min-height: 350px;*/
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    text-align: left;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* Active slide zoom */
.swiper-slide-active .card {
    transform: scale(1.2);
    box-shadow: 0 18px 35px rgba(0,0,0,0.20);
}

/* Quote */
.quote {
    font-size: 15px;
    line-height: 1.6;
    padding-top: 30px;
    position: relative;
    font-family: 'Schibsted Grotesk', sans-serif;
    font-weight: 400;
}

.quote {
  flex: 1;                    /* takes remaining space */
  overflow-y: auto;           /* scroll only if long */
  margin-bottom: 20px;
  padding-right: 6px;
}

/* Optional – clean scrollbar */
.quote::-webkit-scrollbar {
  width: 2px;
}
.quote::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}


.quote::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url("../assets/images/testimonial/comma.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 10px;
}

/* Client */
.client {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.client img {
    width: 40px;
}

.client span {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

/* Navigation buttons */
/*.swiper-button-prev,
.swiper-button-next {
    color: #000;
    font-weight: bold;
}*/


/* --- SLIDER NAVIGATION BELOW --- */
.bottom-nav {
   /* margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 300px;*/

      margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* NEW */
    width: 100%;
    max-width: 100%; /* keeps layout centered like your slider */
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px; /* creates gap from both sides */
}

/* Rounded square buttons */
.custom-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #041F19;
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: static !important;
    color: #FECE51;
    border: 1px solid #ddd;
}

/* Make arrow icons smaller */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px !important;
    font-weight: bold;
}

/*.bottom-nav {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 100%;
    max-width: 650px; 
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px; 
}*/


/*.custom-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #F5F5F5;
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: #000;
    border: 1px solid #ddd;
    position: static !important;
}


.swiper-pagination {
    flex-grow: 1;
    text-align: center;
    position: static !important;
}
*/

/* Pagination dots in center */
.swiper-pagination {
    position: static !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #000;
    opacity: .3;
}

.swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
}

@media (max-width: 600px) {

    .testimonial-section .section-title {
    font-size: 32px;
    
}

    .quote {
    font-size: 14px;
}
    .swiper-slide {
        width: 100% !important;
    }
}


/*footer*/

/* Footer Base */
.impact-footer {
    background: #081133; /* dark navy 060E31 092E26 */
    padding: 80px 6%;
    color: #fff;
    font-family: 'Schibsted Grotesk', sans-serif;
}

/* TOP CTA SECTION */
.footer-cta {
   /* display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;*/
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 40px;
}

.footer-cta h2 {
    font-size: 55px;
    font-weight: 300;
    line-height: 1.2;
    max-width: 500px;
    font-family: 'Agdasima', sans-serif;
}

.cta-right p {
    font-size: 15px;
    margin-bottom: 15px;
    font-family: 'Schibsted Grotesk', sans-serif;
}

.impact-footer .cta-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    background: #fff;
    color: #000;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    
}


.impact-footer .cta-btn:hover {
    background: #123a78;
    color: #fff;
}
.footer-divider {
    border: none;
    height: 1px;
    background: #223;
    margin: 40px 0;
}

/* FOOTER GRID */
/*.footer-grid {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}*/

/* LOGO COLUMN */
.footer-logo {
    width: 130px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Icons */
.social-icon img {
    width: 28px;
    height: 28px;
}

/* Footer Links */
.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cfd4e0;
    font-size: 16px;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    font-size: 16px;
    opacity: 0.7;
}


.footer-grid {
    display: grid;
    grid-template-columns: 560px auto;
    gap: 60px;
    align-items: start;
}

.footer-link-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}




/* MOBILE */
@media (max-width: 768px) {

    /* Main grid becomes 1 column */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Link columns become 2 columns */
    .footer-link-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-col {
        margin-bottom: 20px;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .footer-cta h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .footer-cta {
        display:flex;
        flex-direction: column;
        gap: 25px;
    }

    .cta-btn{
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

   /* .footer-grid-links{
        display:grid;
        grid-template-columns: 1fr 1fr;
    }*/



    .footer-col {
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}
