:root {
    --navy: #071B4D;
    --navy-2: #0B2568;
    --purple: #5B2ED6;
    --violet: #6D3BE8;
    --lavender: #DCD5FF;
    --lavender-soft: #EFEBFF;
    --orange: #F28C18;
    --white: #FFFFFF;
    --offwhite: #FAF9FF;
    --text-muted: #4A5578;
    --footer-navy: #071B4D;
    --footer-navy-2: #10225A;
    --shadow-soft: 0 20px 50px rgba(7, 27, 77, 0.10);
    --shadow-btn: 0 12px 24px rgba(91, 46, 214, 0.28);
    --radius-lg: 28px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    /* max-width: 1280px; */
    margin: 0 auto;
    padding: 10px 28px !important;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--purple);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 8px 0;
    z-index: 999;
}

.skip-link:focus {
    left: 0;
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(7, 27, 77, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 2.4vw, 26px);
    letter-spacing: -0.02em;
    color: var(--navy);
    white-space: nowrap;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--purple), var(--navy) 130%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(91, 46, 214, 0.25);
}

.logo-mark svg {
    width: 24px;
    height: 24px;
}

.logo span {
    color: var(--purple);
}

.logo small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-top: 1px;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.primary-nav a {
    position: relative;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--navy);
    padding: 8px 2px;
    transition: color .25s var(--ease);
}

/* .primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
} */

.primary-nav a:hover {
    color: var(--purple);
}

.primary-nav a:hover::after {
    transform: scaleX(1);
}

.primary-nav a.active {
    color: var(--purple);
}

.primary-nav a.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1.5px solid rgba(7, 27, 77, 0.14);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2.4px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.4px) rotate(-45deg);
}




/* hero section  */

/* =========================================================
   IMBHARAT HERO SECTION
========================================================= */

.imb-hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    background: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

.imb-container {
    position: relative;
    width: 100%;
    min-height: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: stretch;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.imb-content {
    position: relative;
    z-index: 5;
    padding: 22px 17px 40px clamp(35px, 6vw, 16px);

    display: flex;
    flex-direction: column;
    justify-content: center;

    opacity: 0;
    transform: translateX(-25px);
    animation: imbContentIn .8s ease forwards;
}


.imb-title {
    margin: 0;
    padding: 0;

   font-family: "Montserrat", sans-serif;

    font-size: clamp(34px, 3.10vw, 58px);
    line-height: 72px;
    letter-spacing: -1.8px;
    font-weight:bold!important;
    text-transform: uppercase;
     
    color: #101d4b;
}


.imb-title span {
    display: block;
}


.imb-title strong {
    display: block;
    color: #5633c8;
    font-weight: 800;
}


/* =========================================================
   LEARNING BY EXPERIENCE
========================================================= */

.imb-learning {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 17px;
    margin-bottom: 16px;

    color: #f19a21;

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(14px, 1.15vw, 19px);
    line-height: 1.2;
    font-weight: 700;
}


.imb-learning-line {
    position: relative;
    width: 22px;
    height: 2px;
    background: #f19a21;
    display: inline-block;
}


.imb-learning-line::after {
    content: "";
    position: absolute;

    width: 5px;
    height: 5px;

    right: -1px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;
    background: #f19a21;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.imb-description {
    max-width:450px;

    margin: 0 0 13px;

    font-size: clamp(13px, 1.05vw, 17px);
    line-height: 1.42;

    color: #333333;
    font-weight: 400;
    text-align: justify;
}


.imb-description b {
    color: #202020;
    font-weight: 700;
}


/* =========================================================
   BUTTON
========================================================= */

.imb-btn {
    width: max-content;
        margin-top: 10px;
        min-width: 160px;
        height: 43px;
        padding: 0 13px 0 18px;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        text-decoration: none;
        background: linear-gradient(90deg, #5731c7 0%, #6739d3 100%);
        color: #ffffff;
        border-radius: 7px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .2px;
        box-shadow: 0 5px 14px rgba(83, 48, 194, .18);
        transition: transform .25s ease, box-shadow .25s ease;
}


.imb-btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}


.imb-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(83, 48, 194, .25);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.imb-visual {
    position: relative;
    z-index: 2;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    opacity: 0;
    transform: translateX(30px);

    animation: imbVisualIn .9s .1s ease forwards;
}


/*
   CURVED IMAGE FRAME

   Left side of image is curved exactly like
   the supplied reference.
*/

.imb-image-frame {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 560px;
     right:25px;
    overflow: hidden;

    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;

    clip-path: path("M 150 0
 C 85 0 35 35 25 95 C 18 140 55 165 65 210 C 78 265 55 300 30 350 C 2 405 22 470 78 515 C 100 535 125 550 160 560 L 100% 560 L 100% 0 Z"
);
}


.imb-image-frame::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .18),
            transparent 12%);
}


.imb-image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    /* object-fit: cover; */
    object-position: center center;

    transform: scale(1.01);

    transition: transform .8s ease;
}


.imb-image-frame:hover img {
    transform: scale(1.035);
}


/* =========================================================
   DOT PATTERN
========================================================= */

.imb-dots {
    position: absolute;

    z-index: 4;

    display: grid;

    pointer-events: none;
}


.imb-dots i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #d7d7df;
}


/* TOP DOTS */

.imb-dots-top {
    top: 40px;
    right: 47%;

    width: 54px;

    grid-template-columns:
        repeat(4, 3px);

    gap: 7px;
}


.imb-dots-top i:nth-child(2),
.imb-dots-top i:nth-child(6),
.imb-dots-top i:nth-child(10),
.imb-dots-top i:nth-child(14) {
    opacity: .55;
}


.imb-dots-top i:nth-child(3),
.imb-dots-top i:nth-child(7),
.imb-dots-top i:nth-child(11),
.imb-dots-top i:nth-child(15) {
    opacity: .3;
}


/* BOTTOM DOTS */

.imb-dots-bottom {
    left: 45%;
    bottom: 37px;

    grid-template-columns:
        repeat(5, 3px);

    gap: 7px;
}


.imb-dots-bottom i:nth-child(2n) {
    opacity: .55;
}


.imb-dots-bottom i:nth-child(3n) {
    opacity: .3;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes imbContentIn {

    from {
        opacity: 0;
        transform: translateX(-25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes imbVisualIn {

    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .imb-hero,
    .imb-container,
    .imb-visual,
    .imb-image-frame {
        min-height: 500px;
    }


    .imb-content {
        padding-left: 45px;
    }


    .imb-title {
        font-size: clamp(30px, 4vw, 45px);
    }


    .imb-description {
        font-size: 13px;
        text-align: justify;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .imb-hero {
        min-height: auto;
    }


    .imb-container {
        min-height: auto;

        display: flex;
        flex-direction: column;
    }


    .imb-content {
        order: 1;

        padding:
            45px 25px 35px;

        align-items: flex-start;
    }


    .imb-title {
        font-size: clamp(32px, 9vw, 45px);
        line-height: 1;
        letter-spacing: -1px;
    }


    .imb-learning {
        margin-top: 15px;
        font-size: 15px;
    }


    .imb-description {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.5;
    }


    .imb-visual {
        order: 2;

        width: 100%;
        min-height: 360px;

        display: block;
    }


    .imb-image-frame {
        width: 100%;
        min-height: 360px;
        height: 360px;

        clip-path: none;

        border-radius: 70px 0 0 0;
    }


    .imb-dots-top {
        top: 20px;
        right: 25px;
    }


    .imb-dots-bottom {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .imb-content {
        padding:
            35px 20px 30px;
    }


    .imb-title {
        font-size: 24px;
    }


    .imb-description {
        font-size: 13px;
    }


    .imb-visual,
    .imb-image-frame {
        min-height: 290px;
        height: 290px;
    }


    .imb-image-frame {
        border-radius: 55px 0 0 0;
    }

}



















/* ============ FOOTER ============ */
/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;
    background: linear-gradient(150deg, var(--footer-navy) 0%, var(--footer-navy-2) 60%, #1A2E7A 100%);
    color: #ffffff;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-container {
    width: 100%;
    /* max-width: 1400px; */

    margin: 0 auto;

    padding: 10px 30px 5px;

    box-sizing: border-box;

    display: grid;

    grid-template-columns:
        1.35fr 1fr 1.15fr 1fr;

    gap: 55px;

    align-items: start;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 180px;
    height: auto;
    border-radius:5px;
    display: block;

    margin-bottom: 14px;

    object-fit: contain;
}

.footer-brand p {
    max-width: 300px;

    margin: 0;

    color: white;

    font-size: 14px;
    line-height: 1.55;

    font-weight: 400;
}


/* =========================================
   COLUMN
========================================= */

.footer-column h3 {
    margin: 0 0 17px;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.2;

    font-weight: 700;
}


/* =========================================
   QUICK LINKS
========================================= */

.footer-links {
    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    display: flex;
    align-items: center;

    gap: 9px;

    color:white;

    text-decoration: none;

    font-size: 14px;

    transition: all 0.25s ease;
}

.footer-links a span {
    color:#f19a21;

    font-size: 23px;
    line-height: 12px;

    font-weight: 500;

    transition: transform 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover span {
    transform: translateX(3px);
}


/* =========================================
   CONTACT
========================================= */

.contact-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.contact-list a {
    display: flex;
    align-items: center;

    gap: 11px;

    color: rgba(255, 255, 255, 0.84);

    text-decoration: none;

    font-size: 14px;

    transition: color 0.25s ease;
}

.contact-list a:hover {
    color: #ffffff;
}

.contact-icon {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   SOCIAL
========================================= */

.social-icons {
    display: flex;
    align-items: center;

    gap: 10px;
}

.social-icons a {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #07183d;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);

    background: #6842d9;

    color: #ffffff;
}

.social-icons svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-icons .youtube-play {
    fill: currentColor;
    stroke: none;
}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
    width: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
    width: 100%;
    /* max-width: 1400px; */

    margin: 0 auto;

    padding: 14px 30px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
}

.footer-legal {
    display: flex;
    align-items: center;

    gap: 18px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.78);

    text-decoration: none;

    font-size: 13px;

    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-legal span {
    width: 1px;
    height: 17px;

    background: rgba(255, 255, 255, 0.25);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 35px 45px;

        padding: 35px 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .footer-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 35px 22px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo {
        width: 165px;
    }

    .footer-brand p {
        max-width: 320px;

        font-size: 13px;
    }

    .footer-column h3 {
        font-size: 16px;

        margin-bottom: 14px;
    }

    .footer-bottom-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 16px 22px;

        gap: 13px;
    }

    .footer-legal {
        gap: 13px;

        flex-wrap: wrap;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .footer-container {
        padding: 30px 18px;
    }

    .footer-bottom-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .contact-list a,
    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom p,
    .footer-legal a {
        font-size: 12px;
    }

    .imb-image-frame {
            position: relative;
            width: 100%;
            height: 100%;
            right: 0px!important;
            overflow: hidden;
         
       
        }

        .logo-text-wrap {
            width: 200px;
        }

}



/* ============ RESPONSIVE ============ */

/* Tablet / small desktop: 1024px and below -> hamburger appears at this range too per spec (tablet/smaller desktop) */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid rgba(7, 27, 77, 0.08);
        box-shadow: 0 16px 30px rgba(7, 27, 77, 0.08);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s var(--ease), transform .25s var(--ease);
        max-height: 0;
        overflow: hidden;
    }

    .primary-nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        max-height: 400px;
    }

    .primary-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 14px 24px 22px;
    }

    .primary-nav a {
        display: block;
        width: 100%;
        padding: 13px 4px;
    }

    .primary-nav a::after {
        bottom: 2px;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 1023px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-copy {
        max-width: 640px;
    }

    .hero-visual {
        order: 2;
        min-height: 360px;
    }

    .hero-copy {
        order: 1;
    }

    .dots-hero {
        left: auto;
        right: 4%;
        top: -2%;
    }

    .dots-hero-bottom {
        display: none;
    }
}

@media (max-width: 900px) {
    .header-inner {
        height: 74px;
    }

    .hero {
        padding: 40px 0 32px;
    }
}

@media (max-width: 768px) {
    .hero-desc {
        font-size: 15px;
    }

    .curve-frame {
        max-width: 460px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 18px;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 34px);
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        min-height: 300px;
    }

    .curve-frame {
        max-width: 340px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .social-icons {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 380px) {
    .logo {
        font-size: 18px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
    }

    .hero h1 {
        font-size: clamp(24px, 9vw, 30px);
    }

    .hero-subheading {
        font-size: 14px;
    }

    .curve-frame {
        max-width: 280px;
    }

    .cta-btn {
        padding: 14px 22px;
        font-size: 13px;
    }
}




/* About Page Content styling  */

/* =====================================================
   ABOUT SECTION
===================================================== */


/* ================================
   ABOUT SECTION
================================ */

.about-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5faff;
    padding: 0;
}

.about-container {
    width: 100%;
    min-height: 458px;
    display: flex;
    align-items: stretch;
}


/* ================================
   LEFT CONTENT
================================ */

.about-content {
    width: 48%;
    position: relative;
    z-index: 3;

    padding: 75px 35px 55px 5%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        radial-gradient(circle at 10% 85%,
            rgba(30, 145, 235, 0.12) 1px,
            transparent 2px),
        linear-gradient(135deg,
            #ffffff 0%,
            #f4f9ff 100%);

    background-size: 14px 14px, auto;
}


/* White curved edge */

.about-content::after {
    content: "";
    position: absolute;
    top: 0;
    right:0px;

    width: 180px;
    height: 100%;

    background: #f5faff;

    border-radius: 50%;

    z-index: -1;
}


/* Heading */

.about-content h2 {
    margin: 0;
    color: #5633c8;

    font-family: Arial, sans-serif;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* Orange underline */

.about-line {
    width: 70px;
    height: 4px;

    margin-top: 28px;
    margin-bottom: 27px;

    background: #f58220;
    border-radius: 10px;

    position: relative;
}

.about-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 54px;
    height: 100%;

    background: #f58220;
}


/* Paragraph */

.about-content p {
    max-width: 690px;

    margin: 0 0 20px;

    color: #171717;

    font-family: Arial, sans-serif;
    font-size: clamp(16px, 1.35vw, 22px);
    line-height: 1.65;
    font-weight: 400;
}

.about-content p:last-child {
    margin-bottom: 0;
}


/* Highlight */

.about-content strong {
    display: inline;
    color: #5633c8;
    font-weight: 800;
}


/* ================================
   RIGHT IMAGE
================================ */

.about-visual {
    position: relative;

    width: 96%;
    min-height: 458px;

    display: flex;
    align-items: stretch;

    overflow: visible;
}


/* Image container */

.image-wrapper {
    position: absolute;
    inset: 0;

    overflow: hidden;

    /* border-radius: 160px 0 0 160px; */
}


/* Image */

.image-wrapper img {
    width: 100%;
    height: 83%;

    display: block;

    object-fit: cover;
    object-position: center center;
}


/* ================================
   270 BADGE
================================ */

.immersive-badge {
    position: absolute;

    left: -43px;
    bottom: 50px;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background: #1455ae;

    border: 5px solid #ffffff;

    outline: 3px solid rgba(25, 65, 120, 0.55);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #ffffff;

    z-index: 10;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/* Badge degree */

.badge-degree {
    font-family: Arial, sans-serif;

    font-size: 29px;
    line-height: 1;

    font-weight: 800;

    margin-bottom: 5px;
}


/* Badge text */

.badge-text {
    font-family: Arial, sans-serif;

    font-size: 14px;
    line-height: 1.15;

    font-weight: 600;
}


/* ================================
   LARGE DESKTOP
================================ */

@media (min-width: 1600px) {

    .about-content {
        padding-left: 6%;
    }

    .about-container {
        min-height: 500px;
    }

    .about-visual {
        min-height: 500px;
    }

    .immersive-badge {
        width: 155px;
        height: 155px;

        left: -80px;
    }
}


/* ================================
   LAPTOP
================================ */

@media (max-width: 1200px) {

    .about-content {
        padding-left: 5%;
        padding-right: 25px;
    }

    .about-content h2 {
        font-size: 48px;
    }

    .about-content p {
        font-size: 17px;
        line-height: 1.55;
    }

    .image-wrapper {
        border-radius: 120px 0 0 120px;
    }

    .immersive-badge {
        width: 130px;
        height: 130px;

        left: -65px;
        bottom: 12px;
    }

    .badge-degree {
        font-size: 26px;
    }

    .badge-text {
        font-size: 12px;
    }
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .about-container {
        min-height: auto;

        flex-direction: column;
    }

    .about-content {
        width: 100%;

        padding: 55px 7% 45px;

        background:
            radial-gradient(circle at 8% 90%,
                rgba(30, 145, 235, 0.12) 1px,
                transparent 2px),
            linear-gradient(135deg,
                #ffffff,
                #f4f9ff);

        background-size: 14px 14px, auto;
    }

    .about-content::after {
        display: none;
    }

    .about-content h2 {
        font-size: 46px;
    }

    .about-content p {
        max-width: 850px;
        font-size: 18px;
    }

    .about-visual {
        width: 100%;
        min-height: 400px;
    }

    .image-wrapper {
        position: relative;
        width: 100%;
        height: 400px;

        border-radius: 0;
    }

    .immersive-badge {
        left: 6%;
        bottom: 20px;

        width: 125px;
        height: 125px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .about-content {
        padding: 42px 22px 38px;
    }

    .about-content h2 {
        font-size: 38px;
        letter-spacing: 0;
    }

    .about-line {
        width: 58px;
        height: 3px;

        margin-top: 18px;
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.55;

        margin-bottom: 17px;
    }

    .about-visual {
        min-height: 300px;
    }

    .image-wrapper {
        height: 300px;
    }

    .image-wrapper img {
        object-position: center center;
    }

    .immersive-badge {
        width: 105px;
        height: 105px;

        left: 18px;
        bottom: 15px;

        border-width: 4px;
        outline-width: 2px;
    }

    .badge-degree {
        font-size: 22px;
    }

    .badge-text {
        font-size: 10px;
        line-height: 1.15;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .about-content {
        padding: 35px 18px 32px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-content p {
        font-size: 15px;
    }

    .image-wrapper {
        height: 260px;
    }

    .immersive-badge {
        width: 92px;
        height: 92px;

        left: 12px;
        bottom: 12px;
    }

    .badge-degree {
        font-size: 19px;
    }

    .badge-text {
        font-size: 9px;
    }
}



/* =========================================
   WHO WE ARE SECTION
========================================= */

.who-section {
    width: 100%;
    padding: 20px 35px 15px;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.who-container {
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 375px;
    gap: 35px;
    align-items: stretch;
}


/* =========================================
   LEFT SIDE
========================================= */

.who-left {
    min-width: 0;
}


/* TITLE */

.who-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-bottom: 6px;
}

.who-title h2 {
    margin: 0;

    color: #5633c8;
    font-size: clamp(30px, 3vw, 25px);
    font-weight: 800;
    line-height: 1;

    white-space: nowrap;
}

.title-line {
    position: relative;

    width: 45px;
    height: 2px;

    background: #f58220;
}


/* small orange dot */

.title-line::after {
    content: "";

    position: absolute;
    top: 50%;
    right: -3px;

    width: 6px;
    height: 6px;

    transform: translateY(-50%);

    border-radius: 50%;
    background: #f58220;
}


/* Left line */

.title-line:first-child::after {
    right: auto;
    left: -3px;
}


/* INTRO TEXT */

.who-intro {
    max-width: 850px;

    margin: 0 auto 20px;

    text-align: center;

    color: #202020;

    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.45;
    font-weight: 400;
}


/* =========================================
   FOUR COLUMNS
========================================= */

.vision-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 5px;
}


.vision-card {
    position: relative;

    padding: 0 25px 0;

    text-align: left;
}


/* vertical divider */

.vision-card:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 27px;
    right: 0;

    width: 1px;
    height: 218px;

    background: #dddddd;
}


/* =========================================
   VISION ICON
========================================= */

.vision-icon {
    width: 84px;
    height: 84px;

    margin: 0 auto 12px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf4ff;
}


.vision-icon svg {
    width: 48px;
    height: 48px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* icon backgrounds */

.vision-icon.blue {
    color: #075dcc;
    background: #eaf2ff;
}

.vision-icon.orange {
    color: #ff7200;
    background: #fff1e7;
}

.vision-icon.green {
    color: #3c9d25;
    background: #eef8ed;
}

.vision-icon.purple {
    color: #7041b3;
    background: #f0eafa;
}


/* =========================================
   CARD HEADINGS
========================================= */

.vision-card h3 {
    margin: 0 0 7px;

    text-align: center;

    font-size: clamp(16px, 1.25vw, 21px);
    line-height: 1.2;

    font-weight: 800;
}


.blue-text {
    color: #124d9d;
}

.orange-text {
    color: #ff7200;
}

.green-text {
    color: #389421;
}

.purple-text {
    color: #6336a5;
}


/* =========================================
   CARD DESCRIPTION
========================================= */

.vision-card p {
    margin: 0;

    color: #191919;

    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.5;

    font-weight: 400;
}


/* =========================================
   WHY IM BHARAT CARD
========================================= */

.why-card {
    width: 100%;

    padding: 18px 28px 17px;

    box-sizing: border-box;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.10);

    border: 1px solid #eeeeee;
}


.why-card>h2 {
    margin: 0 0 10px;

    text-align: center;

    color: #5633c8;

    font-size: clamp(22px, 1.8vw, 27px);
    font-weight: 800;

    line-height: 1.15;
}


/* =========================================
   WHY ITEMS
========================================= */

.why-item {
    display: grid;

    grid-template-columns: 62px 1fr;

    gap: 11px;

    align-items: center;

    margin-bottom: 10px;
}


.why-item:last-child {
    margin-bottom: 0;
}


/* =========================================
   WHY ICON
========================================= */

.why-icon {
    width: 57px;
    height: 57px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf4ff;

    color: #0751a8;

    box-shadow:
        inset 0 0 0 1px rgba(15, 72, 145, 0.03);
}


.why-icon span {
    width: 43px;
    height: 43px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1757aa;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}


.why-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   WHY CONTENT
========================================= */

.why-content h3 {
    margin: 0 0 3px;

    color: #5633c8;

    font-size: clamp(12px, 1.15vw, 10px);
    line-height: 1.2;

    font-weight: 800;
}


.why-content p {
    margin: 0;

    color: #222222;

    font-size: clamp(12px, .95vw, 14px);
    line-height: 1.3;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1500px) {

    .who-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .who-container {
        /* max-width: 1500px; */
        grid-template-columns: minmax(0, 1fr) 390px;
    }

    .vision-card {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {

    .who-container {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 22px;
    }

    .vision-card {
        padding: 0 18px;
    }

    .vision-card:not(:last-child)::after {
        height: 225px;
    }

    .why-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .why-item {
        grid-template-columns: 52px 1fr;
        gap: 8px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
    }

    .why-icon span {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .who-section {
        padding: 35px 25px;
    }

    .who-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .who-intro {
        max-width: 720px;
        margin-bottom: 30px;
    }

    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .vision-card {
        padding: 0 25px;
    }

    .vision-card:nth-child(2)::after {
        display: none;
    }

    .vision-card:not(:last-child)::after {
        height: 100%;
        top: 0;
    }

    .why-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .why-card>h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .why-item {
        margin-bottom: 15px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .who-section {
        padding: 35px 18px;
    }

    .who-title {
        gap: 10px;
    }

    .who-title h2 {
        font-size: 30px;
    }

    .title-line {
        width: 30px;
    }

    .who-intro {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 28px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .vision-card {
        padding: 0 10px 28px;

        border-bottom: 1px solid #dddddd;
    }

    .vision-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .vision-card:not(:last-child)::after {
        display: none;
    }

    .vision-icon {
        width: 76px;
        height: 76px;
    }

    .vision-icon svg {
        width: 43px;
        height: 43px;
    }

    .vision-card h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .vision-card p {
        text-align: center;
        font-size: 15px;
        line-height: 1.55;
    }

    /* WHY CARD */

    .why-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .why-card>h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .why-item {
        grid-template-columns: 58px 1fr;
        gap: 10px;
        align-items: center;
        margin-bottom: 18px;
    }

    .why-icon {
        width: 54px;
        height: 54px;
    }

    .why-content h3 {
        font-size: 15px;
    }

    .why-content p {
        font-size: 13px;
        line-height: 1.4;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .who-section {
        padding: 30px 14px;
    }

    .who-title {
        gap: 7px;
    }

    .who-title h2 {
        font-size: 26px;
    }

    .title-line {
        width: 22px;
    }

    .who-intro {
        font-size: 14px;
    }

    .vision-card p {
        font-size: 14px;
    }

    .why-card {
        padding: 20px 14px;
    }

    .why-item {
        grid-template-columns: 50px 1fr;
    }

    .why-icon {
        width: 48px;
        height: 48px;
    }

    .why-icon span {
        width: 37px;
        height: 37px;
        font-size: 11px;
    }

    .why-content h3 {
        font-size: 14px;
    }

    .why-content p {
        font-size: 12px;
    }
}



















/* contact page styling  */

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    position: relative;
    width: 100%;
    min-height: 570px;

    overflow: hidden;

    background:
        radial-gradient(circle at 72% 20%,
            rgba(112, 75, 225, 0.08),
            transparent 28%),
        linear-gradient(135deg,
            #ffffff 0%,
            #fafaff 55%,
            #f4f8ff 100%);

    isolation: isolate;
}


/* =====================================================
   CONTAINER
===================================================== */

.contact-container {
    position: relative;
    z-index: 5;

    width: min(1400px, 100%);

    min-height: 570px;

    margin: auto;

    padding:
        45px clamp(25px, 5vw, 75px);

    display: grid;

    grid-template-columns:
        minmax(330px, 40%) minmax(500px, 60%);

    align-items: center;

    gap: 25px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.contact-info {
    position: relative;
    z-index: 5;

    padding-left: 0;
}


.contact-info h2 {
    margin: 0;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: clamp(35px, 3.4vw, 52px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1.8px;

    color: #101d4b;
}


/* =====================================================
   TITLE LINE
===================================================== */

.contact-title-line {
    display: flex;

    align-items: center;

    margin-top: 9px;
    margin-bottom: 22px;

    height: 4px;
}


.contact-title-line span {
    width: 45px;
    height: 3px;

    background:
        linear-gradient(90deg,
            #5123c7,
            #6938db);
}


.contact-title-line i {
    width: 30px;
    height: 3px;

    margin-left: 3px;

    background: #2daee8;

    display: block;
}


/* =====================================================
   INTRO
===================================================== */

.contact-intro {
    margin: 0 0 30px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.65;

    font-weight: 500;

    color: #172451;
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-detail {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

    color: #142052;
}


.contact-icon {
    width: 25px;
        height: 25px;
        min-width: 25px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background:#f19a21;
        color: #ffffff;
}


.contact-icon svg {
    width: 15px;
    height: 15px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.contact-detail span {
    display: block;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 1.55;

    font-weight: 500;

    color: #182452;
}


.contact-address {
    align-items: flex-start;

    margin-top: 4px;
}


/* =====================================================
   FORM CARD
===================================================== */

.contact-form-card {
    position: relative;
    z-index: 6;

    width: 100%;

    max-width: 650px;

    justify-self: end;

    padding: 25px 27px 27px;

    background: rgba(255, 255, 255, .97);

    border-radius: 20px;

    border: 1px solid rgba(225, 225, 235, .8);

    box-shadow:
        0 15px 45px rgba(39, 35, 83, .13);

    backdrop-filter: blur(10px);
}


/* =====================================================
   FORM
===================================================== */

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 8px;
}


.form-group {
    width: 100%;

    margin-bottom: 8px;
}


.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #e1e2e9;

    outline: none;

    background: #ffffff;

    border-radius: 5px;

    padding: 0 12px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 13px;

    color: #182452;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}


.form-group input {
    height: 39px;
}


.form-group textarea {
    height: 100px;

    padding-top: 12px;

    resize: vertical;

    min-height: 90px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8a8fa5;

    opacity: 1;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #6332cf;

    box-shadow:
        0 0 0 3px rgba(99, 50, 207, .08);
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.contact-submit {
    width: 100%;

    height: 39px;

    margin-top: 3px;

    border: 0;

    border-radius: 6px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background:
        linear-gradient(90deg,
            #3d14b7,
            #5e2bd2);

    color: #ffffff;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.contact-submit svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.contact-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(74, 30, 190, .25);
}


/* =====================================================
   BACKGROUND PURPLE SHAPE
===================================================== */

.contact-purple {
    position: absolute;

    z-index: 1;

    width: 210px;
    height: 330px;

    left: 20%;

    top: 180px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            rgba(131, 83, 230, .55),
            rgba(178, 143, 255, .25));

    transform:
        rotate(18deg);

    filter: blur(.2px);
}


/* =====================================================
   BOTTOM ORANGE CURVE
===================================================== */

.contact-orange {
    position: absolute;

    z-index: 1;

    width: 520px;
    height: 250px;

    left: 4%;
    bottom: -190px;

    border-radius: 55% 55% 0 0;

    background:
        linear-gradient(135deg,
            #ff7d43,
            #ffb36a);

    transform:
        rotate(-8deg);
}


/* =====================================================
   RIGHT BLUE BACKGROUND
===================================================== */

.contact-blue {
    position: absolute;

    z-index: 0;

    width: 430px;
    height: 650px;

    right: -220px;
    top: -180px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            rgba(197, 220, 255, .65),
            rgba(114, 179, 247, .7));
}


/* =====================================================
   RIGHT BOTTOM TEAL
===================================================== */

.contact-teal {
    position: absolute;

    z-index: 1;

    width: 600px;
    height: 230px;

    right: -100px;
    bottom: -155px;

    border-radius: 55% 45% 0 0;

    background:
        linear-gradient(90deg,
            #36bdd2,
            #43cdb4);

    transform:
        rotate(-7deg);
}


/* =====================================================
   PAPER PLANE
===================================================== */

.contact-plane {
    position: absolute;

    z-index: 4;

    top: 22px;
    right: 50px;

    width: 62px;
    height: 62px;

    color: #0754c9;

    transform: rotate(-7deg);
}


.contact-plane svg {
    width: 100%;
    height: 100%;
}


/* =====================================================
   FLIGHT PATH
===================================================== */

.flight-path {
    position: absolute;

    z-index: 3;

    top: 125px;
    right: 30px;

    width: 150px;
    height: 145px;

    border-right: 2px dashed #1268d6;

    border-bottom: 2px dashed #1268d6;

    border-radius:
        0 0 100px 100px;

    transform:
        rotate(-12deg);
}


/* =====================================================
   DOT PATTERN
===================================================== */

.contact-dots {
    position: absolute;

    z-index: 3;

    right: 42px;
    top: 330px;

    width: 70px;

    display: grid;

    grid-template-columns:
        repeat(4, 7px);

    gap: 8px;
}


.contact-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .75);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .contact-container {
        grid-template-columns:
            38% 62%;

        padding:
            40px 35px;
    }

    .contact-form-card {
        max-width: 600px;
    }

    .contact-info h2 {
        font-size: 38px;
    }

    .contact-intro {
        font-size: 11px;
    }

    .contact-detail span {
        font-size: 10px;
    }

}


/* =====================================================
   MOBILE / TABLET
===================================================== */

@media (max-width: 800px) {

    .contact-section {
        min-height: auto;
    }


    .contact-container {
        min-height: auto;

        grid-template-columns: 1fr;

        padding:
            55px 25px;

        gap: 35px;
    }


    .contact-info {
        max-width: 600px;
    }


    .contact-form-card {
        width: 100%;

        max-width: none;

        justify-self: stretch;

        box-sizing: border-box;
    }


    .contact-purple {
        left: 5%;
        top: 250px;
    }


    .contact-plane {
        right: 20px;
    }


    .flight-path {
        right: 5px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .contact-container {
        padding:
            40px 18px;
    }


    .contact-info h2 {
        font-size: 34px;
    }


    .contact-intro {
        font-size: 11px;

        margin-bottom: 25px;
    }


    .contact-detail {
        gap: 11px;

        margin-bottom: 15px;
    }


    .contact-icon {
        width: 33px;
        height: 33px;
        min-width: 33px;
    }


    .contact-icon svg {
        width: 16px;
        height: 16px;
    }


    .contact-detail span {
        font-size: 9.5px;
    }


    .contact-form-card {
        padding:
            18px 15px 18px;

        border-radius: 15px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .form-group input {
        height: 40px;
    }


    .form-group textarea {
        height: 120px;
    }


    .contact-submit {
        height: 42px;
    }


    .contact-plane {
        width: 45px;
        height: 45px;

        right: 10px;
        top: 18px;
    }


    .flight-path {
        display: none;
    }


    .contact-dots {
        display: none;
    }


    .contact-orange {
        left: -100px;
    }


    .contact-teal {
        right: -250px;
    }

}


/* homepage css Styling  */

/* =========================
   FEATURES SECTION
========================= */

.features-section {
    width: 100%;
    padding: 8px 30px;
    box-sizing: border-box;
}

.features-container {
    width: 100%;
    /* max-width: 1380px; */
    min-height: 108px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;

    background: #ffffff;

    border-radius: 22px;

    padding: 20px 32px;

    box-sizing: border-box;

    box-shadow:
        0 8px 30px rgba(62, 44, 145, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.03);
}


/* =========================
   FEATURE ITEM
========================= */

.feature-item {
    min-width: 0;

    display: flex;
    align-items: center;

    padding: 0 22px;

    position: relative;
}


/* Vertical divider */

.feature-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 1px;
    height: 58px;

    transform: translateY(-50%);

    background: #e7e7ed;
}


/* =========================
   ICON
========================= */

.feature-icon {
    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 24px;

    border-radius: 19px;

    color: #4f24c9;

    background:
        linear-gradient(145deg,
            #f0eaff 0%,
            #e7ddff 100%);

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        0 5px 14px rgba(89, 53, 194, 0.08);
}


/* SVG icons */

.feature-icon svg {
    width: 31px;
    height: 31px;

    display: block;
}


/* Rupee icon */

.rupee-icon span {
    font-family: Arial, sans-serif;

    font-size: 32px;
    font-weight: 700;

    line-height: 1;

    transform: translateY(-1px);
}


/* =========================
   CONTENT
========================= */

.feature-content {
    min-width: 0;
}

.feature-content h3 {
    margin: 0 0 7px;

    color: #101b3d;

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.2;

    font-weight: 700;

    white-space: nowrap;
}

.feature-content p {
    margin: 0;

    color: #4d5875;

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 12.5px;
    line-height: 1.45;

    font-weight: 400;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .features-container {
        padding: 18px 15px;
    }

    .feature-item {
        padding: 0 14px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;

        flex-basis: 55px;

        margin-right: 15px;

        border-radius: 16px;
    }

    .feature-icon svg {
        width: 27px;
        height: 27px;
    }

    .feature-content h3 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 11px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .features-section {
        padding: 10px 15px;
    }

    .features-container {
        display: grid;

        grid-template-columns: 1fr;

        gap: 0;

        padding: 10px 18px;

        border-radius: 20px;
    }

    .feature-item {
        padding: 16px 5px;
    }

    /* Horizontal divider */

    .feature-item:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 5px;
        right: 5px;

        width: auto;
        height: 1px;

        transform: none;

        background: #e8e8ee;
    }

    .feature-icon {
        width: 58px;
        height: 58px;

        flex-basis: 58px;

        margin-right: 17px;

        border-radius: 17px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-content h3 {
        font-size: 15px;

        white-space: normal;

        margin-bottom: 5px;
    }

    .feature-content p {
        font-size: 12px;

        line-height: 1.5;
    }

    .desktop-break {
        display: none;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .features-container {
        padding: 8px 14px;
    }

    .feature-item {
        padding: 14px 3px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;

        margin-right: 14px;
    }

    .feature-icon svg {
        width: 25px;
        height: 25px;
    }

    .feature-content h3 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 11px;
    }
}

