body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container {
    width:1400px;
    margin: 0 auto;
}
/* =========================================================
   BHARAT ITC - COMMON / HOME PAGE CSS
   Shared website design + Homepage
   ========================================================= */

:root {
    --bitc-blue: #063b91;
    --bitc-dark-blue: #052d6f;
    --bitc-yellow: #f5c400;
    --bitc-red: #d71920;
    --bitc-text: #172033;
    --bitc-muted: #667085;
    --bitc-light: #f5f8fc;
    --bitc-border: #e5eaf1;
    --bitc-white: #ffffff;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.bitc-home {
    font-family: "Poppins", Arial, sans-serif;
    color: var(--bitc-text);
    overflow: hidden;
}

.bitc-home *,
.bitc-home *::before,
.bitc-home *::after {
    box-sizing: border-box;
}

.bitc-container {
    width: min(1320px, 92%);
    margin: 0 auto;
}

.bitc-home a {
    text-decoration: none;
}

.bitc-home img {
    max-width: 100%;
}


/* =========================================================
   COMMON BUTTON
   ========================================================= */

.bitc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;
    padding: 13px 22px;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;

    transition: all .3s ease;
}

.bitc-btn-primary {
    background: var(--bitc-red);
    color: #fff !important;
}

.bitc-btn-primary:hover {
    background: var(--bitc-blue);
    transform: translateY(-2px);
}

.bitc-btn-outline {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.65);
    background: rgba(255,255,255,.06);
}

.bitc-btn-outline:hover {
    background: #fff;
    color: var(--bitc-blue) !important;
}

.bitc-btn-light {
    background: #fff;
    color: var(--bitc-blue) !important;
}

.bitc-btn-light:hover {
    background: var(--bitc-yellow);
    color: #172033 !important;
}


/* =========================================
   HOME HERO - COMPACT SLIDER
   ========================================= */

.bharat-hero {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 500px;
    overflow: hidden;
    background: #123d78;
}

/* Slider image area */
.bharat-hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bharat-hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark/blue overlay */
.bharat-hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8, 43, 91, 0.98) 0%,
        rgba(15, 61, 119, 0.92) 38%,
        rgba(15, 61, 119, 0.55) 58%,
        rgba(15, 61, 119, 0.08) 100%
    );
}

/* Hero content */
.bharat-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 70px 40px;
    display: flex;
    align-items: center;
}

/* Content width */
.bharat-hero-text {
    width: 58%;
    max-width: 700px;
}

/* Small label */
.bharat-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    margin-bottom: 22px;

    background: rgba(255,255,255,0.12);
    border-left: 4px solid #ffc400;

    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Main heading */
.bharat-hero h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.bharat-hero h1 span {
    color: #ffc400;
}

/* Description */
.bharat-hero p {
    margin: 0 0 28px;
    max-width: 700px;

    color: rgba(255,255,255,0.92);
    font-size: 18px;
    line-height: 1.7;
}

/* Buttons */
.bharat-hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bharat-hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 54px;
    padding: 0 28px;

    border-radius: 7px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.bharat-hero-buttons .primary {
    background: #ed1c24;
    color: #fff;
}

.bharat-hero-buttons .primary:hover {
    background: #c9141b;
    transform: translateY(-2px);
}

.bharat-hero-buttons .secondary {
    border: 1px solid rgba(255,255,255,0.65);
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.bharat-hero-buttons .secondary:hover {
    background: #fff;
    color: #123d78;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .bharat-hero {
        height: 460px;
        min-height: 460px;
    }

    .bharat-hero-content {
        padding: 55px 30px;
    }

    .bharat-hero-text {
        width: 68%;
    }

    .bharat-hero h1 {
        font-size: 52px;
    }

    .bharat-hero p {
        font-size: 17px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .bharat-hero {
        height: 620px;
        min-height: 620px;
    }

    .bharat-hero-content {
        padding: 45px 22px;
        align-items: flex-end;
    }

    .bharat-hero-text {
        width: 100%;
        max-width: 100%;
    }

    .bharat-hero h1 {
        font-size: 42px;
        line-height: 1.05;
        letter-spacing: -0.5px;
    }

    .bharat-hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .bharat-hero-label {
        font-size: 13px;
        padding: 10px 14px;
    }

    .bharat-hero-buttons {
        flex-wrap: wrap;
    }

    .bharat-hero-buttons a {
        min-height: 50px;
        padding: 0 20px;
    }

    .bharat-hero-slider img {
        object-position: 65% center;
    }

    .bharat-hero-slider::after {
        background: linear-gradient(
            180deg,
            rgba(8,43,91,0.25) 0%,
            rgba(8,43,91,0.65) 45%,
            rgba(8,43,91,0.98) 100%
        );
    }
}

/* =========================================================
   SECTION HEADING
   ========================================================= */

.bitc-section-heading {
    max-width: 760px;
    margin: 0 auto 48px;

    text-align: center;
}

.bitc-section-kicker {
    display: inline-block;

    color: var(--bitc-red);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.bitc-section-heading h2 {
    margin: 9px 0 13px;

    font-size: clamp(28px, 3.5vw, 43px);
    line-height: 1.18;

    font-weight: 800;
    letter-spacing: -.4px;
}

.bitc-section-heading h2 span {
    color: var(--bitc-blue);
}

.bitc-section-heading p {
    margin: 0;

    color: var(--bitc-muted);

    font-size: 14px;
    line-height: 1.8;
}

.bitc-heading-light h2 {
    color: #fff;
}

.bitc-heading-light h2 span {
    color: var(--bitc-yellow);
}

.bitc-heading-light p {
    color: rgba(255,255,255,.72);
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.bitc-home-about {
    padding: 95px 0;
    background: #fff;
}

.bitc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 75px;
}

.bitc-about-content {
    max-width: 650px;
}

.bitc-about-content h2 {
    margin: 9px 0 18px;

    font-size: clamp(30px, 3.5vw, 43px);
    line-height: 1.18;

    font-weight: 800;
}

.bitc-about-content h2 span {
    display: block;
    color: var(--bitc-blue);
}

.bitc-about-content p {
    margin: 0 0 15px;

    color: var(--bitc-muted);

    font-size: 14px;
    line-height: 1.85;
}

.bitc-about-points {
    list-style: none;

    margin: 25px 0 28px;
    padding: 0;
}

.bitc-about-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 13px;

    color: #344054;

    font-size: 14px;
    font-weight: 500;
}

.bitc-about-points i {
    margin-top: 3px;

    color: var(--bitc-red);
}


/* ABOUT VISUAL */

.bitc-about-visual {
    position: relative;
}

.bitc-about-image {
    position: relative;

    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 25px 60px rgba(3,45,100,.14);
}

.bitc-about-image::after {
    content: "";

    position: absolute;
    inset: 0;

    border: 8px solid rgba(255,255,255,.12);

    pointer-events: none;
}

.bitc-about-image img {
    display: block;

    width: 100%;
    min-height: 430px;

    object-fit: cover;
}

.bitc-about-card {
    position: absolute;

    right: -20px;
    bottom: 25px;

    width: 205px;

    padding: 19px;

    background: #fff;

    border-left: 4px solid var(--bitc-yellow);

    border-radius: 8px;

    box-shadow: 0 15px 35px rgba(0,0,0,.14);
}

.bitc-about-card strong {
    display: block;

    color: var(--bitc-blue);

    font-size: 22px;
    font-weight: 800;
}

.bitc-about-card span {
    display: block;

    margin-top: 3px;

    color: var(--bitc-muted);

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   COURSES SECTION
   ========================================================= */

.bitc-home-courses {
    padding: 95px 0;

    background: var(--bitc-light);
}

.bitc-home-course-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.bitc-home-course-card {
    position: relative;

    padding: 35px;

    background: #fff;

    border: 1px solid var(--bitc-border);
    border-radius: 12px;

    overflow: hidden;

    transition: .3s ease;
}

.bitc-home-course-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--bitc-yellow);
}

.bitc-home-course-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 45px rgba(4,45,100,.11);
}

.bitc-home-course-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #eef4ff;

    border-radius: 10px;

    color: var(--bitc-blue);

    font-size: 25px;
}

.bitc-course-label {
    display: block;

    margin-bottom: 5px;

    color: var(--bitc-red);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.3px;
}

.bitc-home-course-card h3 {
    margin: 0;

    color: var(--bitc-blue);

    font-size: 27px;
    font-weight: 800;
}

.bitc-home-course-card h4 {
    margin: 3px 0 13px;

    color: #344054;

    font-size: 14px;
    font-weight: 600;
}

.bitc-home-course-card p {
    margin: 0 0 20px;

    color: var(--bitc-muted);

    font-size: 13px;
    line-height: 1.8;
}

.bitc-home-course-card > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--bitc-blue);

    font-size: 13px;
    font-weight: 700;

    transition: .25s ease;
}

.bitc-home-course-card > a:hover {
    color: var(--bitc-red);
    gap: 13px;
}

.bitc-courses-bottom {
    margin-top: 32px;
    text-align: center;
}

.bitc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--bitc-blue);

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.bitc-home-why {
    padding: 95px 0;

    background:
        linear-gradient(
            120deg,
            #052d6f,
            #063b91
        );
}

.bitc-why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.bitc-why-card {
    padding: 28px 22px;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 10px;

    transition: .3s ease;
}

.bitc-why-card:hover {
    transform: translateY(-6px);

    background: rgba(255,255,255,.11);
}

.bitc-why-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: rgba(245,196,0,.13);

    border-radius: 8px;

    color: var(--bitc-yellow);

    font-size: 21px;
}

.bitc-why-card h3 {
    margin: 0 0 9px;

    color: #fff;

    font-size: 17px;
}

.bitc-why-card p {
    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   STATS
   ========================================================= */

.bitc-home-stats {
    padding: 45px 0;

    background: #fff;

    border-bottom: 1px solid var(--bitc-border);
}

.bitc-stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;
}

.bitc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 10px 20px;

    text-align: center;

    border-right: 1px solid var(--bitc-border);
}

.bitc-stat:last-child {
    border-right: 0;
}

.bitc-stat i {
    margin-bottom: 9px;

    color: var(--bitc-red);

    font-size: 21px;
}

.bitc-stat strong {
    color: var(--bitc-blue);

    font-size: 24px;
    font-weight: 800;
}

.bitc-stat span {
    margin-top: 2px;

    color: var(--bitc-muted);

    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   CTA
   ========================================================= */

.bitc-home-cta {
    padding: 65px 0;

    background:
        linear-gradient(
            110deg,
            #f5c400,
            #ffd83d
        );
}

.bitc-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.bitc-cta-inner > div:first-child {
    max-width: 720px;
}

.bitc-cta-inner span {
    color: #5a4800;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.bitc-cta-inner h2 {
    margin: 7px 0 7px;

    color: #10234d;

    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.2;
}

.bitc-cta-inner h2 span {
    color: var(--bitc-red);

    font-size: inherit;
    letter-spacing: 0;
}

.bitc-cta-inner p {
    margin: 0;

    color: #4e5665;

    font-size: 13px;
    line-height: 1.7;
}

.bitc-cta-buttons {
    display: flex;

    flex-shrink: 0;

    gap: 10px;
}

.bitc-cta-buttons .bitc-btn-primary {
    background: var(--bitc-red);
}

.bitc-cta-buttons .bitc-btn-primary:hover {
    background: var(--bitc-blue);
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .bitc-hero {
        min-height: 590px;
    }

    .bitc-about-grid {
        gap: 45px;
    }

    .bitc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bitc-home-course-card {
        padding: 28px;
    }

}


/* =========================================================
   RESPONSIVE - 991
   ========================================================= */

@media (max-width: 991px) {

    .bitc-home-about {
        padding: 75px 0;
    }

    .bitc-about-grid {
        grid-template-columns: 1fr;
    }

    .bitc-about-content {
        max-width: 100%;
    }

    .bitc-about-image img {
        min-height: 380px;
    }

    .bitc-about-card {
        right: 20px;
    }

    .bitc-home-courses,
    .bitc-home-why {
        padding: 75px 0;
    }

    .bitc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .bitc-stat:nth-child(2) {
        border-right: 0;
    }

    .bitc-stat:nth-child(3) {
        border-top: 1px solid var(--bitc-border);
        padding-top: 25px;
    }

    .bitc-stat:nth-child(4) {
        border-top: 1px solid var(--bitc-border);
        padding-top: 25px;
    }

    .bitc-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .bitc-container {
        width: 90%;
    }

    .bitc-hero {
        min-height: 650px;

        background-position: 65% center;
    }

    .bitc-hero-content {
        padding: 75px 0;
    }

    .bitc-hero h1 {
        font-size: clamp(36px, 10vw, 50px);
    }

    .bitc-hero p {
        font-size: 14px;
        line-height: 1.75;
    }

    .bitc-hero-highlights {
        gap: 15px;

        margin-top: 30px;
    }

    .bitc-hero-highlights div {
        font-size: 11px;
    }

    .bitc-home-course-grid {
        grid-template-columns: 1fr;
    }

    .bitc-why-grid {
        grid-template-columns: 1fr;
    }

    .bitc-section-heading {
        margin-bottom: 35px;
    }

    .bitc-home-stats {
        padding: 35px 0;
    }

    .bitc-stat {
        padding: 8px 12px;
    }

    .bitc-cta-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .bitc-hero {
        min-height: 620px;
    }

    .bitc-hero-tag {
        font-size: 10px;
    }

    .bitc-hero h1 {
        margin-top: 16px;
        font-size: 37px;
    }

    .bitc-hero p {
        font-size: 13px;
    }

    .bitc-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bitc-btn {
        width: 100%;
    }

    .bitc-hero-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .bitc-home-about,
    .bitc-home-courses,
    .bitc-home-why {
        padding: 60px 0;
    }

    .bitc-about-image img {
        min-height: 280px;
    }

    .bitc-about-card {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;

        margin-top: -5px;
    }

    .bitc-home-course-card {
        padding: 25px;
    }

    .bitc-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bitc-stat {
        border-right: 0 !important;
    }

    .bitc-stat:nth-child(n+3) {
        border-top: 1px solid var(--bitc-border);
        padding-top: 20px;
    }

    .bitc-stat strong {
        font-size: 20px;
    }

    .bitc-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

}
/* =========================================================
   BHARAT ITC - FOOTER
   ========================================================= */

.bharat-footer{
    position:relative;
    background:#071d3b;
    color:#fff;
    font-family:"Poppins",Arial,sans-serif;
}

.bharat-footer *,
.bharat-footer *::before,
.bharat-footer *::after{
    box-sizing:border-box;
}

.bharat-footer .bharat-container{
    width:min(1320px,92%);
    margin:0 auto;
}


/* =========================
   FOOTER MAIN
   ========================= */

.bharat-footer-main{
    padding:75px 0 60px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(34,101,177,.22),
            transparent 35%
        ),
        #071d3b;
}

.bharat-footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.35fr;
    gap:55px;
}


/* =========================
   FOOTER ABOUT
   ========================= */

.bharat-footer-logo{
    display:inline-flex;
    align-items:center;
    background:#fff;
    padding:12px 15px;
    border-radius:8px;
    margin-bottom:20px;
}

.bharat-footer-logo img{
    display:block;
    width:100%;
    max-width:360px;
    height:auto;
}

.bharat-footer-about p{
    margin:0 0 14px;
    color:rgba(255,255,255,.72);
    font-size:14px;
    line-height:1.8;
}

.bharat-footer-about strong{
    color:#fff;
}

.bharat-footer-hindi{
    color:rgba(255,255,255,.68)!important;
}


/* =========================
   FOOTER HEADINGS
   ========================= */

.bharat-footer-col h3{
    position:relative;
    margin:5px 0 25px;
    padding-bottom:13px;
    color:#fff;
    font-size:19px;
    font-weight:700;
}

.bharat-footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:42px;
    height:3px;
    border-radius:5px;
    background:#f7c600;
}


/* =========================
   FOOTER LINKS
   ========================= */

.bharat-footer-links{
    margin:0;
    padding:0;
    list-style:none;
}

.bharat-footer-links li{
    margin:0;
    padding:0;
}

.bharat-footer-links a{
    display:flex;
    align-items:center;
    gap:9px;
    padding:7px 0;
    color:rgba(255,255,255,.72);
    text-decoration:none;
    font-size:14px;
    transition:.25s ease;
}

.bharat-footer-links a i{
    color:#f7c600;
    font-size:11px;
    transition:.25s ease;
}

.bharat-footer-links a:hover{
    color:#fff;
    transform:translateX(5px);
}

.bharat-footer-links a:hover i{
    color:#fff;
}


/* =========================
   SOCIAL
   ========================= */

.bharat-footer-social{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:23px;
}

.bharat-footer-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.13);
    color:#fff;
    text-decoration:none;
    transition:.25s ease;
}

.bharat-footer-social a:hover{
    background:#f7c600;
    color:#071d3b;
    transform:translateY(-4px);
}


/* =========================
   CONTACT
   ========================= */

.bharat-contact-item{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:21px;
}

.bharat-contact-icon{
    flex:0 0 38px;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:7px;
    background:rgba(247,198,0,.12);
    color:#f7c600;
}

.bharat-contact-item strong{
    display:block;
    margin-bottom:4px;
    color:#fff;
    font-size:13px;
}

.bharat-contact-item p{
    margin:0;
    color:rgba(255,255,255,.7);
    font-size:13px;
    line-height:1.65;
}

.bharat-contact-item a{
    display:block;
    margin-bottom:3px;
    color:rgba(255,255,255,.72);
    font-size:13px;
    text-decoration:none;
    transition:.2s;
}

.bharat-contact-item a:hover{
    color:#f7c600;
}


/* =========================
   FOOTER CTA
   ========================= */

.bharat-footer-cta{
    background:linear-gradient(
        100deg,
        #0c4277,
        #125b9c
    );
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.bharat-footer-cta-inner{
    min-height:145px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.bharat-footer-cta span{
    display:block;
    margin-bottom:6px;
    color:#f7c600;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.4px;
}

.bharat-footer-cta h2{
    margin:0 0 5px;
    color:#fff;
    font-size:28px;
    font-weight:800;
}

.bharat-footer-cta p{
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:13px;
}

.bharat-footer-cta-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.bharat-footer-call,
.bharat-footer-enquire{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:48px;
    padding:0 22px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.25s ease;
}

.bharat-footer-call{
    background:#fff;
    color:#0b4380;
}

.bharat-footer-call:hover{
    background:#f1f4f8;
    transform:translateY(-2px);
}

.bharat-footer-enquire{
    background:#f7c600;
    color:#071d3b;
}

.bharat-footer-enquire:hover{
    background:#fff;
    transform:translateY(-2px);
}


/* =========================
   COPYRIGHT
   ========================= */

.bharat-footer-bottom{
    background:#04152c;
}

.bharat-footer-bottom-inner{
    min-height:65px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.bharat-footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.58);
    font-size:12px;
}

.bharat-footer-bottom strong{
    color:rgba(255,255,255,.8);
}

.bharat-footer-bottom a{
    color:#f7c600;
    text-decoration:none;
    font-weight:600;
}


/* =========================
   FLOATING BUTTONS
   ========================= */

.bharat-floating-buttons{
    position:fixed;
    right:20px;
    bottom:25px;
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.bharat-floating-buttons a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    box-shadow:0 7px 20px rgba(0,0,0,.22);
    transition:.25s ease;
}

.bharat-floating-buttons a:hover{
    transform:translateY(-4px) scale(1.04);
}

.bharat-float-call{
    background:#0d5ca8;
}

.bharat-float-whatsapp{
    background:#20b95a;
}


/* =========================
   TABLET
   ========================= */

@media(max-width:1100px){

    .bharat-footer-grid{
        grid-template-columns:1.3fr 1fr 1fr;
        gap:40px;
    }

    .bharat-footer-contact{
        grid-column:1 / -1;
    }

}


/* =========================
   MOBILE
   ========================= */

@media(max-width:767px){

    .bharat-footer-main{
        padding:55px 0 40px;
    }

    .bharat-footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .bharat-footer-contact{
        grid-column:auto;
    }

    .bharat-footer-logo img{
        max-width:300px;
    }

    .bharat-footer-cta-inner{
        padding:35px 0;
        min-height:auto;
        flex-direction:column;
        align-items:flex-start;
    }

    .bharat-footer-cta h2{
        font-size:23px;
    }

    .bharat-footer-cta-buttons{
        width:100%;
    }

    .bharat-footer-call,
    .bharat-footer-enquire{
        flex:1;
    }

    .bharat-footer-bottom-inner{
        padding:18px 0;
        flex-direction:column;
        align-items:flex-start;
    }

}


/* =========================
   SMALL MOBILE
   ========================= */

@media(max-width:480px){

    .bharat-footer-logo{
        width:100%;
    }

    .bharat-footer-logo img{
        max-width:100%;
    }

    .bharat-footer-cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .bharat-footer-call,
    .bharat-footer-enquire{
        width:100%;
    }

    .bharat-floating-buttons{
        right:13px;
        bottom:15px;
    }

    .bharat-floating-buttons a{
        width:44px;
        height:44px;
    }

}
/* =========================================================
   BHARAT ITC - ABOUT PAGE
   ========================================================= */

.bharat-about-page{
    font-family:"Inter","Noto Sans Devanagari",Arial,sans-serif;
    color:#17233d;
}

.bharat-about-page *{
    box-sizing:border-box;
}

.bharat-about-page .bharat-container{
    width:min(1320px,92%);
    margin:0 auto;
}

.bharat-section{
    padding:90px 0;
}


/* =========================
   INNER HERO
   ========================= */

.bharat-inner-hero{
    position:relative;
    overflow:hidden;
    padding:85px 0 80px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(247,198,0,.18),
            transparent 30%
        ),
        linear-gradient(
            115deg,
            #061d48,
            #063d82
        );
}

.bharat-inner-hero::after{
    content:"";
    position:absolute;
    right:-100px;
    bottom:-160px;
    width:420px;
    height:420px;
    border:80px solid rgba(255,255,255,.035);
    border-radius:50%;
}

.bharat-inner-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.bharat-page-kicker{
    display:inline-block;
    margin-bottom:15px;
    color:#f7c600;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.8px;
}

.bharat-inner-hero h1{
    margin:0 0 15px;
    color:#fff;
    font-size:clamp(36px,5vw,60px);
    line-height:1.12;
    font-weight:800;
}

.bharat-inner-hero p{
    max-width:720px;
    margin:0 0 25px;
    color:rgba(255,255,255,.78);
    font-size:17px;
    line-height:1.8;
}

.bharat-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    font-size:13px;
}

.bharat-breadcrumb a{
    color:#f7c600;
    text-decoration:none;
}

.bharat-breadcrumb i{
    color:rgba(255,255,255,.45);
    font-size:10px;
}

.bharat-breadcrumb span{
    color:rgba(255,255,255,.65);
}


/* =========================
   SECTION HEADINGS
   ========================= */

.bharat-section-kicker{
    display:inline-block;
    margin-bottom:10px;
    color:#0a5aa5;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.6px;
}

.bharat-section-heading h2{
    margin:0 0 14px;
    color:#17233d;
    font-size:clamp(30px,4vw,44px);
    line-height:1.2;
    font-weight:800;
}

.bharat-section-heading h2 span{
    color:#0b5da8;
}

.bharat-section-heading p{
    max-width:720px;
    margin:0;
    color:#667085;
    font-size:15px;
    line-height:1.8;
}

.bharat-section-heading.centered{
    max-width:760px;
    margin:0 auto 45px;
    text-align:center;
}

.bharat-section-heading.centered p{
    margin:0 auto;
}


/* =========================
   ABOUT INTRO
   ========================= */

.bharat-about-intro{
    background:#fff;
}

.bharat-about-intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:75px;
    align-items:center;
}

.bharat-about-visual{
    position:relative;
    padding-right:30px;
}

.bharat-about-image-wrap{
    position:relative;
    min-height:400px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:35px;
    overflow:hidden;
    border-radius:22px;
    background:
        linear-gradient(
            135deg,
            #eef6ff,
            #f8fbff
        );
    border:1px solid #e4edf7;
    box-shadow:0 20px 55px rgba(6,47,91,.12);
}

.bharat-about-image-wrap::before{
    content:"";
    position:absolute;
    width:230px;
    height:230px;
    border-radius:50%;
    background:rgba(247,198,0,.13);
    top:-80px;
    right:-70px;
}

.bharat-about-image-wrap img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:520px;
    height:auto;
    mix-blend-mode:multiply;
}

.bharat-about-experience{
    position:absolute;
    z-index:5;
    right:0;
    bottom:0;
    width:190px;
    padding:20px;
    border-radius:13px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.14);
    border-left:4px solid #f7c600;
}

.bharat-about-experience strong{
    display:block;
    margin-bottom:5px;
    color:#0a4c91;
    font-size:30px;
    font-weight:800;
}

.bharat-about-experience span{
    display:block;
    color:#667085;
    font-size:11px;
    line-height:1.5;
}

.bharat-about-intro-content h2{
    margin:0 0 17px;
    color:#17233d;
    font-size:clamp(30px,4vw,45px);
    line-height:1.2;
    font-weight:800;
}

.bharat-about-intro-content h2 span{
    color:#0a5aa5;
}

.bharat-about-intro-content p{
    margin:0 0 14px;
    color:#667085;
    font-size:15px;
    line-height:1.85;
}

.bharat-about-intro-content strong{
    color:#344054;
}

.bharat-about-points{
    margin-top:28px;
    display:grid;
    gap:14px;
}

.bharat-about-point{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.bharat-about-point > i{
    margin-top:3px;
    color:#0a67b7;
    font-size:18px;
}

.bharat-about-point strong{
    display:block;
    margin-bottom:3px;
    color:#17233d;
    font-size:14px;
}

.bharat-about-point span{
    display:block;
    color:#667085;
    font-size:13px;
    line-height:1.6;
}


/* =========================
   WHY SECTION
   ========================= */

.bharat-about-why{
    padding:90px 0;
    background:#f5f8fc;
}

.bharat-about-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.bharat-about-feature{
    padding:30px 24px;
    border:1px solid #e5ebf2;
    border-radius:15px;
    background:#fff;
    transition:.3s ease;
}

.bharat-about-feature:hover{
    transform:translateY(-7px);
    border-color:#c9dff3;
    box-shadow:0 18px 40px rgba(11,67,117,.10);
}

.bharat-feature-icon{
    width:53px;
    height:53px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:21px;
    border-radius:11px;
    background:#eaf4ff;
    color:#075ba7;
    font-size:21px;
}

.bharat-about-feature h3{
    margin:0 0 9px;
    color:#17233d;
    font-size:18px;
}

.bharat-about-feature p{
    margin:0;
    color:#667085;
    font-size:13px;
    line-height:1.75;
}


/* =========================
   IDENTITY
   ========================= */

.bharat-about-identity{
    background:#fff;
}

.bharat-identity-grid{
    display:grid;
    grid-template-columns:1.25fr .75fr;
    gap:70px;
    align-items:center;
}

.bharat-identity-content h2{
    margin:0 0 17px;
    color:#17233d;
    font-size:clamp(30px,4vw,44px);
    line-height:1.2;
}

.bharat-identity-content h2 span{
    color:#0a5aa5;
}

.bharat-identity-content p{
    margin:0 0 15px;
    color:#667085;
    font-size:15px;
    line-height:1.85;
}

.bharat-identity-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 25px;
    margin-top:28px;
}

.bharat-identity-list div{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#475467;
    font-size:13px;
    line-height:1.6;
}

.bharat-identity-list i{
    margin-top:3px;
    color:#0b65ae;
}


/* IDENTITY CARD */

.bharat-identity-card{
    position:relative;
    overflow:hidden;
    padding:42px 35px;
    border-radius:22px;
    background:
        linear-gradient(
            145deg,
            #06234c,
            #07589a
        );
    color:#fff;
    box-shadow:0 25px 55px rgba(4,40,78,.18);
}

.bharat-identity-card::after{
    content:"";
    position:absolute;
    width:230px;
    height:230px;
    right:-110px;
    bottom:-110px;
    border:55px solid rgba(247,198,0,.12);
    border-radius:50%;
}

.bharat-identity-card-top{
    display:flex;
    align-items:center;
    gap:10px;
    color:#f7c600;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
}

.bharat-identity-card-top i{
    font-size:20px;
}

.bharat-identity-card h3{
    position:relative;
    z-index:2;
    margin:28px 0 14px;
    font-size:32px;
    line-height:1.2;
}

.bharat-identity-card p{
    position:relative;
    z-index:2;
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:14px;
    line-height:1.7;
}

.bharat-identity-line{
    width:55px;
    height:3px;
    margin:27px 0;
    border-radius:10px;
    background:#f7c600;
}

.bharat-identity-hindi{
    position:relative;
    z-index:2;
    color:#fff;
    font-size:14px;
    line-height:1.7;
}


/* =========================
   VISION / MISSION
   ========================= */

.bharat-about-vision{
    padding:90px 0;
    background:#f5f8fc;
}

.bharat-vision-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.bharat-vision-card{
    padding:42px;
    border-radius:18px;
    background:#fff;
    border:1px solid #e5ebf2;
    border-top:4px solid #0b5da8;
}

.bharat-vision-card.mission{
    border-top-color:#f7c600;
}

.bharat-vision-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    border-radius:13px;
    background:#eaf4ff;
    color:#0b5da8;
    font-size:22px;
}

.bharat-vision-card.mission .bharat-vision-icon{
    background:#fff8d8;
    color:#c49400;
}

.bharat-vision-card > span{
    color:#0b5da8;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.6px;
}

.bharat-vision-card.mission > span{
    color:#a27b00;
}

.bharat-vision-card h2{
    margin:9px 0 13px;
    color:#17233d;
    font-size:28px;
    line-height:1.25;
}

.bharat-vision-card p{
    margin:0;
    color:#667085;
    font-size:14px;
    line-height:1.8;
}


/* =========================
   ABOUT CTA
   ========================= */

.bharat-about-cta{
    padding:70px 0;
    background:
        linear-gradient(
            110deg,
            #06234c,
            #075b9d
        );
}

.bharat-about-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}

.bharat-about-cta-inner > div:first-child{
    max-width:750px;
}

.bharat-about-cta span{
    color:#f7c600;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.6px;
}

.bharat-about-cta h2{
    margin:9px 0 8px;
    color:#fff;
    font-size:clamp(26px,3.5vw,38px);
    line-height:1.25;
}

.bharat-about-cta p{
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:14px;
    line-height:1.7;
}

.bharat-about-cta-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:11px;
}

.bharat-about-call,
.bharat-about-enquire{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:50px;
    padding:0 20px;
    border-radius:6px;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
    transition:.25s;
}

.bharat-about-call{
    background:#fff;
    color:#07559a;
}

.bharat-about-enquire{
    background:#f7c600;
    color:#17233d;
}

.bharat-about-call:hover,
.bharat-about-enquire:hover{
    transform:translateY(-3px);
}


/* =========================
   TABLET
   ========================= */

@media(max-width:1050px){

    .bharat-about-intro-grid{
        gap:45px;
    }

    .bharat-about-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bharat-identity-grid{
        gap:45px;
    }

}


/* =========================
   MOBILE
   ========================= */

@media(max-width:767px){

    .bharat-section{
        padding:65px 0;
    }

    .bharat-inner-hero{
        padding:60px 0;
    }

    .bharat-inner-hero h1{
        font-size:36px;
    }

    .bharat-inner-hero p{
        font-size:14px;
    }

    .bharat-about-intro-grid,
    .bharat-identity-grid,
    .bharat-vision-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .bharat-about-visual{
        padding-right:15px;
    }

    .bharat-about-image-wrap{
        min-height:280px;
        padding:25px;
    }

    .bharat-about-experience{
        right:-2px;
        bottom:-10px;
    }

    .bharat-about-feature-grid{
        grid-template-columns:1fr;
    }

    .bharat-identity-list{
        grid-template-columns:1fr;
    }

    .bharat-vision-card{
        padding:30px 25px;
    }

    .bharat-about-cta{
        padding:55px 0;
    }

    .bharat-about-cta-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .bharat-about-cta-buttons{
        width:100%;
        flex-direction:column;
    }

    .bharat-about-call,
    .bharat-about-enquire{
        width:100%;
    }

}


/* =========================
   SMALL MOBILE
   ========================= */

@media(max-width:480px){

    .bharat-inner-hero h1{
        font-size:31px;
    }

    .bharat-about-intro-content h2,
    .bharat-identity-content h2{
        font-size:29px;
    }

    .bharat-about-experience{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        margin-top:12px;
    }

}