/* =========================================
CSS VARIABLES & RESET
========================================= */
:root {
--gray: #6B7280;
--cyan: #00A8CC;
--cyan-gradient: linear-gradient(to right, rgba(1, 180, 213, 1) 0%, rgba(7, 121, 183, 1) 51%, rgba(1, 180, 213, 1) 100%);
--cyan-dark: #008AAB;
--enfuse-blue:#01b4d5;
--navy: #212d39;
--navy-dark: #1a2530;
--red-accent: #E63946;
--bg-light: #F8FAFC;
--bg-white: #FFFFFF;
--text-dark: #111827;
--text-light: #666666;
--border: #E5E7EB;
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--radius: 12px;
--container: 90vw;
--transition: all 0.3s ease;
--dfont-size: 1.125rem;
--tab-active-bg: #f0f9ff;
--tab-active-border: #00A8CC;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
}

p, li {
font-size: var(--dfont-size);
margin: 0px;
}

* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}

body {
font-family: 'Poppins', sans-serif;
color: var(--text-dark);
line-height: 1.6;
overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ==========================================
Custom Page Scrollbar
========================================== */
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
width: 10px;
}

::-webkit-scrollbar-track {
background: #f5f5f5;
border-radius: 10px;
}

::-webkit-scrollbar-thumb {
background: #00A8CC;
border-radius: 10px;
border: 2px solid #f5f5f5;
}

::-webkit-scrollbar-thumb:hover {
background: #0089a6;
}

/* Firefox */
html {
scrollbar-width: thin;
scrollbar-color: #00A8CC #f5f5f5;
}

/* =========================================
UTILITIES  & LAYOUT
========================================= */
.container {
    max-width: var(--container);
    margin: 0 auto;
}

.section { padding: 50px 0; }

.section-title {
font-size: 2.3rem;
font-weight: 600;
color: var(--navy);
margin: 0px 0px 1rem;
line-height: 1.2;
}

.section-subtitle {
color: var(--text-light);
max-width: 70vw;
margin-bottom: 2.5rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Buttons */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 20px;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
transition: var(--transition);
border: 2px solid transparent;
font-size: 1rem;
}

.btn-primary {
background: var(--cyan-gradient);
background-size: 200% auto;
background-position: left center;
color: #fff;
border: none;
border-radius: 5px;
transition: background-position 0.5s ease, transform 0.3s ease !important;
}

.btn-primary:hover {
background-position: right center;
}

.btn-secondary {
background: transparent;
color: var(--navy);
border-color: var(--navy);
}

.btn-secondary:hover { background: var(--navy); color: white; }

.btn-red {
background: var(--red-accent);
color: white;
}

.btn-red:hover { background: #D62834; transform: translateY(-2px); }

/* Animations */
.fade-up {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
opacity: 1;
transform: translateY(0);
}

ul {
list-style: none;
margin: 0;
padding: 0;
}

ul li {
position: relative;
padding-left: 32px;
margin-bottom: 12px;
color: var(--text-light);
line-height: 1.6;
}

ul li::before {
content: "\f192";
position: absolute;
left: 1px;
top: 1px;
font-size: 16px;
font-family: 'FontAwesome';
color: #1d4b7d;
}

/* =========================================
HEADER & NAV
========================================= */
header {
position: sticky;
top: 0; left: 0; right: 0;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
border-bottom: 1px solid var(--border);
transition: var(--transition);
}

header.scrolled { box-shadow: var(--shadow); }

.nav-container {
display: flex;
align-items: center;
justify-content: space-between;
height: 70px;
}

.logo { width: 250px; }
.nav-container .btn i { display: none; }

/* =========================================
SECTION HIGHLIGHT TEXT (Reusable)
========================================= */

.section-highlight-text {
    text-align: center;
    font-size: 20px;
    padding: 12px 0;
    margin: 50px auto 0px;
    border-block: 1px solid;
}

.section-highlight-text--dark {
    color: var(--text-dark);
    border-color: var(--cyan);
    width: 70vw;
}

.section-highlight-text--light {
    color: var(--bg-white);
    border-color: #fff;
    width: 60vw;
}

@media (max-width: 1024px) {

    .section-highlight-text {
        font-size: 17px;
    }

    .section-highlight-text--dark {
        width: 75vw;
    }

    .section-highlight-text--light {
        width: 65vw;
    }
}

@media (max-width: 768px) {

    .section-highlight-text {
        width: 90%;
        font-size: 16px;
        line-height: 1.6;
        padding: 10px 0;
        margin: 35px auto 0px;
    }
}

@media (max-width: 480px) {

    .section-highlight-text {
        width: 95%;
        font-size: 15px;
        line-height: 1.7;
        margin: 30px auto 0px;
    }
}


/* =========================================
HERO SECTION
========================================= */
.hero {
padding: 50px 0px;
background: url(/assets/image/inner-top-bg.png);
position: relative;
overflow: hidden;
background-position: center;
background-repeat: no-repeat;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(0, 168, 204, 0.15) 0%, transparent 70%); 
border-radius: 50%;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
position: relative;
z-index: 1;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
font-size: 2.8rem;
font-weight: 600;
line-height: 1.1;
color: var(--navy);
}

.hero p {
color: var(--text-light);
margin: 20px 0px 20px 0px;
max-width: 700px;
}

.hero-bullets {
margin: 1.5rem 0;
}

.hero-image {
display: flex;
justify-content: center;
align-items: center;
}

.masthead-img {
max-width: 100%;
height: auto;
border-radius: var(--radius);
}
/* =========================================
ENHANCED KPI SECTION
========================================= */
.kpi-counter {
background: var(--navy);
padding: 50px 0;
position: relative;
overflow: hidden;
}

/* Subtle background decorative elements */
.kpi-counter::before {
content: '';
position: absolute;
top: -50%;
left: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(0, 168, 204, 0.08) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
}

.kpi-counter::after {
content: '';
position: absolute;
bottom: -30%;
right: -5%;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(1, 180, 213, 0.06) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
}

.kpi-counter .container {
position: relative;
z-index: 1;
}

/* KPI Heading */
.kpi-heading {
text-align: center;
max-width: 900px;
margin: 0 auto 1.5rem;
padding: 0 1rem;
}

.kpi-heading h2 {
font-size: 2rem;
font-weight: 600;
color: #fff;
line-height: 1.3;
margin: 0;
letter-spacing: -0.02em;
}

.result-text p {
    color: #fff;
    font-size: 18px;
}

/* Enhanced KPI Grid */
.kpi-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
text-align: center;
position: relative;
}

.kpi-item {
padding: 2rem 1.5rem;
position: relative;
transition: transform 0.3s ease;
}

/* Vertical dividers between KPI items */
.kpi-item:not(:last-child)::after {
content: '';
position: absolute;
right: 0;
top: 20%;
height: 60%;
width: 1px;
background: rgba(255, 255, 255, 0.1);
}

/* KPI Numbers */
.kpi-number {
font-size: 4.5rem;
font-weight: 800;
color: #fff;
line-height: 1;
margin-bottom: 1rem;
letter-spacing: -0.03em;
}

.kpi-suffix {
font-size: 3rem;
margin-left: 0.25rem;
}

/* KPI Labels */
.kpi-label {
color: rgba(255, 255, 255, 0.85);
font-size: 0.95rem;
line-height: 1.6;
margin: 0;
max-width: 220px;
margin-left: auto;
margin-right: auto;
}

/* KPI Footer Text */
.kpi-footer {
margin-top: 1.5rem;
text-align: center;
}

/* =========================================
PROBLEM/SOLUTION TAB SECTION
========================================= */
.problem-solution {
background: var(--bg-white);
padding: 40px 0;
}

.section-header {
margin-bottom: 3rem;
}

.tab-container {
max-width: 100%;
margin: 0 auto;
}

.tab-buttons {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
justify-content: center;
flex-wrap: wrap;
}

.tab-btn {
padding: 14px 32px;
font-size: 1.1rem;
font-weight: 600;
border: 2px solid var(--border);
background: var(--bg-white);
color: var(--text-dark);
border-radius: 50px;
cursor: pointer;
transition: var(--transition);
font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
color: var(--cyan);
}

.tab-btn.active {
background: var(--enfuse-blue);
color: #fff;
}

.tab-content {
display: none;
animation: fadeIn 0.4s ease;
}

.tab-content.active {
display: block;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}

.tab-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
background: var(--bg-light);
padding: 3rem;
border-radius: var(--radius);
border: 1px solid var(--border);
}

.tab-image img {
width: 80%;
height: auto;
border-radius: 8px;
}

.tab-text h3 {
font-size: 2rem;
font-weight: 700;
color: var(--navy);
margin-bottom: 1.5rem;
line-height: 1.2;
}

.tab-list {
margin: 0;
padding: 0;
}

.tab-list li {
position: relative;
padding-left: 36px;
margin-bottom: 1rem;
color: var(--text-dark);
font-size: 1.1rem;
line-height: 1.6;
}

.tab-list li::before {
content: "\f054";
font-family: 'FontAwesome';
position: absolute;
left: 0;
top: 4px;
color: var(--cyan);
font-size: 14px;
font-weight: bold;
}

.ps-bottom {
margin-top: 2rem;
padding: 1.5rem;
background: var(--navy);
color: white;
border-radius: var(--radius);
text-align: center;
font-weight: 600;
font-size: 1.3rem;
}

/* =========================================
WHY NOW
========================================= */
.why-now .section-title { margin-bottom: 2rem; }
.why-now { background: var(--bg-light); }

.why-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.why-list { margin: 1.5rem 0; }

.why-highlight {
background: white;
padding: 2rem;
border-radius: var(--radius);
box-shadow: var(--shadow);
border-left: 4px solid var(--cyan);
}

.why-highlight h4 { color: var(--enfuse-blue); margin-bottom: 0.5rem; }

/*=========================================
INDUSTRY MARQUEE
=========================================*/

.industry-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 50px 0;
    border-top: 8px solid var(--cyan);
    padding: 20px;
    background: var(--navy);
    border-radius: 21px;
}

.industry-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.industry-marquee:hover .industry-track {
    animation-play-state: paused;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    text-align: center;
}

.industry-item img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform .3s ease;
}

.industry-item:hover img {
    transform: scale(1.08);
}

.industry-item span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

/* Infinite Animation */

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*==========================
Tablet
==========================*/

@media (max-width:992px){

    .industry-track{
        gap:45px;
        animation-duration:32s;
    }

    .industry-item{
        min-width:110px;
    }

    .industry-item img{
        width:55px;
        height:55px;
    }

    .industry-item span{
        font-size:14px;
    }
}

/*==========================
Mobile
==========================*/

@media (max-width:768px){

    .industry-marquee{
        margin:35px 0;
        padding:16px 0;
    }

    .industry-track{
        gap:35px;
        animation-duration:25s;
    }

    .industry-item{
        min-width:90px;
    }

    .industry-item img{
        width:45px;
        height:45px;
        margin-bottom:8px;
    }

    .industry-item span{
        font-size:13px;
    }
}

/* ==========================================================
   WORKSTREAMS SECTION
========================================================== */

/* Fix Swiper edge clipping */

.workstreams {
    background: #fff;
}

/* ==========================================================
   SWIPER
========================================================== */

.workstreamSwiper {
    padding: 0 15px !important;
}


.workstreamSwiper .swiper-slide {
    height: auto;
    display: flex;
}

/* ==========================================================
   CARD
========================================================== */

.ws-card {

    border-radius: 20px;

    box-shadow: 0 9px 25px -8px rgba(9, 62, 91, 0.24);

    display: flex;
    flex-direction: column;

    transition: .35s ease;
}

/* ==========================================================
   TOP
========================================================== */

.ws-card-top {

    position: relative;

    height: 215px;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

}

.ws-artwork {

    width: 100%;
    height: auto;

    display: block;

}

.ws-card-top img {
    width: 68%;
}

/* ==========================================================
   NUMBER
========================================================== */

.ws-card-number {

    position: absolute;

    right: 0px;
    bottom: 22px;

    display: flex;
    align-items: center;

    gap: 12px;

}

.ws-line {

    width: 64px;
    height: 2px;

    background: var(--cyan);

}

.ws-card-number span {
    font-size: 30px;
    font-weight: 700;
    color: var(--cyan);
    border-block: 2px solid var(--cyan);
    width: 90px;
    text-align: center;
}

/* ==========================================================
   BODY
========================================================== */

.ws-card-body {

    padding: 30px;

    display: flex;
    flex-direction: column;

    flex: 1;

}

.ws-card-body h3 {

    font-size: 1.3rem;

    font-weight: 700;

    color: var(--navy);

    margin-bottom: 18px;

    line-height: 1.35;

}

.ws-card-body p {

    font-size: 16px;

    line-height: 1.8;

    color: #5E6977;

    margin: 0;

}

/* ==========================================================
   PAGINATION
========================================================== */

.workstreamSwiper .swiper-pagination {

    position: relative;

    margin-top: 35px;

}

.workstreamSwiper .swiper-pagination-bullet {

    width: 8px;
    height: 8px;

    background: #D9D9D9;

    opacity: 1;

    transition: .35s;

    border-radius: 30px;

}

.workstreamSwiper .swiper-pagination-bullet-active {

    width: 34px;

    background: var(--cyan);

}

/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width:1200px) {

    .workstreams .container {

        padding-inline: 40px;

    }

    .ws-card {

        min-height: 500px;

    }

}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width:992px) {

    .workstreams .container {

        padding-inline: 30px;

    }

    .workstreamSwiper {

        padding-bottom: 60px;

    }

    .ws-card {

        min-height: 470px;

    }

    .ws-card-top {

        height: 190px;

    }

    .ws-card-body {

        padding: 24px;

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px) {

    .workstreams .container {

        padding-inline: 16px;

    }

    .workstreamSwiper {

        padding-bottom: 50px;

    }

    .ws-card {

        min-height: auto;

    }

    .ws-card-top {

        height: 170px;

    }

    .ws-card-number {

        right: 22px;
        bottom: 18px;

    }

    .ws-line {

        width: 42px;

    }

    .ws-card-number span:last-child {

        font-size: 28px;

    }

    .ws-card-body {

        padding: 22px;

    }

    .ws-card-body h3 {

        font-size: 1.15rem;

    }

    .ws-card-body p {

        font-size: 15px;

        line-height: 1.7;

    }

}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width:480px) {

    .workstreams .container {

        padding-inline: 12px;

    }

    .ws-card-top {

        height: 155px;

    }

    .ws-card-body {

        padding: 18px;

    }

    .ws-card-body h3 {

        font-size: 1.05rem;

    }

    .ws-card-body p {

        font-size: 14px;

    }

}
/* =========================================
90-DAY MODEL
========================================= */

.model ul li {
    padding-left: 0px;
}

.model ul li::before {
    display: none;
}

.model{
    background:#F8FAFC;
    overflow:hidden;
    padding:100px 0;
}

.phaseSwiper{
    width:100%;
    padding:20px 0 60px;
}

.phaseSwiper .swiper-wrapper{
    align-items:stretch;
}

.phaseSwiper .swiper-slide{
    height:auto;
    display:flex;
}

.phase-card{
    position:relative;
    width:100%;
    display:flex;
    flex-direction:column;
    padding:42px 34px;
    border-radius:20px;
    background:linear-gradient(180deg,#FFF 0%,#E4E9EF 100%);
    box-shadow:0 4px 5px rgba(9,62,91,.15);
    overflow:hidden;
    transition:.35s ease;
    min-height:620px;
    border: 1px solid #C9D3DD;
}

.phase-bg-left,
.phase-bg-right{
    position:absolute;
    background-repeat:no-repeat;
    background-size:contain;
    pointer-events:none;
    z-index:0;
}

.phase-bg-left{
    left:-35px;
    bottom: 386px;
    width:180px;
    height:180px;
    background-image:url("../image/phase-bg-left.svg");
}

.phase-bg-right{
    top:-25px;
    right:-25px;
    width:140px;
    height:140px;
    background-image:url("../image/phase-bg-right.svg");
}

.phase-header,
.phase-divider,
.phase-list{
    position:relative;
    z-index:2;
}

.phase-header{
    text-align:center;
}

.phase-icon{
    width:110px;
    height:auto;
    margin:0 auto 26px;
    display:block;
}

.phase-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 24px;
    border-radius:999px;
    background:linear-gradient(90deg,#01B4D5,#0A9BD8);
    color:#fff;
    font-weight:600;
    font-size:16px;
    margin-bottom:24px;
}

.phase-header h3{
    margin:0;
    font-size:24px;
    line-height:1.3;
    color:#1F2E3D;
    font-weight:700;
}

.phase-divider{
    margin:28px 0 34px;
    text-align:center;
    border-top:3px dashed #C9D3DD;
    border-bottom:3px dashed #C9D3DD;
    padding:12px 0;
}

.phase-divider span{
    color:#0B91D5;
    font-size:18px;
    font-weight:500;
}

.phase-list{
    list-style:none;
    margin:0;
    padding:0;
}

.phase-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
    color:#5A6572;
    font-size:18px;
    line-height:1.45;
}

.phase-list li img{
    width:14px;
    margin-top:6px;
    flex-shrink:0;
}

.model-cta{
    text-align:center;
    margin-top:40px;
}

.model .swiper-pagination {
    padding: 15px;
    position: static !important;
}

.model .swiper-pagination-bullet-active {
    background: var(--cyan);
}

@media(min-width:1024px){
    .phaseSwiper .swiper-wrapper{
        display:grid!important;
        grid-template-columns:repeat(3,1fr);
        gap:30px;
        transform:none!important;
    }
    .phaseSwiper .swiper-slide{
        width:auto!important;
        margin:0!important;
    }
    .phaseSwiper .swiper-pagination{
        display:none;
    }
}

@media(max-width:1023px){
    .phase-card{
        min-height:590px;
        padding:36px 28px;
    }
}

@media(max-width:767px){
    .model{
        padding:70px 0;
    }
    .phase-card{
        min-height:auto;
        padding:30px 22px;
    }
    .phase-icon{
        width:85px;
    }
    .phase-header h3{
        font-size:22px;
    }
    .phase-divider span{
        font-size:16px;
    }
    .phase-list li{
        font-size:16px;
    }
}


/* =========================================
WHO IT'S FOR
========================================= */
@media (min-width: 1080px) {
.audience .section-title {
width: 70vw;
margin: auto;
margin-bottom: 1rem;
}
}

.audience { background: var(--bg-white); }

.aud-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.aud-card {
padding: 2rem;
border-radius: var(--radius);
border: 1px solid var(--border);
transition: var(--transition);
text-align: center;
}

.aud-card:hover {
border-color: var(--cyan);
box-shadow: var(--shadow-lg);
}

.aud-icon {
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
padding: 15px;
}

.aud-icon img {
width: 100%;
height: 100%;
object-fit: contain;
}

.aud-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.75rem; }
.aud-card p { color: var(--text-light); }

/* =========================================
WHY ENFUSE
========================================= */
.why-enfuse { background: var(--bg-light); }
.why-enfuse strong { color: var(--cyan) !important; }

.enf-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.enf-content h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; }
.enf-content p { color: var(--text-light); margin-bottom: 1.5rem; }
.enf-list { margin-top: 1.5rem; }

.enf-visual {
background: white;
padding: 2rem;
border-radius: var(--radius);
box-shadow: var(--shadow);
border-left: 4px solid var(--cyan);
}

.enf-visual h4 { color: var(--enfuse-blue); margin-bottom: 1rem; }

/* =========================================
FINAL CTA
========================================= */
.final-cta {
background: white;
text-align: center;
padding: 50px 0px;
display: flex;
flex-direction: column;
gap: 30px;
}

.final-cta h2 { font-size: 2.5rem; margin: 0px 0px 1rem; color: var(--navy); }
.final-cta p { max-width: 600px; margin: 0 auto 1.5rem; opacity: 0.9; color: var(--text-light); }

.final-cta-list {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1.5rem;
margin-bottom: 1.5rem;
font-weight: 500;
}

.final-cta-list li {
color: #fff;
display: flex;
color: var(--text-light);
align-items: center;
gap: 0.5rem;
}

.final-cta-list li::before { color: var(--cyan); }

/* =========================================
FOOTER
========================================= */
footer {
background: var(--navy-dark);
color: #fff;
padding: 40px 0 20px;
border-top: 2px solid #1c4150;
}

.footer-main {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 2rem;
gap: 3rem;
}

.footer-quick-contact h4,
.footer-follow-us h4 {
color: #fff;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 1rem;
}

.contact-details {
list-style: none;
padding: 0;
margin: 0;
}

.contact-details li {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.75rem;
padding-left: 0;
}

.contact-details li::before {
content: none;
}

.contact-details li i {
color: var(--cyan);
font-size: 1rem;
width: 20px;
text-align: center;
}

.contact-details li a {
color: rgba(255, 255, 255, 0.85);
transition: var(--transition);
}

.contact-details li a:hover {
color: var(--cyan);
}

.social-icons {
display: flex;
gap: 1rem;
}

.social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(0, 168, 204, 0.15);
border-radius: 50%;
color: var(--cyan);
font-size: 1rem;
transition: var(--transition);
}

.social-icons a:hover {
background: var(--cyan);
color: #fff;
transform: translateY(-3px);
}

.footer-bottom {
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
font-size: 0.9rem;
}

.footer-bottom p {
margin: 0;
color: rgba(255, 255, 255, 0.7);
font-size: 16px;
}

.footer-bottom a {
color: var(--cyan);
}

.footer-bottom a:hover {
color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
footer {
padding: 30px 0 20px;
}

.footer-main {
flex-direction: column;
align-items: center;
text-align: center;
gap: 2rem;
}

.footer-quick-contact,
.footer-follow-us {
width: 100%;
}

.contact-details li {
justify-content: center;
}

.social-icons {
justify-content: center;
}
}

@media (max-width: 480px) {
.social-icons {
gap: 0.75rem;
}

.social-icons a {
width: 36px;
height: 36px;
font-size: 0.9rem;
}
}

/* =========================================
BACK TO TOP BUTTON
========================================= */
.back-to-top {
position: fixed;
right: calc(20px + env(safe-area-inset-right));
bottom: calc(24px + env(safe-area-inset-bottom));
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
border: none;
border-radius: 50%;
background: var(--cyan);
cursor: pointer;
overflow: hidden;
padding: 0;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
opacity: 0;
visibility: hidden;
transform: translateY(20px) scale(0.9);
transition:
opacity .3s ease,
visibility .3s ease,
transform .3s ease,
background-color .3s ease,
box-shadow .3s ease;
z-index: 9999;
}

/* Show Button */
.back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0) scale(1);
}

/* Hover */
.back-to-top:hover {
background: var(--cyan-dark);
transform: translateY(-4px) scale(1.05);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

/* Click Effect */
.back-to-top:active {
transform: scale(0.95);
}

/* Icon */
.back-to-top i {
position: relative;
z-index: 2;
color: #fff;
font-size: 18px;
line-height: 1;
pointer-events: none;
}

/* =========================================
PROGRESS RING
========================================= */
.progress-ring {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
transform: rotate(-90deg);
pointer-events: none;
}

.progress-ring-circle-bg {
fill: none;
stroke: rgba(255, 255, 255, 0.25);
stroke-width: 3;
}

.progress-ring-circle {
fill: none;
stroke: #fff;
stroke-width: 3;
stroke-linecap: round;
/* r = 24 */
stroke-dasharray: 150.8;
stroke-dashoffset: 150.8;
transition: stroke-dashoffset .15s linear;
}

/* =========================================
TABLET
========================================= */
@media (max-width: 992px) {
.back-to-top {
width: 54px;
height: 54px;
right: 18px;
bottom: 24px;
}

.back-to-top i {
font-size: 17px;
}
}

/* =========================================
MOBILE
========================================= */
@media (max-width: 768px) {
.back-to-top {
width: 52px;
height: 52px;
right: 16px;
bottom: 32px;
}

.back-to-top i {
font-size: 16px;
}
}

/* =========================================
SMALL DEVICES
========================================= */
@media (max-width: 480px) {
.back-to-top {
width: 48px;
height: 48px;
right: 14px;
bottom: 28px;
}

.back-to-top i {
font-size: 15px;
}
}

/* =========================================
ACCESSIBILITY
========================================= */
@media (prefers-reduced-motion: reduce) {
.back-to-top,
.progress-ring-circle {
transition: none;
}
}

/* =========================================
MODAL STYLES
========================================= */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
display: flex;
align-items: center;
justify-content: center;
z-index: 10000;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
padding: 15px;
}

.modal-overlay.active {
opacity: 1;
visibility: visible;
}

.modal-container {
background: white;
border-radius: var(--radius);
max-width: 600px; /* Optimized width for premium form proportion */
width: 100%;
max-height: 90vh;
overflow-y: auto;
position: relative;
transform: scale(0.9);
transition: transform 0.3s ease;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
transform: scale(1);
}

.modal-close {
position: absolute;
top: 15px;
right: 15px;
background: var(--bg-light);
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
z-index: 10;
color: var(--text-dark);
font-size: 1.2rem;
}

.modal-close:hover {
background: var(--cyan);
color: white;
transform: rotate(90deg);
}

.modal-content {
padding: 25px;
}

.modal-header {
text-align: center;
margin-bottom: 32px; /* Increased spacing for better hierarchy */
}

.modal-header h2 {
font-size: 1.8rem;
color: var(--navy);
margin-bottom: 8px;
font-weight: 600;
}

.modal-header p {
color: var(--text-light);
font-size: 1rem;
line-height: 1.5;
}

.modal-body {
min-height: 300px;
}

/* =========================================
HUBSPOT FORM STYLING
========================================= */
#hubspot-form-container .hs-form-field {
margin-bottom: 1.5rem;
}

#hubspot-form-container .hs-input {
width: 100%;
padding: 12px 16px;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 1rem;
font-family: 'Poppins', sans-serif;
transition: var(--transition);
}

#hubspot-form-container .hs-input:focus {
outline: none;
border-color: var(--cyan);
box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

#hubspot-form-container .hs-button {
background: var(--cyan-gradient);
background-size: 200% auto;
background-position: left center;
color: white;
padding: 14px 32px;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background-position 0.5s ease, transform 0.3s ease;
width: 100%;
font-family: 'Poppins', sans-serif;
}

#hubspot-form-container .hs-button:hover {
background-position: right center;
transform: translateY(-2px);
}

#hubspot-form-container label {
display: block;
margin-bottom: 0.5rem;
color: var(--text-dark);
font-weight: 500;
font-size: 0.95rem;
}

/* =========================================
PREMIUM BROCHURE FORM STYLING
========================================= */
.brochure-form .form-group {
margin-bottom: 24px; /* Consistent 24px spacing between fields */
}

.brochure-form label {
display: block;
margin-bottom: 8px;
color: var(--text-dark);
font-weight: 500;
font-size: 14px;
}

.brochure-form .required {
color: red; /* Primary brand color for asterisk */
margin-left: 2px;
}

.brochure-form input {
width: 100%;
height: 45px; /* Premium input height */
padding: 0 16px;
border: 1px solid var(--navy);
border-radius: 10px; /* Slightly more rounded for modern look */
font-size: 1rem;
font-family: 'Poppins', sans-serif;
color: var(--text-dark);
background: #fff;
transition: all 0.3s ease;
}

.brochure-form input::placeholder {
color: #9CA3AF; /* Lighter placeholder text */
font-weight: 400;
}

.brochure-form input:focus {
outline: none;
}

.brochure-form input.error {
border-color: var(--red-accent);
}

.brochure-form input.error:focus {
box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.error-message {
display: block;
color: var(--red-accent);
font-size: 13px;
margin-top: 6px; /* 6-8px spacing below input */
min-height: 1.2em;
font-weight: 500;
}

/* CTA Button with Loading State */
.brochure-submit {
width: 100%;
height: 54px;
border-radius: 10px;
font-size: 1rem;
font-weight: 600;
margin-top: 8px; /* Creates 32px total gap from last field */
box-shadow: 0 4px 12px rgba(0, 168, 204, 0.2);
transition: all 0.3s ease;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}

.brochure-submit:hover:not(:disabled) {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 168, 204, 0.3);
}

.brochure-submit:disabled {
opacity: 0.8;
cursor: not-allowed;
}

.brochure-submit .btn-loader {
display: flex;
align-items: center;
gap: 8px;
}

/* Trust Message */
.trust-message {
text-align: center;
color: var(--text-light);
font-size: 13px;
margin-top: 16px;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
}

.trust-message i {
color: var(--cyan);
font-size: 12px;
}

/* =========================================
SUCCESS STATE
========================================= */
.success-message {
text-align: center;
padding: 20px 0;
}

.success-message .success-icon {
width: 80px;
height: 80px;
background: rgba(0, 168, 204, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
}

.success-message .success-icon i {
font-size: 40px;
color: var(--cyan);
}

.success-message h3 {
font-size: 1.8rem;
color: var(--navy);
margin-bottom: 12px;
font-weight: 600;
}

.success-message p {
color: var(--text-light);
font-size: 1rem;
line-height: 1.6;
margin-bottom: 8px;
}

.success-close-btn {
margin-top: 24px;
width: 100%;
max-width: 200px;
height: 48px;
border-radius: 10px;
font-size: 1rem;
font-weight: 600;
}

/* Prevent body scroll when modal is open */
body.modal-open {
overflow: hidden;
}

/* =========================================
RESPONSIVE MODAL
========================================= */
@media (max-width: 768px) {
.modal-container {
max-width: 100%;
max-height: 95vh;
}

.modal-content {
padding: 30px 20px;
}

.brochure-form input {
height: 50px;
}

.brochure-submit {
height: 50px;
}

#brochureContent .modal-header h2 {
font-size: 1.5rem;
}
}

/* =========================================
RESPONSIVE
========================================= */
@media (max-width: 1024px) {
.hero h1 { font-size: 2.5rem; }
.hero-grid { grid-template-columns: 1fr; gap: 2rem; }
.hero-image { order: -1; }
.ws-grid { grid-template-columns: repeat(2, 1fr); }
.timeline { grid-template-columns: 1fr; gap: 1.5rem; }
.kpi-grid { grid-template-columns: repeat(2, 1fr); }
.tab-grid { grid-template-columns: 1fr; }
.section-subtitle {max-width: 100vw;}

.kpi-heading h2 {
font-size: 1.75rem;
}

.kpi-item {
padding: 1.5rem 1rem;
}

.kpi-number {
font-size: 3.5rem;
}

.kpi-suffix {
font-size: 2.5rem;
}
}

@media (max-width: 768px) {
.section { padding: 60px 0; }
.section-title { font-size: 1.75rem; }
.nav-links { display: none; }
.mobile-toggle { display: block; }
.nav-links.active {
display: flex;
flex-direction: column;
position: absolute;
top: 70px;
left: 0;
right: 0;
background: white;
padding: 1.5rem;
box-shadow: var(--shadow);
gap: 1rem;
}

.hero { padding-top: 50px; }
.hero h1 { font-size: 2rem; }
.hero-bullets { grid-template-columns: 1fr; }
.why-grid, .enf-grid { grid-template-columns: 1fr; }
.ws-grid, .aud-grid { grid-template-columns: 1fr; }
.hero .btn { width: 100%; }
.final-cta h2 { font-size: 1.75rem; }
.nav-container .btn span { display: none; }
.nav-container .btn { padding: 13px 15px; }
.nav-container .btn i { display: block; font-size: 20px; }
.logo { width: 200px; }
.kpi-number { font-size: 3rem; }
.kpi-suffix { font-size: 2rem; }
.tab-grid { padding: 1.5rem; }
.tab-text h3 { font-size: 1.5rem; }
.tab-btn { padding: 12px 24px; font-size: 1rem; }
.ps-bottom, .ws-banner { font-size: 1.1rem; }
.contact-list { flex-direction: column; gap: 1rem; }
.back-to-top { bottom: 20px; right: 20px; width: 50px; height: 50px; }
.progress-ring { width: 50px; height: 50px; }
.progress-ring-circle-bg, .progress-ring-circle { r: 21; }
.back-to-top i { font-size: 1rem; }

.kpi-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}

/* Remove vertical dividers on mobile */
.kpi-item:not(:last-child)::after {
display: none;
}

.kpi-item {
padding: 1.5rem;
}

.kpi-number {
font-size: 3rem;
}

.kpi-suffix {
font-size: 2rem;
}

.kpi-label {
font-size: 0.9rem;
max-width: 100%;
}

.kpi-heading h2 {
font-size: 1.5rem;
}
}

@media (max-width: 480px) {
.kpi-grid { grid-template-columns: 1fr; }
.tab-buttons { flex-direction: column; }
.tab-btn { width: 100%; }

.kpi-number {
font-size: 3.5rem;
}

.kpi-suffix {
font-size: 2.5rem;
}
}

@media (max-width: 480px) {
.hero-image {
    display: none;
}
}