/* stylesheet written for revamped gmtt website homepage from march 27, 2026 */
/* Author Sijoy */



/*********************common styles*********************************/
.main-title{
	font-weight:800;
	font-family:Poppins;
	color:#000;
	letter-spacing:1px;
	text-align:left !important;
}
.main-title span{
	font-weight:800;
	font-family:Poppins;
	color:#302283;
	letter-spacing:.5px;
}
h3{
	font-weight:500;
	font-size:24px;
	color:#302283;
}
.gap{
	min-height:20px !important;
}
/*********************common styles*********************************/
/*********************above the fold area*********************************/

 .swiper-slide-caption {
            padding-bottom: 10%;
        }
        .nav-menu li:nth-child(1) .nav-active {
            background-color: #302283 !important;
            color: #fff !important;
            position: relative;
        }
        .cbp-af-header.cbp-af-header-shrink .nav-menu li:nth-child(1) .nav-active {
            color: #fff !important;
        }
        .main-container-wrap {
            padding-top: 90px;
        }

        /* New Hero Section */
        .hero-split-section {
            position: relative;
            padding: 140px 0 50px;
            background: linear-gradient(135deg, #e4e8eb 20%, #ffffff 32%, #f5f8ff 100%);
            overflow: hidden;
        }

        .hero-split-section:before {
            content: "";
            position: absolute;
            top: -120px;
            right: -120px;
            width: 280px;
            height: 280px;
            background: rgba(48, 34, 131, 0.06);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-split-section:after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 220px;
            height: 220px;
            background: rgba(0, 123, 255, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-split-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .hero-split-left {
            width: 60%;
        } 
		
        .hero-split-right {
            width: 40%;
        }

        .hero-mini-heading {
            margin: 0 0 14px;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.5;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #302283;
        }

        .hero-main-heading {
            margin: 0 0 18px;
            font-size: 48px;
            line-height: 1.15;
            font-weight: 700;
            color: #111111;
        }

        .hero-description {
            max-width: 560px;
            margin: 0 0 28px;
            font-size: 17px;
            line-height: 1.8;
            color: #4f4f4f;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 180px;
            padding: 14px 24px;
            border-radius: 999px;
            text-decoration: none !important;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .hero-cta-btn.primary-btn {
            background: #302283;
            color: #ffffff !important;
            border: 2px solid #302283;
        }

        .hero-cta-btn.primary-btn:hover {
            background: #20155e;
            border-color: #20155e;
            color: #ffffff !important;
        }

        .hero-cta-btn.secondary-btn {
            background: #ffffff;
            color: #302283 !important;
            border: 2px solid #302283;
        }

        .hero-cta-btn.secondary-btn:hover {
            background: #302283;
            color: #ffffff !important;
        }

        .hero-carousel-shell {
            width: 90%;
            max-width: 400px;
            margin: auto;
            border-radius: 24px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
        }

        .hero-image-frame {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 5;
            background: #f4f4f4;
            overflow: hidden;
        }

        .hero-image-slides {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-image-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .hero-image-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .hero-image-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            background: #ffffff;
        }

        .hero-carousel-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 14px;
            background: #ffffff;
        }

        .hero-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 0;
            padding: 0;
            background: rgba(48, 34, 131, 0.25);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-carousel-dot.active {
            background: #302283;
            transform: scale(1.08);
        }

        .fade-up-animate {
            opacity: 0;
            transform: translateY(26px);
            animation: fadeUpHero 0.9s ease forwards;
        }

        .fade-up-delay-1 {
            animation-delay: 0.15s;
        }

        .fade-up-delay-2 {
            animation-delay: 0.35s;
        }

        @keyframes fadeUpHero {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1199px) {
            .hero-main-heading {
                font-size: 42px;
            }

            .hero-split-wrap {
                gap: 35px;
            }
        }

        @media (max-width: 991px) {
            .hero-split-section {
                padding: 55px 0 40px;
            }

            .hero-split-wrap {
                flex-direction: column;
                align-items: flex-start;
                gap: 35px;
            }

            .hero-split-left,
            .hero-split-right {
                width: 100%;
            }

            .hero-main-heading {
                font-size: 36px;
            }

            .hero-carousel-shell {
                max-width: 420px;
                margin: 0 auto;
            }
        }

        @media (max-width: 767px) {
            .hero-split-section {
                padding: 40px 0 30px;
            }

            .hero-main-heading {
                font-size: 30px;
				padding-top:70px;
            }

            .hero-description {
                font-size: 15px;
                line-height: 1.7;
                margin-bottom: 22px;
            }

            .hero-cta-group {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta-btn {
                width: 100%;
                min-width: 100%;
            }

            .hero-carousel-shell {
                max-width: 100%;
                border-radius: 18px;
            }

            .main-container-wrap {
                padding-top: 60px;
            }
        }

/*********************above the fold area*********************************/
/**********************jobs slider****************************************/
.know-more{
	background-color:#fff;
	color:#04236b !important;
	padding:3px 15px;
	border-radius:50px;
	font-size:15px !important;
	font-weight:600;
}


/**********************jobs slider****************************************/
/**********************about section****************************************/

.about-guiders-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.about-guiders-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 32px;
    align-items: center;
}

.about-guiders-content {
    width: 100%;
}

.about-guiders-subtitle {
    margin: 8px 0 12px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
    color: #1f2937;
}

.about-guiders-content p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.about-guiders-image-wrap {
    width: 100%;
}

.about-guiders-image-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    border-radius: 24px;
    overflow: hidden;
     background: #ffffff;
}

.about-guiders-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about-guiders-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-guiders-image-card {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .about-guiders-subtitle {
        font-size: 20px;
    }

    .about-guiders-content p {
        font-size: 15px;
        line-height: 1.75;
    }
}
/**********************about section****************************************/
/**********************commitment quote****************************************/
.commitment-quote-section {
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(135deg, #0b1f4d 0%, #0f3f8f 50%, #1e5bd9 100%);
	position: relative;
    overflow: hidden; /* FIXES OVERFLOW */
}

/* GRID */
.commitment-quote-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    min-height: 160px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto; /* centers content */
    position: relative;
}

/* LEFT */
.commitment-left {
    z-index: 2;
}

.commitment-eyebrow {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* RIGHT */
.commitment-right {
    position: relative;
    z-index: 2;
}

/* BIG QUOTE ICON (CONTAINED) */
.commitment-quote-mark {
    position: absolute;
    right: 10px;
    top: -20px;
    font-size: 200px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.10);
    pointer-events: none;
    z-index: 0;
}

/* TEXT */
.commitment-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.5;
    font-weight: 500;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    max-width: 720px;
}

/* SAFE PATTERN (NO NEGATIVE POSITIONING) */
.commitment-quote-section::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .commitment-quote-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .commitment-text {
        font-size: 26px;
    }

    .commitment-quote-mark {
        font-size: 140px;
        top: -10px;
    }
}

@media (max-width: 767px) {
    .commitment-quote-section {
        padding: 40px 0;
    }

    .commitment-text {
        font-size: 20px;
    }

    .commitment-quote-mark {
        font-size: 100px;
    }
}
/**********************commitment quote****************************************/
/**********************services****************************************/

.services-seo-section {
    padding: 80px 0;
    background: #f8fafc;
}

.services-seo-header {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.services-seo-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e8f0ff;
    color: #1447b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-seo-header p {
    margin: 14px auto 0;
    color: #5b6475;
    font-size: 17px;
    line-height: 1.75;
}

.services-seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-seo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px 26px;
    border: 1px solid #e8edf5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-seo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: #d9e5ff;
}

.service-seo-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    color: #1d4ed8;
}

.service-seo-icon svg {
    width: 46px;
    height: 46px;
    fill: currentColor;
    display: block;
}

.service-seo-card h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
}

.service-seo-card p {
    margin: 0 0 16px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.service-seo-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-seo-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
}

.service-seo-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
}

.service-seo-featured {
    background: linear-gradient(135deg, #0b1f4d 0%, #1746b3 52%, #2563eb 100%);
    border-color: transparent;
    box-shadow: 0 20px 45px rgba(23, 70, 179, 0.22);
}

.service-seo-featured h3,
.service-seo-featured p,
.service-seo-featured ul li {
    color: #ffffff;
}

.service-seo-featured ul li::before {
    background: #ffffff;
}

.service-seo-featured .service-seo-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
}

.service-seo-cta-card {
    background: #eff6ff;
    border-color: #dbe7ff;
}

.service-seo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #0b1f4d;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.service-seo-btn:hover {
    background: #1746b3;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.service-seo-btn-light {
    background: #2563eb;
}

.service-seo-btn-light:hover {
    background: #1746b3;
}

@media (max-width: 1199px) {
    .service-seo-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .services-seo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .services-seo-section {
        padding: 60px 0;
    }

    .services-seo-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .services-seo-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .service-seo-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .service-seo-card h3 {
        font-size: 20px;
    }

    .service-seo-card p,
    .service-seo-card ul li {
        font-size: 14px;
    }
}
/**********************services****************************************/
/**********************cta 1****************************************/

.malta-cta-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.malta-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.malta-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.malta-cta-overlay {
    position: absolute;
    inset: 0;
    
    z-index: 1;
}

/* CONTENT WRAPPER */
.malta-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 400px;
}

/* GLASS BOX */
.malta-cta-box {
    max-width: 620px;
    padding: 40px;
    border-radius: 24px;
    background: linear-gradient(
        120deg,
        rgba(5, 15, 44, 0.85) 0%,
        rgba(10, 42, 108, 0.75) 50%,
        rgba(23, 70, 179, 0.65) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.15);
}

/* TEXT */
.malta-cta-box h2 {
    color: #ffffff;
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 18px;
    font-weight: 700;
}

.malta-cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* LIST */
.malta-cta-box ul {
    margin: 10px 0 20px;
    padding: 0;
    list-style: none;
}

.malta-cta-box ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 15px;
}

.malta-cta-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #60a5fa;
    font-weight: bold;
}

/* CTA BUTTON */
.malta-cta-btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    background: #ffffff;
    color: #0b1f4d;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.malta-cta-btn:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .malta-cta-box {
        max-width: 100%;
    }

    .malta-cta-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .malta-cta-section {
        padding: 70px 0;
    }

    .malta-cta-box {
        padding: 24px;
        border-radius: 18px;
    }

    .malta-cta-box h2 {
        font-size: 22px;
    }

    .malta-cta-box p,
    .malta-cta-box ul li {
        font-size: 14px;
    }
}

/**********************cta 1****************************************/
/**********************authority block****************************************/

.authority-trust-section {
    padding: 90px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.authority-trust-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 50px;
    align-items: start;
}

.authority-trust-intro {
    position: sticky;
    top: 30px;
}

.authority-trust-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e8f0ff;
    color: #1447b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.authority-trust-lead {
    margin: 14px 0 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.85;
    max-width: 460px;
}

.authority-stat-panel {
    margin-top: 28px;
    padding: 28px 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0b1f4d 0%, #1746b3 55%, #2563eb 100%);
    box-shadow: 0 22px 48px rgba(23, 70, 179, 0.22);
}

.authority-stat-number {
    color: #ffffff;
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.authority-stat-text {
    margin-top: 10px;
    color: rgba(255,255,255,0.92);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.authority-trust-list {
    position: relative;
    padding-left: 34px;
}

.authority-trust-list::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, #bfd5ff 0%, #e0ebff 100%);
}

.authority-trust-item {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 22px;
    padding: 22px 24px 22px 0;
}

.authority-trust-item:last-child {
    margin-bottom: 0;
}

.authority-emblem {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    margin-top: 2px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1d4ed8;
    border: 1px solid #dbe7ff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.10);
}

.authority-emblem svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}

.authority-trust-content {
    padding: 4px 0 0;
    border-bottom: 1px solid #e8edf5;
}

.authority-trust-content h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
}

.authority-trust-content p {
    margin: 0 0 20px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    max-width: 640px;
}

@media (max-width: 1199px) {
    .authority-trust-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .authority-trust-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .authority-trust-intro {
        position: static;
    }

    .authority-trust-lead {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .authority-trust-section {
        padding: 65px 0;
    }

    .authority-trust-list {
        padding-left: 18px;
    }

    .authority-trust-list::before {
        left: 12px;
    }

    .authority-trust-item {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 14px;
        margin-bottom: 18px;
        padding: 16px 0;
    }

    .authority-emblem {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .authority-emblem svg {
        width: 20px;
        height: 20px;
    }

    .authority-trust-content h3 {
        font-size: 18px;
    }

    .authority-trust-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .authority-stat-panel {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .authority-stat-number {
        font-size: 40px;
    }

    .authority-stat-text,
    .authority-trust-lead {
        font-size: 15px;
    }
}
/**********************authority block****************************************/
/**********************counter section****************************************/

.stats-band-section {
    padding: 70px 0;
    background: #e6e9f0;
}

.stats-band-wrap {
    padding: 34px 36px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.94) 100%);
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.stats-band-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.stats-band-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #dbe7ff;
    color: #1447b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stats-band-title {
    margin: 0;
    max-width: 760px;
    color: #0f172a;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 700;
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #d7dde8;
    border-bottom: 1px solid #d7dde8;
}

.stats-band-item {
    padding: 28px 22px 24px;
    text-align: left;
    position: relative;
}

.stats-band-item:not(:last-child) {
    border-right: 1px solid #d7dde8;
}

.stats-band-number {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 10px;
    color: #0b1f4d;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stats-band-number .stats-number {
    font-size: 52px;
}

.stats-band-number .stats-suffix {
    font-size: 22px;
    font-weight: 700;
}

.stats-band-label {
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.stats-band-item p {
    margin: 0;
    color: #5b6475;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1199px) {
    .stats-band-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-band-item:nth-child(2) {
        border-right: none;
    }

    .stats-band-item:nth-child(-n+2) {
        border-bottom: 1px solid #d7dde8;
    }
}

@media (max-width: 767px) {
    .stats-band-section {
        padding: 55px 0;
    }

    .stats-band-wrap {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .stats-band-header {
        display: block;
        margin-bottom: 18px;
    }

    .stats-band-title {
        margin-top: 12px;
        font-size: 24px;
    }

    .stats-band-grid {
        grid-template-columns: 1fr;
    }

    .stats-band-item {
        padding: 22px 0;
    }

    .stats-band-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #d7dde8;
    }

    .stats-band-number .stats-number {
        font-size: 42px;
    }

    .stats-band-number .stats-suffix {
        font-size: 18px;
    }

    .stats-band-label {
        font-size: 17px;
    }
}
/**********************counter section****************************************/
/**********************cta2****************************************/

.call-back-wrap{
	background: linear-gradient(135deg, #0b1f4d 0%, #1746b3 55%, #2563eb 100%);
    box-shadow: 0 22px 48px rgba(23, 70, 179, 0.22);
	border-radius:20px !important;
}

.contact-enquiry-box, .calback-box1{
	border-radius:5px !important;
}
/**********************cta2****************************************/
/**********************plane animation****************************************/

/**********************plane animation****************************************/

.hero-split-section {
    position: relative;
    overflow: hidden;
}

.hero-plane-animation {
    position: absolute;
    left: 0;
    top: 0;
    width: 620px;
    z-index: 8;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-500px, 420px, 0) scale(0.42) rotate(-13deg);
    transform-origin: center center;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.hero-plane-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.hero-split-wrap,
.hero-split-left,
.hero-split-right {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-plane-animation {
        width: 360px;
    }
}

@media (max-width: 767px) {
    .hero-plane-animation {
        width: 230px;
    }
}

/**********************plane animation****************************************/
/**********************MEA section****************************************/
/**********************approval section****************************************/

.approval-section {
    padding: 50px 0;
    background: #f2eeed;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
	text-align: center; /* MASTER CENTER ALIGN */
}

.approval-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

/* LOGOS - SINGLE ROW */
.approval-logos {
    width: 40%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.approval-logo-item {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e6ecf5;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.approval-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* TEXT */
.approval-content {
    width: 60%;
}

.approval-title {
    font-size: 34px;
    font-weight: 700;
    color: #302283;
    margin-bottom: 12px;
}

.approval-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 8px;
}

/**********************responsive****************************************/

/* Tablet */
@media (max-width: 991px) {
    .approval-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .approval-logos,
    .approval-content {
        width: 100%;
    }

    .approval-logos {
        justify-content: space-between;
    }

    .approval-logo-item {
        height: 70px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .approval-section {
        padding: 40px 0;
    }

    .approval-title {
        font-size: 18px;
    }

    .approval-text {
        font-size: 14px;
    }

    .approval-logo-item {
        height: 60px;
        padding: 12px;
    }
}

/**********************approval section****************************************/
/**********************MEA section****************************************/
.gmtt-reviews-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fb, #eef1f7);
    text-align: center;
}

.gmtt-reviews-section .container-fluid {
    width: 95%;
    margin: auto;
}

.reviews-wrapper {
    max-width: 1200px;
    margin: auto;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #302283;
    margin-bottom: 10px;
    font-family: inherit;
}

.section-title p {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

/* Remove extra spacing from widget */
.elfsight-app-390a8f8e-525d-4ced-92da-0ca9c805f552 {
    margin-top: 20px;
}
