:root {
    /* Primary Colors */
    --primary: #002A64;
    --primary-light: #1DA1F2;
    --primary-dark: #0A5EA8;

    /* Gradients */
    --gradient-primary: linear-gradient(180deg, #0E7AC7 0%, #0A5EA8 100%);

    /* Neutral */
    --heading-color: #0B1F3A;
    --text-color: #00000;
    --white: #ffffff;
    --border-color: #E5EAF0;

    /* Backgrounds */
    --light-bg: #EAF6FF;

    /* Accent */
    --cta: #0D6EFD;

    /* Spacing */
    --section-padding: 50px;
    --card-padding: 24px;

    /* Radius */
    --radius: 12px;

    /* Shadow */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* .section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
} */

.section-label {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    color: var(--primary);
    text-transform: capitalize;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 6px;
    font-weight: 300;
}

/* UNDERSCORE LINE */
.section-label::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;

    width: 75px;   /* adjust based on design */
    height: 1px;

    background: #0148B5;
    border-radius: 2px;
}

.section-label.left::after {
    left: 0;
    transform: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Belanosima", sans-serif;
    color: var(--heading-color);
    font-weight: 400;
    margin-bottom: 15px;
}

h1 {
    font-size: 58px;
    font-weight: 700;
}

h2 {
    font-size: 51px;
}

h3 {
    font-size: 40px;
}
h4{
    font-size:30px;
}

.section {
    padding: var(--section-padding) 0;
}

.container-custom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.gap-30 {
    gap: 30px;
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
}

.btn-outline-custom {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 51px;
    font-weight: 400;
    background: linear-gradient(90deg, #014ABA, #00327C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    max-width: 1020px;
    margin: 0 auto;
}

.card-custom {
    background: #fff;
    padding: var(--card-padding);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    height: 100%;
}


/* TOP BAR */
.top-bar {
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
    padding: 10px 0;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-item i {
    font-size: 13px;
}

.top-left,
.top-right {
    gap: 20px;
}

.top-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.4);
}

/* NAVBAR */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* LOGO */
.navbar-brand img {
    height: 60px;
}

/* MENU */
.navbar-nav {
    gap: 35px;
}

.navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 400;
    position: relative;
}

/* ACTIVE UNDERLINE */
.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #0E7AC7;
    border-radius: 2px;
}

/* Hover Effect (Subtle underline like PDF) */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* CTA BUTTON */
.cta-btn {
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    opacity: 0.9;
}

.hero-slider {
    position: relative;
}

/* IMAGE HEIGHT CONTROL */
.hero-slider img {
    height: auto;
    object-fit: cover;
}

/* ARROWS */
.custom-arrow {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.custom-arrow i {
    color: #333;
    font-size: 18px;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* REMOVE DEFAULT ICONS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* DOTS (IMPORTANT - MATCH YOUR SS) */
.custom-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* SMALL DOTS */
.custom-indicators span {
    width: 8px;
    height: 8px;
    background: #bcd3ea;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

/* ACTIVE LONG DOT */
.custom-indicators span.active {
    width: 40px;
    height: 6px;
    border-radius: 10px;
    background: #0E7AC7;
}

/* ABOUT SECTION */

.about-section {
    position: relative;
    background: url('../images/about-bg.png') no-repeat center center;
    background-size: cover;
    padding: var(--section-padding) 0;
    height: fit-content;
}

/* SOFT BLUE OVERLAY */
.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.90) 30%,
            rgba(255, 255, 255, 0.92) 60%,
            rgba(255, 255, 255, 0.90) 100%);
}

/* KEEP CONTENT ABOVE OVERLAY */
.about-section .container-custom {
    position: relative;
    z-index: 2;
}

.home-about-section .container-custom{
    max-width: 1490px;
}

/* .about-section {
    background: #f5f9fd;
} */

/* IMAGE */
.about-image img {
    width: 100%;
}

/* CONTENT */
.about-content {
    padding-left: 20px;
}

/* HEADING */
.about-content h2 {
    font-size: 51px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #014ABA, #00327C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}


/* PARAGRAPH */
.about-content p {
    margin-bottom: 25px;
}

/* FEATURES */
.about-features {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

/* FEATURE ITEM */
.feature-item {
    display: flex;
    gap: 10px;
}

/* ICON BOX */
.icon-box {
    width: 45px;
    height: 45px;
    background: #014ABA;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

/* TEXT */
.feature-text h5 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight:500;
}

/* BUTTON */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 20px;
    text-decoration: none;
    margin-top: 20px;
}

.logo-strip {
    background: #fff;
    /* padding: 25px 0; */
}

.logo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-item {
    flex: 1;
    text-align: center;
}

.logo-item img {
    max-height: 30px;
    opacity: 0.8;
    transition: 0.3s;
}

.logo-item img:hover {
    opacity: 1;
}

/* SECTION */
.capabilities-section {
    background: #f5f9fd;
}

/* TITLE */
.capabilities-section .section-title {
    max-width: 1020px;
    margin: 0 auto 50px;
    text-align: center;
}

/* CARDS */
.cap-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    padding-bottom: 25px;
}

/* IMAGE */
.cap-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* CONTENT */
.cap-content {
    text-align: center;
    padding: 40px 25px 20px;
}

/* BLUE PILL BUTTON (EXACT MATCH) */
.cap-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 145px;
    color: #fff;
    width: 80%;
    text-align: center;
    background: url(../images/poligoan.png);
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 82px;
    margin: auto;
    text-align: center;
    padding-top: 15px;
}

/* TEXT */
.cap-content p {
    font-size: 16px;
}

/* BUTTON */
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #36C1F0, #0153C5);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
}

/* SPACING */
.mt-40 {
    margin-top: 40px;
}

/* SECTION */
.stats-section {
    position: relative;
    background: url('../images/counter-bg.png') no-repeat center center;
    background-size: cover;
    padding: 50px 0;
    color: #fff;
}

/* OVERLAY (SUBTLE BLUE) */
/* .stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,122,199,0.95), rgba(29,161,242,0.85));
} */

/* CONTENT ABOVE */
.stats-section .container-custom {
    position: relative;
    z-index: 2;
}

/* ITEM */
.stats-item {
    padding: 20px;
}

/* ICON IMAGE */
.stats-item img {
    height: 90px;
    margin-bottom: 10px;
}

/* NUMBER */
.stats-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin-bottom: 5px;
    color: #fff;
}

/* TEXT */
.stats-item p {
    font-size: 14px;
    margin: 0;
    color: #e6f2ff;
}

/* VERTICAL DIVIDER */
.border-left {
    border-left: 1px dashed rgba(255, 255, 255, 0.4);
}

/* SECTION */
.franchise-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: url('../images/franchise-bg.png') no-repeat center center;
    background-size: cover;
    /* height: 100vh; */
    /* padding: 80px 0; */
}

/* LIGHT OVERLAY (SUBTLE LIKE SS) */
/* .franchise-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.90) 40%,
        rgba(255,255,255,0.80) 70%,
        rgba(255,255,255,0.60) 100%
    );
} */

/* CONTENT ABOVE */
.franchise-section .container-custom {
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */
.franchise-main-img img {
    width: 100%;
    border-radius: 16px;
}

/* THUMBNAILS */
.franchise-thumbs {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.franchise-thumbs .thumb {
    width: 100%;
    height: 80px;
    background: #dcdcdc;
    border-radius: 12px;
}

.franchise-thumbs .thumb img {
    height: 80px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* RIGHT CONTENT */
.franchise-content {
    padding-left: 30px;
}

.franchise-content h2 {
    font-size: 44px;
    margin-bottom: 15px;
}

.sub-heading {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000 !important;
}

.franchise-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* SECTION */
.what-section {
    background: #f5f9fd;
}

/* TITLE */
.what-section .section-title {
    /*max-width: 860px;*/
    margin: 0 auto 60px;
}

/* ITEM */
.what-item {
    padding: 10px 15px;
}

/* ICON */
.what-item img {
    height: 150px;
    margin-bottom: 15px;
}

/* HEADING */
.what-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

/* TEXT */
.what-item p {
    font-size: 16px;
    /* max-width: 240px; */
    margin: 0 auto;
}

/* SECTION */
.investment-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: url('../images/success-bg.png') no-repeat center center;
    background-size: cover;
    /* height: 1050px; */
    color: #fff;
}

/* OVERLAY (MATCH BLUE WAVES LOOK) */
/* .investment-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,122,199,0.95), rgba(29,161,242,0.9));
} */

/* CONTENT ABOVE */
.investment-section .container-custom {
    position: relative;
    z-index: 2;
}

/* LEFT */
.investment-left h2 {
    color: #fff;
    font-size: 51px;
    margin-bottom: 20px;
}

.investment-left p {
    color: #e6f2ff;
    margin-bottom: 25px;
}

/* WHITE BUTTON */
.white-btn {
    background: #fff;
    color: #0E7AC7;
}

.white-btn:hover {
    background: #f1f1f1;
}

/* RIGHT */
.investment-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.invest-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ICON */
.invest-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.invest-icon img {
    height: 50px;
}

/* TEXT */
.invest-content h5 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #222;
    font-family: "Oswald", sans-serif;
}

.invest-content h5 span {
    color: #0148B5;
}

.invest-content p {
    font-size: 15px;
    margin: 0;
    color: #000000;
    font-weight: 400;
}


/* VIDEO WRAPPER */
.video-slider-wrapper {
    position: relative;
}

/* VIDEO CARD */
.video-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* VIDEO */
.video-frame {
    position: relative;
    padding-top: 56.25%;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* CONTENT */
.video-content {
    padding: 18px;
}

.video-content h5 {
    color: #0E4DA4;
    margin-bottom: 8px;
    font-size: 22px;
}
.video-content a{
    text-decoration: none;
}
.video-content p {
    margin: 0;
    font-size: 14px;
    color: #000;
}

/* NAVIGATION */
.investment-video-prev,
.investment-video-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #0E4DA4;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;

    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.investment-video-prev {
    left: -24px;
}

.investment-video-next {
    right: -24px;
}

/* PAGINATION */
.investment-video-pagination {
    text-align: center;
    margin-top: 30px;
}

.investment-video-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
}

.investment-video-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    opacity: 1;
}

.process-section {
    position: relative;
    padding: var(--section-padding) 0;
}

.process_bg {
    background: url('../images/process-bg.png') no-repeat center center;
    background-size: cover;
    border: 1px solid #0E7AC7;
    border-radius: 30px;
    padding: 30px;
}

/* OVERLAY */
/* .process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
} */

.process-section .container-custom {
    position: relative;
    z-index: 2;
}

/* WRAPPER */
.process-slider-wrapper {
    position: relative;
    overflow: hidden;
}
.slider-container{
    position: relative;
}

/* TRACK */
.process-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* CARD WIDTH = 3 VISIBLE */
.process-card {
    min-width: calc((100% - 40px) / 3);;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* IMAGE */
.process-card img {
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}

/* STEP */
.step {
    padding: 6px 14px;
    border-radius: 20px;
    background: #eee;
    font-size: 13px;
}

.step.active {
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
    color: #fff;
}

/* ARROWS */
.process-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1DA1F2;
    color: #fff;
    border: none;
    z-index: 5;
}

.process-arrow.left { left: -25px; }
.process-arrow.right { right: -25px; }

/* DOTS */
.process-dots {
    text-align: center;
    margin-top: 20px;
}

.process-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #bcd3ea;
    border-radius: 50%;
    margin: 0 4px;
}

.process-dots span.active {
    width: 30px;
    border-radius: 10px;
    background: #0E7AC7;
}
/* BUTTON */
.mt-40 {
    margin-top: 40px;
}

.franchise-slider-wrapper {
    position: relative;
    overflow: hidden;
}

/* TRACK */
.franchise-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease;
}

/* CARD */
.franchise-card {
    position: relative;
    min-width: calc((100% - 50px) / 3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.franchise-card img {
    width: 100%;
    /* height: 260px; */
    object-fit: cover;
    background: #fff;
    padding: 10px;
}

/* BLUE CIRCLE BUTTON */
.arrow-btn {
    position: absolute;
    bottom: 4px;
    right: 0px;

    width: 60px;
    height: 60px;
    border-radius: 50%;

    background: linear-gradient(135deg, #1DA1F2, #0A5EA8);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    /* box-shadow: 0 10px 20px rgba(13,110,253,0.3); */
}

.arrow-btn i{
    position: absolute;
    /*left: 50%;*/
    /*top: 50%;*/
    transform: rotate(-45deg);
    color: #fff;
    font-size: 30px;

}

/* .arrow-btn i::before{
    content: '';
} */

/* ARROWS */
.franchise-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1DA1F2;
    color: #fff;
    border: none;
    z-index: 5;
}

.franchise-arrow.left { left: 15px; }
.franchise-arrow.right { right: 15px; }

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}

/* TRACK */
.testimonial-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease;
}

/* CARD */
.testimonial-card {
    min-width: calc((100% - 50px) / 3);
    background: #fff;
    border-radius: 12px;
    border: 1px solid #cfe2ff;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

/* TOP */
.testimonial-card .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* AVATAR */
.avatar img{
    width: 40px;
    height: 40px;
    /* background: #ddd; */
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-card h5{
    font-weight: 400;
}

/* QUOTE */
.quote-icon {
    color: #0147B3;
    font-size: 52px;
    /* font-weight: 400; */
}

/* STARS */
.stars {
    color: #f5c518;
    font-size: 14px;
    margin: 5px 0;
}

/* TEXT */
.testimonial-card p {
    font-size: 13px;
    margin-bottom: 6px;
}

/* ARROWS */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1DA1F2;
    color: #fff;
    border: none;
    z-index: 5;
}

.testimonial-arrow.left { left: 15px; }
.testimonial-arrow.right { right: 15px; }

.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: url('../images/form-bg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
}

/* OVERLAY */
/* .cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,122,199,0.95), rgba(29,161,242,0.9));
} */

.cta-section .container-custom {
    position: relative;
    z-index: 2;
}

/* LEFT */
.cta-left h2 {
    font-size: 51px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 400;
}

.cta-left p {
    color: #e6f2ff;
    margin-bottom: 20px;
}

.cta-left h5 {
    margin-bottom: 15px;
    color: #fff;
    font-weight: 400;
}

/* CONTACT */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 22px;
    font-weight: 500;
}

.contact-info i {
    width: 35px;
    height: 35px;
    /*background: rgba(255,255,255,0.2);*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:30px;
}

/* FORM BOX */
.cta-form-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255,255,255,1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

/* FORM TITLE */
.cta-form-box h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

/* INPUTS */
.cta-form-box input,
.cta-form-box textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* BUTTON */
.cta-submit {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #006BFF, #004099);
    color: #fff;
    font-size: 20px;
}

.faq-section {
    background: #EEFAFF;
}

/* WRAPPER */
.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

/* ITEM */
.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

/* QUESTION */
.faq-question {
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    border-radius: 6px;
    font-size:25px;
}

/* ANSWER */
/* ANSWER (HIDDEN STATE) */
.faq-answer {
    background: #fff;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease;
    border-radius: 0 0 6px 6px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px; /* enough to fit content */
    opacity: 1;
}

/* ICON ROTATION SMOOTH */
.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* FOOTER */
.footer {
    background: #fff;
    padding-top: 60px;
}

/* ABOUT */
.footer-about img {
    height: 65px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    color: #000;
}

/* LINKS */
.footer-links h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0B1F3A;
    font-weight: 400;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #000;
    transition: 0.3s;
    font-size:18px;
}

.footer-links ul li a:hover {
    color: #0E7AC7;
}

/* CONTACT LIST */
.footer-contact li {
    color: #000;
}

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 40px;
    padding: 12px 0;
    text-align: center;
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
    color: #fff;
    font-size: 14px;
}

/* About us style start  */

/* SECTION */
.about-hero {
    position: relative;
    padding: 120px 0;
    text-align: center;

    background: url('../images/about-breadcrumb.png') no-repeat center center;
    background-size: cover;
}

/* LIGHT OVERLAY (MATCH SS LOOK) */
/* .about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
} */

/* CONTENT ABOVE */
.about-hero-content {
    position: relative;
    z-index: 2;
}

/* HEADING */
.about-hero h1 {
    font-family: 'Belanosima', sans-serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

/* SUBTEXT */
.about-hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #fff;
}

/* SECTION */
.about-who {
    position: relative;
    padding: 100px 0 140px;
    text-align: center;

    background: url('../images/who-we-are-bg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
}

/* OVERLAY */
/* .about-who::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,122,199,0.95), rgba(29,161,242,0.9));
} */

/* CONTENT */
.about-who-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.about-who .section-label::after{
    background-color: #fff;
}

/* HEADING */
.about-who h2 {
    font-size: 51px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

/* TEXT */
.about-who .desc {
    color: #e6f2ff;
    margin-bottom: 15px;
}

/* OVERLAP CONTAINER */
.about-who-boxes {
    position: relative;
    margin-bottom: -250px; 
    z-index: 3;
}

/* BOX */
.who-box img {
    /* border-radius: 16px; */
    box-shadow: 0 0 0 rgba(0,0,0,0.08);
}

.what-do-section{
    margin-top: 70px;
    background-color: #F8FDFF;
}

.whatSwiper {
    position: relative;
}


/* TITLE */
.what-card h4 {
    color: #0E4DA4;
    margin-bottom: 10px;
    font-weight: 400;
}

/* INCLUDE TITLE */
.include-title {
    display: inline-block;
    margin: 15px 0;
    padding: 6px 16px;
    background: #0E4DA4;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
}

/* LIST */
.include-list {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.include-list ul {
    padding-left: 15px;
}

/* CARD */
.what-card {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.what-card p {
    flex-grow: 1;
}

.swiper-slide {
    display: flex;
    height: auto;
}

/* IMAGE */
.what-img {
    border-radius: 12px;
    margin-bottom: 20px;
}

/* INCLUDE TITLE */
.include-title {
    display: block;
    margin: 15px 0;
    padding: 6px 16px;
    background: #0E4DA4;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    width: max-content;
    margin: auto;
    margin-bottom: 20px;
}

/* LIST */
.include-list {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.include-list ul:first-child {
    border-right: 1px dashed #0153C5;
    padding-right: 15px;
    width: 50%;
}

.include-list ul li{
    font-size: 14px;
}

/* NAV BUTTONS */
.what-next,
.what-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #1DA1F2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.what-prev { left: 0; }
.what-next { right: 0; }

/* SECTION */
.mission-vision {
    position: relative;
    padding: 80px 0;
    background: url('../images/mission-bg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
}

/* OVERLAY */
/* .mission-vision::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,122,199,0.95), rgba(29,161,242,0.9));
} */

/* CONTENT */
.mission-vision .container-custom {
    position: relative;
    z-index: 2;
}

/* BOX */
.mv-box {
    max-width: 450px;
}

/* ALIGNMENTS */
.mv-box.left {
    text-align: left;
}

.mv-box.right {
    text-align: left;
    margin-left: auto;
}

/* ICON */
.mv-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-icon img {
    width: 40px;
}

/* HEADINGS */
.mv-box h3 {
    font-size: 25px;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--white);
}

.mv-box h5 {
    font-size: 17px;
    margin-bottom: 15px;
    color: #e6f2ff;
    font-weight: 400;
}

/* TEXT */
.mv-box p {
    font-size: 14px;
    color: #eaf6ff;
}

/* CENTER DASH LINE */
.mv-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 235px;
    border-left: 2px dashed rgba(255,255,255,0.5);
}

.team-section {
    background: #f5f9fd;
}

/* CARD */
.team-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

/* ACTIVE (BLUE BORDER LIKE SS) */
.team-card:hover {
    border: 1px solid #0E7AC7;
    box-shadow: 0 10px 25px rgba(14,122,199,0.1);
    transition: all 0.4s;
}

/* IMAGE */
.team-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.team-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* NAME */
.team-card h6 {
    font-size: 20px;
    color: #0E4DA4;
    margin-top: 5px;
}

.about-logo-strip{
    background: #F4FBFF;
}


/* our services page style start  */
.services-offer {
    position: relative;
    padding: 100px 0;
    background: url('../images/our-service-bg.png') no-repeat center;
    background-size: cover;
    color: #fff;
}

/* .services-offer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,122,199,0.95), rgba(29,161,242,0.9));
} */

.services-offer .container-custom {
    position: relative;
    z-index: 2;
}

/* GLASS BOX */
.offer-box {
    margin-top: 40px;
    padding: 60px 100px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.4);
     box-shadow: 0 25px 45px rgba(14,122,199,0.35);
}

/* TABS */
.offer-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tab-btn {
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
}

.tab-btn.active {
    background: linear-gradient(90deg, #0A5EA8, #0E7AC7);
    color: #fff;
}

/* CONTENT BOX */
.tab-content {
    display: none;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    color: #333;
}

.tab-content.active {
    display: block;
}

/* IMAGE */
.offer-img {
    border-radius: 12px;
    overflow: hidden;
}

.offer-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* TEXT */
.tab-content h4 {
    color: #0E4DA4;
    margin-bottom: 10px;
    font-weight: 400;
}

.tab-content h6 {
    color: #0E4DA4;
    margin-top: 15px;
}

.tab-content ul {
    padding-left: 18px;
}

/* BUTTON */
.btn-primary-custom {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    border-radius: 20px;
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
    color: #fff;
    font-size: 13px;
    text-decoration: none;

}
.services-offer .section-label::after{
    background-color: #fff;
}
.services-offer .section-title h2{
    /* background: unset; */
    -webkit-text-fill-color:#fff;
}

/* trunky plant setup page style start  */

.turnkey-benefits {
    background: #fff;
}

/* CARD */
.turnkey-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: left;
    height: 100%;
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.01); */
    border: 1px solid #014ABA;
    transition: 0.3s;
}

.turnkey-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.turnkey-card img {
    width: 55px;
    margin-bottom: 15px;
}

/* TITLE */
.turnkey-card h5 {
    color: #0E4DA4;
    margin-bottom: 8px;
}

/* TEXT */
.turnkey-card p {
    font-size: 13px;
    color: #555;
}

/* SWIPER */
.turnkeySwiper {
    margin-top: 40px;
    position: relative;
}

/* NAV */
.turnkey-next,
.turnkey-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #1DA1F2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.turnkey-prev { left: 0; }
.turnkey-next { right: 0; }

.service-process-section {
    position: relative;
    padding: 80px 0;
    background: url('../images/setup-bg.png') no-repeat center;
    background-size: cover;
    color: #fff;
}

/* .process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,122,199,0.95), rgba(29,161,242,0.9));
} */

.service-process-section .container-custom {
    position: relative;
    z-index: 2;
}

/* ===== TIMELINE ===== */
.process-timeline {
    position: relative;
    margin: 40px 0;
}

/* LINE */
.timeline-line {
    height: 2px;
    background: rgba(255,255,255,0.6);
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

/* DOTS */
.timeline-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.timeline-dots .dot {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.timeline-dots .dot.active {
    width: 22px;
    height: 22px;
    opacity: 1;
}

/* ===== CARD ===== */
.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    color: #333;
}

.process-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
    margin-top: 0;
}

/* SWIPER */
.processSwiper {
    margin-top: 20px;
}

/* TITLE */
.process-card h5 {
    font-size: 25px;
    color: #0E4DA4;
    margin-bottom: 8px;
    font-weight: 400;
}

/* DESCRIPTION */
.process-card p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #000;
}

/* INCLUDES TITLE */
.process-card h6 {
    color: #0E4DA4;
    font-size: 14px;
    margin-bottom: 8px;
}

/* LIST */
.process-card ul {
    padding-left: 18px;
    margin: 0;
}

.process-card ul li {
    font-size: 13px;
    margin-bottom: 5px;
    color: #000;
}

.process-content-box{
    padding: 20px;
    padding-top: 0px;
}

.process-section h4{
    font-weight: 400;
}

.service-process-section .section-title h2{
    -webkit-text-fill-color: #fff;
}

.service-process-section .section-label::after{
    background-color: #fff;
}

.ideal-section {
    background: #fff;
}

/* CARD */
.ideal-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    height: 100%;

    border: 1px solid #cfe0f5;

    /* IMPORTANT: bottom blue shadow like SS */
    box-shadow: 0 6px 0 #0E4DA4;

    transition: 0.3s ease;
}

/* HOVER */
.ideal-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.ideal-card img {
    width: 100px;
    margin-bottom: 15px;
}

/* TEXT */
.ideal-card p {
    font-size: 14px;
    color: #000;
    margin: 0;
}

.service-cta-form-section {
    background: #fff;
}

/* LEFT SIDE */
.service-cta-form-section .cta-left h2 {
    color: #0E4DA4;
    font-size: 51px;
    margin-bottom: 15px;
}



.service-cta-form-section .cta-left p {
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
}

.service-cta-form-section .cta-left h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* CONTACT */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #0E4DA4;
}

.contact-list i {
    font-size: 18px;
}

/* FORM BOX */
.service-cta-form-section .cta-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #0E4DA4;
}

.hr_cta_form_box{
    border-bottom: 1px dashed #006BFF;
    width: 175px;
    margin: auto;
    margin-bottom: 25px;
}

/* TITLE */
.service-cta-form-section .cta-form-box h4 {
    text-align: center;
    color: #0E4DA4;
    margin-bottom: 5px;
}

/* INPUTS */
.cta-form-box input,
.cta-form-box textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #014ABA;
    font-size: 13px;
}

/* BUTTON */
.cta-btn {
    margin-top: 10px;
    padding: 10px 25px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(90deg, #006BFF, #004099);
    color: #fff;
    font-size: 14px;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.revenue-section {
    background: #F8FDFF;
}

.full-width-container{
    margin-right: 0;
    max-width: 100%;
    margin-left: 110px;
    padding-right: 0;
}

/* CONTENT */
.revenue-content h2 {
    color: #0E4DA4;
    margin-bottom: 15px;
}

.revenue-content p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

/* POINT LIST */
.revenue-points .point {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

/* ICON BOX */
.revenue-points .icon {
    width: 40px;
    height: 40px;
    background: #0E4DA4;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.revenue-points .icon img {
    width: 20px;
}

/* TEXT */
.revenue-points h6 {
    margin: 0;
    font-size: 14px;
    color: #0E4DA4;
}

.revenue-points p {
    margin: 0;
    font-size: 13px;
}

/* IMAGE */
.revenue-img img {
    width: 100%;
    height: auto;
}

/* REMOVE RIGHT GAP */
.revenue-img-col {
    padding-right: 0;
}

/* IMAGE FULL WIDTH */
.revenue-img {
    width: 100%;
}

/* PUSH IMAGE TO EDGE */
.revenue-img img {
    width: 100%;
    height: auto;
    display: block;
}

.setup-section {
    background: #ffff;
}

/* SUB TITLE */
.sub-title {
    color: #0E4DA4;
    margin-top: 20px;
}

/* ===== GRID CARDS ===== */
.setup-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #cfe0f5;
    padding: 10px;
    text-align: center;
    height: 100%;
}

.setup-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.setup-card p {
    font-size: 13px;
    margin: 0;
}

/* ===== CAPACITY CARDS ===== */
.capacity-card {
    padding: 20px;
}

/* ICON CIRCLE */
.capacity-card .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1DA1F2, #0A5EA8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.capacity-card .icon img {
    width: 40px;
}

/* TEXT */
.capacity-card h5 {
    color: #0E4DA4;
    margin-bottom: 5px;
}

.capacity-card p {
    font-size: 14px;
    color: #555;
}

.franchies-designed-card .invest-card{
    padding: 5px 20px;
}

.investment-left p{
    width: 80%;
}

.machinery-section {
    background: #F8FDFF;
}

/* LEFT */
.machinery-content h2 {
    color: #0E4DA4;
    margin-bottom: 15px;
}

.machinery-content p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

/* RIGHT SLIDER WRAPPER */
.machinery-slider-wrapper {
    position: relative;
}

/* CARD */
.machinery-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.machinery-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.machinery-card p {
    padding: 8px;
    font-size: 13px;
    color: #0E4DA4;
}

/* NAV BUTTONS */
.machinery-prev,
.machinery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #0E4DA4;
    cursor: pointer;
    z-index: 10;
}

.machinery-prev { left: -20px; }
.machinery-next { right: -20px; }

.portfolio-section {
    background: #fff;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    margin-bottom: 10px;
}

.product-card img {
    width: 100%;
    
    margin-bottom: 10px;
}

.product-card p {
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}

/* ===== TARGET MARKET ===== */
.sub-heading {
    color: #0E4DA4;
}

/* MARKET CARD */
.market-card {
    padding: 25px;
    height: 100%;
}

.market-card img {
    width: 100%;
    margin-bottom: 5px;
}

.market-card p {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}

.support-section {
    background: #f5f9fd;
}

/* LEFT */
.support-content h2 {
    color: #0E4DA4;
    margin-bottom: 10px;
}

.support-content p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    width: 80%;
}

/* GRID */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* ITEM */
.support-item {
    display: flex;
    align-items: center;
    gap: 12px;

    background: #fff;
    padding: 12px 15px;
    border-radius: 12px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ICON */
.support-item .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1DA1F2, #0A5EA8);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.support-item .icon img {
    width: 20px;
}

/* TEXT */
.support-item span {
    font-size: 14px;
    font-weight: 500;
}

/* HIGHLIGHT CARD */
.support-item.highlight {
    justify-content: center;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
}




/* contact us page style start  */

/* HERO */
.contact-hero {
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
    color: #fff;
    padding: 60px 0;
}

.contact-hero h2 {
    font-size: 51px;
}

/* INFO */
.contact-info {
    /* background: #fff; */
    padding: 25px;
    border-radius: 16px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* FORM */
.contact-form-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #cfe0f5;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 550px;
    border: 0;
}

/* BRANCH */
.branch-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.branch-card h5 {
    color: #0E4DA4;
}

.investment-section .section-label::after{
    background:#fff
}

/* blog page style start  */

/* .blog-page {
    background: #f5f9fd;
} */

.blog-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    /* padding: 5px; */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
}

.blog-search button {
    width: 65px;
    height: 45px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #28B0E5, #098BCE);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-author {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.blog-author h5 {
    color: #014ABA;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px;
}
.blog-author h6 {
    color: #014ABA;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* underline */
.blog-author h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #014ABA;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* IMAGE */
.author-img {
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.author-img img {
    width: 100%;
    /* height: 160px; */
    object-fit: cover;
}

/* TEXT */
.blog-author p {
    font-size: 13px;
    color: #000;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #dcdcdc;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #555;
    font-size: 14px;
    text-decoration: none;

    transition: 0.3s ease;
}

/* HOVER EFFECT (IMPORTANT) */
.social-icons a:hover {
    background: linear-gradient(135deg, #1DA1F2, #0A5EA8);
    color: #fff;
}

/* CATEGORIES */
.blog-categories {
   background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.blog-categories h5 {
    color: #014ABA;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* underline */
.blog-categories h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #014ABA;
    position: absolute;
    left: 0;
    bottom: 0;
}

.blog-categories ul {
    list-style: none;
    padding: 0;
}

.blog-categories li a{
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    display: block;
    width: 100%;
}

/* BLOG CARD */
.blog-card {
    background: transparent;
}

.blog-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.blog-card h6 {
    color: #000;
    font-size: 15px;
    margin-bottom: 5px;
}

.blog-card a{
    text-decoration: none;
    color: #000;
}

.blog-card p {
    font-size: 13px;
}

/* BUTTON */
.load-more-btn {
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
    color: #fff;
}


/* single blog page style  */

/* .single-blog {
    background: #eef5fb;
} */

/* FEATURE IMAGE */
.blog-feature-img img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* CONTENT */
.blog-content {
    font-size: 14px;
    color: #000;
}

.blog-content ul {
    padding-left: 18px;
}

/* IMAGE ROW (REPLACING GREY BOXES) */
.content-img-row {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.content-img-row img {
    width: 33.33%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

/* SIDEBAR */
.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* SEARCH */
.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 10px;
}

.search-box button {
    width: 45px;
    border-radius: 8px;
    background: #1DA1F2;
    color: #fff;
    border: none;
}

/* CATEGORY */
.category-list {
    list-style: none;
    padding: 0;
  
}

.category-list li a {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
      width: 100%;
    display: block;
}

/* RECENT POST */
.recent-post img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* TAGS */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    background: #e5edf5;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
}

/* SOCIAL */
.social-icons a {
    width: 35px;
    height: 35px;
    background: #ddd;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.blog-section-label{
    color: #014ABA;
}

.sidebar-box h5 {
    color: #014ABA;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* underline */
.sidebar-box h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #014ABA;
    position: absolute;
    left: 0;
    bottom: 0;
}


/* BACKGROUND */
.contact-dual-section {
    padding: 80px 0;
    background: url('../images/about-bg.png') center/cover no-repeat;
    position: relative;
}

.contact-dual-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.90) 30%, rgba(255, 255, 255, 0.92) 60%, rgba(255, 255, 255, 0.90) 100%);
}

.contact-dual-section .container-custom {
    position: relative;
    z-index: 2;
}

/* LEFT CARD */
.contact-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    border: 2px solid #1DA1F2;
    text-align: center;
}

.contact-form-card h4 {
    color: #0E4DA4;
    margin-bottom: 20px;
}

/* INPUTS */
.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #cfe0f5;
    font-size: 13px;
}

/* BUTTON */
.cta-btn {
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #1DA1F2, #0A5EA8);
    color: #fff;
    font-size: 14px;
}

/* RIGHT CARD */
.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    /* border: 2px solid #1DA1F2; */
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ITEM */
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ICON BOX */
.info-item .icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1DA1F2, #0A5EA8);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .info-item .contact_map_icon{
        width:62px;
    }

.info-item .icon img {
    width: 24px;
}

/* TEXT */
.info-item h6 {
    margin: 0;
    color: #0E4DA4;
    font-size: 20px;
}

.info-item p {
    margin: 0;
    font-size: 13px;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: #eee;
    margin: 18px 0;
}

/* ===============================
   THANK YOU PAGE
================================== */
.thankyou-section {
    padding: 60px 0;
    background: #eef5fb;
}

.thankyou-box {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    text-align: center;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ICON */
.thank-icon {
    width: 100px;
    height: 100px;
    margin: auto auto 25px;

    border-radius: 50%;
    background: linear-gradient(135deg, #1DA1F2, #0A5EA8);

    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-icon i {
    color: #fff;
    font-size: 40px;
}

/* TEXT */
.thankyou-box h1 {
    color: #0E4DA4;
    margin-bottom: 10px;
}

.thankyou-box h5 {
    margin-bottom: 15px;
}

.thankyou-box p {
    color: #666;
    margin-bottom: 30px;
}

/* BUTTONS */
.thank-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ===============================
   404 PAGE
================================== */
.error-section {
    padding: 100px 0;
    background: #eef5fb;
}

.error-box {
    max-width: 750px;
    margin: auto;
    text-align: center;
}

.error-img img {
    max-width: 350px;
    width: 100%;
    margin-bottom: 20px;
}

/* TEXT */
.error-box h1 {
    font-size: 120px;
    line-height: 1;
    color: #0E4DA4;
    margin-bottom: 10px;
}

.error-box h4 {
    margin-bottom: 15px;
}

.error-box p {
    color: #666;
    margin-bottom: 30px;
}

/* BUTTONS */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;
    border-radius: 30px;

    background: linear-gradient(135deg, #1DA1F2, #0A5EA8);
    color: #fff;
    text-decoration: none;
    font-weight: 500;

    transition: 0.3s ease;
}

.primary-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* OUTLINE BUTTON */
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;
    border-radius: 30px;

    border: 2px solid #0E4DA4;
    color: #0E4DA4;
    text-decoration: none;
    font-weight: 500;

    transition: 0.3s ease;
}

.outline-btn:hover {
    background: #0E4DA4;
    color: #fff;
}

/* ===============================
   PRIVACY POLICY PAGE
================================== */
.policy-section {
    background: #eef5fb;
}

/* WRAPPER */
.policy-wrapper {
    background: #fff;
    border-radius: 30px;
    padding: 50px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* DATE */
.policy-date {
    font-size: 14px;
    color: #0E4DA4;
    font-weight: 600;
    margin-bottom: 25px;
}

/* CONTENT */
.policy-content p {
    color: #000;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* SECTION */
.policy-block {
    margin-top: 35px;
}

/* HEADINGS */
.policy-block h3 {
    color: #0E4DA4;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    font-size:25px;
}

.policy-block h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1DA1F2, #0A5EA8);

    position: absolute;
    left: 0;
    bottom: 0;

    border-radius: 10px;
}

/* LIST */
.policy-block ul {
    padding-left: 20px;
}

.policy-block ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 767px) {

    .policy-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }

}

/* RESPONSIVE */
@media (max-width: 767px) {

    .thankyou-box {
        padding: 40px 25px;
    }

    .thank-btns {
        flex-direction: column;
    }

    .error-box h1 {
        font-size: 80px;
    }

}


.enquiry-popup{

    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 350px;

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    z-index: 9999;

    box-shadow:
    0 15px 45px rgba(0,0,0,.15);

    /* START HIDDEN */
    opacity: 0;

    transform:
    translateY(120%);

    transition:
    transform .6s ease,
    opacity .6s ease;

}

/* OPEN STATE */
.enquiry-popup.active{

    opacity:1;

    transform:
    translateY(0);

}

.popup-header{

    background:
    linear-gradient(
    135deg,
    #1DA1F2,
    #0A5EA8);

    color:#fff;

    padding:15px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.popup-header h6{
    margin:0;
}

.popup-header span{
    font-size:12px;
}

.popup-actions{
    display:flex;
    gap:8px;
}

.popup-actions button{

    width:30px;
    height:30px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.2);

    color:#fff;
}

.popup-body{
    padding:20px;
}

.popup-body form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.popup-body input,
.popup-body textarea{

    border:1px solid #ddd;

    padding:5px 10px;

    border-radius:10px;

    width:100%;
}

.popup-body button{

    border:none;

    padding:12px;

    border-radius:30px;

    color:#fff;

    background:
    linear-gradient(
    135deg,
    #1DA1F2,
    #0A5EA8);
}

/* MINIMIZED */
.enquiry-popup.minimized{

    height:65px;

    overflow:hidden;
}

/* REOPEN BTN */
.popup-toggle{

    position:fixed;

    right:30px;
    bottom:30px;

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    display:none;

    background:
    linear-gradient(
    135deg,
    #1DA1F2,
    #0A5EA8);

    color:#fff;

    z-index:9999;
}

.popup-toggle.show{
    display:block;
}

@media(max-width:768px){

.enquiry-popup{

width:calc(100% - 20px);

right:10px;

bottom:10px;

}

}

.team-card{
    cursor:pointer;
    transition:.3s ease;
    height:100%;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-modal{
    border:none;
    border-radius:25px;
    overflow:hidden;
}

.modal-team-image img{
    width:100%;
    border-radius:20px;
}

#modalTeamName{
    color:#0E4DA4;
    font-size:32px;
    font-weight:500;
    margin-bottom:10px;
}

#modalTeamDesignation{
    color:#37B7F3;
    font-size:18px;
    margin-bottom:20px;
    font-weight:600;
}

#modalTeamDescription{
    color:#555;
    line-height:1.9;
}

@media(max-width:991px){

    .modal-team-image{
        margin-bottom:25px;
    }

    #modalTeamName{
        font-size:26px;
    }

}

