@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-snap-type: none;
    scroll-padding-top: var(--site-header-h);
}
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background-color: #fff;
    color: #fff;
}
:root {
    --site-header-h: 72px;
}
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}
.welcome-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
}
.welcome-text {
    font-size: 4rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    color: #fff;
}
@media (max-width: 768px) {
    .welcome-text {
        font-size: 2.8rem;
    }
}
.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 3;
}
.scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #00398f;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(40px);
    text-align: center;
}
.scroll-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 45px rgba(255, 255, 255, 0.8);
}
.scroll-btn i {
    font-size: 1.3rem;
    margin-bottom: 3px;
    color: #00398f;
}
.scroll-btn span {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #00398f;
}
.sound-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: #fff;
    font-size: 1.4rem;
    z-index: 3;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
.sound-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
@media (max-width: 992px) {
    .scroll-down {
        right: 30px;
        bottom: 30px;
    }
}
@media (max-width: 576px) {
    .scroll-btn {
        width: 70px;
        height: 70px;
    }
    .scroll-btn span {
        font-size: 0.6rem;
    }
}
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 2;
    padding: 80px 10%;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 70%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    z-index: 1;
    transition: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-logo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    margin-bottom: 0px;
}
.hero-nav {
    margin-top: 10px;
    margin-top: -7.5em;
    display: flex;
    justify-content: flex-start;
    margin-left: calc(50% - 239px);
	position: relative;
    z-index: 20;
}
.hero-nav .nav {
    justify-content: flex-start;
}
.hero-nav .nav-link {
    color: black;
    font-weight: 500;
    margin: 0 0px;
    transition: color 0.3s ease;
    font-size: 22px;
}
.hero-nav .nav-link:hover {
    color: #1B76FF;
}

/* .hero-logo .word { margin-left: -0.5vw; } */

.word .letter {
    font-family: "Montserrat", sans-serif;
    font-size: 13vw;
    font-weight: 700;
    color: #01398f;
    display: inline-block;
    opacity: 0;
    transform: translateY(100px);
    line-height: 2.2;
}
.i-letter .dot {
    position: absolute;
    top: 0 em;
    left: 50%;
    transform: translate(-50%, -80px);
    width: 0.45em;
    height: 0.45em;
    background: #1b76fd;
    border-radius: 50%;
    opacity: 0;
}
.tagline-container {
    max-width: 800px;
    margin-top: 45px;
    text-align: left;
    position: relative;
    left: 3%;
    bottom: 15%;
}
.hero-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    line-height: 140%;
    letter-spacing: 0;
    color: black;
    opacity: 0;
    text-align: left;
    max-width: 800px;
}
.video-sections {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.video-sections .background-video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.next-footer-section {
    position: relative;
    z-index: 0;
    background: #000;
    color: #fff;
    padding: 120px 24px 100px;
    overflow: hidden;
    min-height: 150vh;
    display: grid;
    place-items: center;
    will-change: transform, border-radius;
    visibility: hidden;
}
.next-footer-section.is-visible {
    visibility: visible;
}
.next-footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.25), rgba(255,255,255,0));
    opacity: 0.9;
}
.next-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    will-change: transform, border-radius;
    border-radius: 16px;
}
.next-footer-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    font-size: clamp(32px, 6vw, 72px);
}
.next-footer-subtitle {
    margin: 0 0 32px;
    color: #cfd3da;
    font-size: clamp(16px, 2.2vw, 22px);
}
.next-footer-email {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(20px, 3vw, 28px);
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}
.next-footer-email:hover {
    background: #e60017;
    border-color: #e60017;
    box-shadow: 0 6px 30px rgba(230, 0, 23, 0.35);
    transform: translateY(-1px);
}
.next-footer-social {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.next-footer-social a {
    color: #9aa3af;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
    font-size: 18px;
}
.next-footer-social a:hover {
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}
@media (max-width: 576px) {
    .next-footer-section {
        padding: 80px 18px 72px;
    }
}
.next-footer-video, .next-footer-media, .next-footer-gif {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
}
.next-footer-tint {
    position: absolute;
    inset: 0;
    background: #255aaa80;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}
.next-footer-pill {
    position: absolute;
    left: 58%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: #fff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 8vw;
    line-height: 1.2;
    padding: 12px 20px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    width: 70%;
}
.next-footer-pill.is-active {
    pointer-events: auto;
}
.video-sections .welcome-section, .video-sections .hero-section {
    position: relative;
    z-index: 1;
}
.big-c img {
    width: 20vw;
    height: auto;
}
.i-letter {
    position: relative;
    display: inline-block;
}
.word img.letter {
    width: 9vw;
    height: auto;
    opacity: 0;
    transform: translateY(100px);
    display: inline-block;
    vertical-align: bottom;
    transition: opacity 0.3s ease;
}
.i-letter .dot {
    position: absolute;
    top: -0.7em;
    left: 50%;
    width: 4vw;
    height: 4vw;
    transform: translate(-50%, -80px);
    opacity: 0;
}
@media (max-width: 768px) {
    .big-c img {
        width: 30vw;
    }
}
.home-section {
    position: relative;
    min-height: 70vh;
    background: #fff;
    overflow: visible;
    color: #01398F;
    padding-top: var(--site-header-h);
}
.home-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 5%;
    min-height: var(--site-header-h);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.home-header.is-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.logo-placeholder img.site-logo {
    width: 150px;
    height: auto;
}
.main-nav .nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}
.main-nav .nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 3px;
}
.main-nav .nav-link:hover, .main-nav .nav-link.active {
    color: #01398F;
    border-bottom: 2px solid #01398F;
}
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 125px 20px;
}
.home-heading {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 120%;
    color: #01398F;
    margin-bottom: 25px;
}
.home-divider {
    width: 100%;
    margin: 0 auto 25px;
    border: 1px solid black;
}
.home-subtext {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 140%;
    color: #000;
    margin-bottom: 24px;
}
.cta-btn {
    background: linear-gradient(109.57deg, #1B76FF -26.23%, #00398F 60.13%, #002D70 123.67%);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.cta-btn i {
    margin-right: 10px;
    font-size: 14px;
}
.services-section {
    position: relative;
    min-height: 100vh;
    background: #fff;
    overflow: visible;
    color: #01398F;
    z-index: -1;
    padding-top: 100px;
}
.services-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.services-header .site-logo {
    width: 150px;
    height: auto;
}
.services-header .nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}
.services-header .nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 3px;
}
.services-header .nav-link:hover, .services-header .nav-link.active {
    color: #01398F;
    border-bottom: 2px solid #01398F;
}
.services-container {
    max-width: 1084px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 20px;
    position: relative;
    z-index: 1;
}
.section-title {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 46px;
    color: #01398F;
    margin-bottom: 24px;
}
.services-list p {
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: 64px;
    color: #01398F;
    line-height: 120%;
    letter-spacing: 0px;
    margin: 0;
}
.services-tagline {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: #000;
    margin-top: 24px;
}
.box1.floating-box {
    position: absolute;
    width: 169px;
    height: 206px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 0;
    transform: rotate(-26deg);
}
.box1 {
    top: 10%;
    left: -32%;
    border-radius: 30px;
}
.box2 {
    top: 10%;
    right: -37%;
    border-radius: 30px;
}
.box2.floating-box {
    position: absolute;
    width: 280px;
    height: 341px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 0;
    transform: rotate(20deg);
}
.box3.floating-box {
    position: absolute;
    width: 280px;
    height: 341px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 0;
    transform: rotate(20deg);
}
.box3 {
    bottom: -12%;
    right: 110%;
    border-radius: 30px;
}
.box3.floating-box {
    position: absolute;
    width: 226px;
    height: 275px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 0;
    transform: rotate(20deg);
}
.box4 {
    bottom: 8%;
    right: -26%;
    border-radius: 30px;
}
.box4.floating-box {
    position: absolute;
    width: 166px;
    height: 202px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 0;
    transform: rotate(-30deg);
}
.about-section {
    position: relative;
    min-height: 100vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #01398F;
    text-align: center;
    padding: 64px 20px;
}
.about-container {
    max-width: 680px;
    margin: 0 auto;
}
.about-section .section-title {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 46px;
    color: #01398F;
    margin-bottom: 30px;
}
.about-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: #000;
    line-height: 140%;
    margin-bottom: 40px;
}
.about-section .cta-btn {
    background: linear-gradient(109.57deg, #1B76FF -26.23%, #00398F 60.13%, #002D70 123.67%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}
.about-section .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.about-section .cta-btn i {
    margin-left: 8px;
    font-size: 14px;
}
.products-section {
    position: relative;
    min-height: 100vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    color: #01398F;
    text-align: center;
    padding: 200px 20px 
}
.products-container {
    max-width: 1200px;
    margin: 0 auto;
}
.products-section .section-title {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 46px;
    color: #01398F;
    margin-bottom: 28px;
}
.product-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}
.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    width: 380px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.product-image {
    background: #01398F;
    border-radius: 10px;
    padding: 35px 0;
    margin-bottom: 25px;
    min-height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-image img {
    width: 180px;
    height: auto;
}
.product-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #01398F;
    margin-bottom: 15px;
}
.product-desc {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000;
    line-height: 100%;
    margin-bottom: 25px;
}
.product-desc strong{
    color: #01398F;
}
.product-btn {
    background: #1B76FF;
    color: #fff;
    border: none;
    padding: 10px 0;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
	text-decoration: none; 
}
.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
    .product-grid {
        gap: 25px;
    }
    .product-card {
        width: 280px;
    }
}
@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }
    .product-card {
        width: 90%;
    }
}
.case-studies-section {
    position: relative;
    min-height: 100vh;
    background: #fff;
    border-radius: 20px;
    padding: 80px 5%;
    color: #01398F;
}
.case-heading {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 46px;
    text-align: center;
    margin-bottom: 20px;
}
.case-heading span {
    color: #1B76FD;
}
.case-subtext {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #000;
    line-height: 140%;
    max-width: 900px;
    margin: 0 auto 50px;
}
.case-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.case-list {
    width: 250px;
    max-height: 400px;
    overflow-y: auto;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
}
.case-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.case-list ul li {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #777;
    padding: 12px 15px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}
.case-list ul li:hover, .case-list ul li.active {
    color: #01398F;
    font-weight: 600;
    border-left: 3px solid #01398F;
}
.case-display {
    flex: 1;
    background: #01398F;
    color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    min-height: 400px;
    max-width: 700px;
    position: relative;
    overflow: hidden;
}
.case-card {
    display: none;
}
.case-card.active {
    display: block;
}
.case-card {
    width: 100%;
    background: #01398F;
    color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
}
.case-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}
.case-text {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    border-radius: 8px;
    padding: 20px;
}
.case-text h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}
.case-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #cfdcff;
    line-height: 1.6;
}
.case-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
}
.case-image img {
    width: 100%;
    border-radius: 8px;
}
.case-btn-wrap {
    text-align: center;
    margin-top: 30px;
}
.case-btn {
    background: #1B76FF;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.case-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}
@media (max-width: 992px) {
    .case-inner {
        flex-direction: column;
        align-items: center;
    }
    .case-text, .case-image {
        max-width: 100%;
    }
    .case-text {
        margin-bottom: 20px;
    }
}
.ranking-section {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 80px 5%;
    color: #01398F;
    text-align: center;
}
.ranking-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #01398F;
    margin-bottom: 50px;
}
.ranking-title span {
    color: #1B76FD;
}
.ranking-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.ranking-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    padding: 15px;
}
.ranking-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.ranking-box img {
    width: 100%;
    border-radius: 8px;
    object-fit: fit;
    display: block;
}
.ranking-box p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #01398F;
    margin-top: 10px;
}
.top-row .ranking-box.large {
    flex: 1 1 calc(50% - 30px);
    max-width: 576px;
    min-height: 392px;
}
.top-row .ranking-box.large img {
    height: 315px;
}
.bottom-row .ranking-box.small {
    flex: 1 1 calc(33.333% - 30px);
    max-width: 372px;
    min-height: 392px;
}
.bottom-row .ranking-box.small img {
    height: 315px;
}
@media (max-width: 992px) {
    .top-row .ranking-box.large, .bottom-row .ranking-box.small {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .ranking-row {
        gap: 20px;
    }
    .ranking-box img {
        height: auto;
    }
    .ranking-title {
        font-size: 26px;
    }
}
.testimonial-section {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 80px 5%;
    color: #01398F;
    text-align: center;
    overflow: visible;
}
.testimonial-container {
    position: relative;
    z-index: 1;
}
.testimonial-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 10px;
}
.testimonial-title span {
    color: #1B76FD;
}
.testimonial-subtext {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    line-height: 140%;
    font-weight: 400;
    color: #000;
    margin: 0 auto 50px;
    max-width: 900px;
}
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}
.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.testimonial-slide.active {
    display: block;
    opacity: 1;
}
.testimonial-text {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 150%;
    margin-bottom: 25px;
}
.testimonial-user {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}
.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #01398F;
}
.testimonial-user h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.stars {
    color: #f5b301;
    font-size: 14px;
}
.arrow-btn {
    background: #01398F;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s ease;
    font-size: 16px;
    z-index: 5;
}
.arrow-btn:hover {
    background: #1B76FD;
}
.arrow-btn.left {
    left: 0;
}
.arrow-btn.right {
    right: 0;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 8px;
}
.testimonial-dots span {
    width: 10px;
    height: 10px;
    background: #cfdcff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-dots span.active {
    background: #01398F;
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .arrow-btn.left {
        left: 5px;
    }
    .arrow-btn.right {
        right: 5px;
    }
    .testimonial-title {
        font-size: 24px;
    }
    .testimonial-text {
        font-size: 13px;
    }
}
.footer-section {
    background: linear-gradient(135deg, #1B76FD 0%, #01398F 100%);
    color: #fff;
    padding-top: 60px;
    font-family: "Montserrat", sans-serif;
}
.newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 5% 40px;
}
.newsletter-text h4 {
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}
.newsletter-text{
    width: 40%;
}
.newsletter-text p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 24px;
    color: #e8e8e8;
    margin: 0;
    line-height: 150%;
}
.newsletter-form {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    width: 516px;
    height: 76px;
    max-width: 100%;
}
.newsletter-form input {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-size: 15px;
    outline: none;
    color: #000;
}
.newsletter-form button {
    background: #01398F;
    color: #fff;
    border: none;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.3s ease;
    height: 52px;
    width: 161px;
    margin: 12px 24px 8px 24px;
}
.newsletter-form button:hover {
    background: #1B76FD;
}
.google-tick-section {
    position: relative;
    background: url("../images/city-bg.jpg") center center / cover no-repeat;
    border-radius: 20px;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #01398F;
}
.google-tick-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
}
.google-tick-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding-bottom: 177px;
}
.google-text {
    flex: 1;
    max-width: 1217px;
}
.google-text h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #01398F;
}
.google-text h2 span {
    color: #1B76FD;
}
.google-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 25px;
}
.google-text .cta-btn {
    background: linear-gradient(109.57deg, #1B76FF -26.23%, #00398F 60.13%, #002D70 123.67%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}
.google-text .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.google-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.google-image img {
    width: 300px;
    height: auto;
}
@media (max-width: 992px) {
    .google-tick-content {
        flex-direction: column;
        text-align: center;
    }
    .google-image img {
        width: 220px;
        margin-top: 20px;
    }
    .google-text h2 {
        font-size: 26px;
    }
}
.faq-section {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 80px 5%;
    text-align: center;
    color: #01398F;
}
.faq-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}
.faq-subtext {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #000;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}
.faq-subtext a {
    color: #1B76FD;
    font-weight: 600;
    text-decoration: none;
}
.faq-subtext a:hover {
    text-decoration: underline;
}
.faq-list {
    max-width: 1050px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #01398F;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon {
    color: #01398F;
    font-size: 14px;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 18px;
    margin-top: -5px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-item.active .faq-question {
    color: #01398F;
}
@media (max-width: 768px) {
    .faq-title {
        font-size: 24px;
    }
    .faq-subtext {
        font-size: 15px;
    }
}
.footer-container {
    padding: 40px 5%;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}
.footer-about {
    flex: 1 1 60%;
    min-width: 280px;
}
.footer-logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.footer-about .logo-placeholder img.site-logo {
    width: 150px;
    height: auto;
    padding-bottom: 15px;
}
.footer-c {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
}
.footer-about p {
    font-size: 14px;
    color: #e2e2e2;
    line-height: 1.6;
    font-weight: 400;
    font-size: 22px;
    width: 600px;
}
.footer-contact a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.footer-contact a:hover {
    color: #e60017;
}
.footer-social {
    margin-top: 10px;
}
.footer-social a {
    color: #fff;
    font-size: 16px;
    margin-right: 12px;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: #e60017;
}
.footer-links {
    flex: 1 1 0%;
    min-width: 150px;
}
.footer-links h5 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}
.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links ul li {
    margin-bottom: 8px;
}
.footer-links ul li a {
    color: #e2e2e2;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links ul li a:hover {
    color: #fff;
}
.footer-bottom {
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 12px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom p {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
@media (max-width: 768px) {
    .newsletter {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        margin-top: 15px;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links {
        text-align: center;
    }
}
@media (max-width: 992px) {
    .hero-nav {
        margin-top: 12px;
        margin-left: 0;
        justify-content: center;
    }
    .hero-nav .nav {
        flex-wrap: wrap;
        gap: 8px 14px;
    }
    .hero-nav .nav-link {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .home-container {
        padding: 90px 16px;
    }
    .products-section {
        padding: 120px 16px;
    }
    .services-section {
        padding-top: 100px;
    }
    .about-section {
        padding: 48px 16px;
    }
    .hero-section {
        padding: 64px 18px;
    }
    .hero-nav {
        margin-top: 10px;
        margin-left: 0;
    }
    .hero-nav .nav-link {
        font-size: 16px;
    }
    .tagline-container {
        left: 0;
        bottom: 0;
        margin-top: 18px;
        max-width: 100%;
    }
    .hero-text {
        font-size: 18px;
        line-height: 150%;
    }
    .services-list p {
        font-size: 28px;
        line-height: 120%;
    }
    .section-title {
        font-size: 32px;
    }
    .product-card {
        width: 100%;
    }
    .newsletter {
        gap: 14px;
    }
    .newsletter-text {
        width: 100%;
    }
    .newsletter-text h4 {
        font-size: 20px;
    }
    .newsletter-text p {
        font-size: 14px;
        line-height: 150%;
    }
    .newsletter-form {
        width: 100%;
        height: 60px;
    }
    .newsletter-form button {
        height: 46px;
        width: 132px;
        margin: 7px 8px 7px 0;
    }
    .about-box {
        padding: 12px;
    }
    .footer-contact {
        display: inline-block;
    }
    .footer-section::after {
        display: none;
    }
}
@media (max-width: 576px) {
    .home-heading {
        font-size: 32px;
    }
    .home-subtext {
        font-size: 16px;
    }
    .testimonial-user img {
        width: 46px;
        height: 46px;
    }
    .ranking-row {
        gap: 16px;
    }
}
@media (max-width: 992px) {
    .hero-nav {
        margin-left: 0;
        justify-content: center;
    }
    .hero-nav .nav {
        flex-wrap: wrap;
        gap: 8px 12px;
    }
}
@media (max-width: 768px) {
    .services-section, .products-section, .ranking-section, .testimonial-section, .footer-section {
        overflow-x: hidden;
    }
    .hero-section {
        padding: 56px 16px;
    }
    .hero-nav {
        margin-top: 8px;
    }
    .hero-nav .nav-link {
        font-size: 15px;
    }
    .tagline-container {
        left: 0;
        bottom: 0;
        max-width: 100%;
    }
    .hero-text {
        font-size: 16px;
        line-height: 150%;
    }
    .floating-box {
        display: none !important;
    }
    .product-grid {
        gap: 18px;
    }
    .product-card {
        width: 100%;
        max-width: 100%;
    }
    .newsletter {
        gap: 12px;
    }
    .newsletter-text {
        width: 100%;
    }
    .newsletter-form {
        width: 100%;
        height: 58px;
    }
    .newsletter-form button {
        height: 44px;
        width: 124px;
        margin: 7px 8px 7px 0;
    }
    .footer-content {
        gap: 22px;
    }
    .footer-about, .footer-links {
        flex: 1 1 100%;
    }
    .footer-links {
        text-align: left;
    }
}
@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    .services-list p {
        font-size: 24px;
    }
    .home-heading {
        font-size: 28px;
    }
    .home-subtext {
        font-size: 15px;
    }
    .next-footer-section {
        min-height: 100vh;
        padding: 72px 16px;
    }
    .footer-links h5 {
        font-size: 15px;
    }
    .footer-links ul li a {
        font-size: 14px;
    }
}
.hero-logo {
    position: relative;
    z-index: 10;
    will-change: transform;
}

.home-header .logo-placeholder {
    position: relative;
}

.home-header .logo-placeholder .site-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
/* HIDE submenus by default */
nav .sub-menu,
.menu .sub-menu,
ul.menu .sub-menu,
ul.wp-block-navigation .sub-menu {
  display: none !important;
  position: absolute;
  left: 0;
  top: 100%;
  background: #ffffff;
  padding: 8px 0;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 9999;
}

/* Ensure parent li positions children correctly */
nav li,
.menu li,
ul.menu li,
ul.wp-block-navigation li {
  position: relative;
}

/* SHOW on hover (desktop) */
nav li:hover > .sub-menu,
.menu li:hover > .sub-menu,
ul.menu li:hover > .sub-menu,
ul.wp-block-navigation li:hover > .sub-menu {
  display: block !important;
}

/* small visual tweaks */
nav .sub-menu li { white-space: nowrap; }
.sub-menu,
.sub-menu li {
    list-style: none !important;
    list-style-type: none !important;
}

/* Also remove default left padding */
.sub-menu {
    padding-left: 0 !important;
    margin-left: 0 !important;
}