@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Shreelipi';
    src: url('../Fonts/Shreelipi_4672.TTF') format('truetype');
}
@font-face {
    font-family: 'K672';
    src: url('../Fonts/K672.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gelion', sans-serif;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header Container Settings */
.header {
    width: 100%;
    position: relative;
    z-index: 100;
}

/* Top thin bar */
.top-bar {
    height: 12px;
    background-color: #333333;
    /* Dark gray border above */
    width: 100%;
}

/* Main header */
.header-main {
    background-color: #fff100;
    /* Vibrant yellow */
    padding: 15px 0;
}

/* Logo Area */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #000;
}

.logo-placeholder img {
    max-height: 50px;
}

/* Navigation */
.main-nav {
    margin-left: auto;
    margin-right: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* Call to Action Button */
.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.3s ease;
}

/* Toggle active animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.call-btn {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
}

/* Pill shape for text */
.call-text {
    border: 1.5px solid #000;
    border-radius: 6px;
    padding: 4px 12px 4px 12px;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    min-width: 140px;
}

.call-subtitle {
    font-size: 11px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.call-number {
    font-size: 18px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

/* Circle shape for the icon overlapping the border */
.call-icon {
    width: 25px;
    height: 25px;
    border: 1.5px solid #000;
    border-radius: 50%;
    background-color: #fee614;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    z-index: 2;
}

.call-icon svg {
    width: 14px;
    height: 14px;
    color: #000;
}

/* Hover effects for button */
.call-btn:hover .call-text {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive considerations for Header */
@media (max-width: 992px) {
    .container {
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
    }

    .header-action {
        order: 2;
        margin-left: auto;
        margin-right: 20px;
    }

    .mobile-toggle {
        display: flex;
        order: 3;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fee614;
        z-index: 100;
        padding-top: 80px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 20px;
    }

    .main-nav a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .logo-placeholder img {
        max-height: 40px;
    }

    .call-btn {
        transform: scale(0.9);
        transform-origin: right center;
    }

    .header-action {
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .call-btn {
        transform: scale(0.75);
    }

    .logo-placeholder img {
        max-height: 30px;
    }

    .header-action {
        margin-right: 10px;
    }
}

/* ================== About Banner Section ================== */
.about-banner-section {
    width: 100%;
    min-height: 0;
    background-image: none;
    padding: 0;
    border-top: 8px solid #fff100;
    border-bottom: 14px solid #e5e5e5;
    position: relative;
}

.about-banner-section .about-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.about-banner-overlay {
    min-height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
}


.banner-headlines {
    width: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-right: clamp(70px, 28vw, 725px);
}

.banner-hindi {
    margin: 0;
    color: #fff;
    font-family: 'K672', 'Noto Sans Devanagari', 'Mangal', sans-serif;
    font-size: clamp(32px, 3.2vw, 52px);
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .about-banner-overlay {
        min-height: 143px;
    }

    .banner-headlines {
        flex-direction: column;
        gap: 12px;
        margin-right: 0;
        align-items: center;
    }

    .banner-hindi {
        font-size: clamp(24px, 7vw, 34px);
        text-align: center;
    }
}

/* ================== About Story Section ================== */
.about-story-section {
    background-color: #fff100;
    padding: 32px 20px 0;
}

.about-story-shell {
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 42px 34px 30px;
}

.about-story-tab {
    position: absolute;
    top: 0;
    left: 60px;
    background: #8b8b8b;
    color: #fff;
    font-size: 16px;
    font-family: 'Gelion', sans-serif;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 11px 56px 11px 20px;
    font-weight: 400;
    text-transform: uppercase;
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0 100%);
}

.about-story-tab::after {
    content: none;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(580px, 1fr) 390px;
    column-gap: 32px;
    align-items: start;
    margin-top: 60px;
    margin-bottom: 60px;
}

.about-story-rows {
    display: grid;
    gap: 30px;
}

.about-story-row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    column-gap: 22px;
}

.about-story-row-label {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #111;
    text-align: center;
}

.about-copy-block {
    border-left: 4px solid #000;
    padding-left: 18px;
}

.about-copy-block p {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.28;
    font-weight: 400;
    color: #111;
    letter-spacing: 1px;
}

.about-copy-block p:last-child {
    margin-bottom: 0;
}

.about-copy-quote {
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin-top: 6px !important;
}

.about-story-image-wrap {
    display: flex;
}

.about-story-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1200px) {
    .about-story-grid {
        grid-template-columns: minmax(480px, 1fr) 320px;
        column-gap: 20px;
    }

    .about-story-row {
        grid-template-columns: 150px minmax(0, 1fr);
        column-gap: 16px;
    }

    .about-story-row-label {
        font-size: 21px;
    }

    .about-copy-block p {
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 0.3px;
    }

    .about-copy-quote {
        font-size: 20px !important;
    }

    .about-story-image {
        height: 500px;
    }
}

@media (max-width: 900px) {
    .about-story-shell {
        padding: 52px 20px 28px;
    }

    .about-story-tab {
        left: 0;
        font-size: 14px;
        letter-spacing: 0.08em;
        padding: 10px 42px 10px 16px;
        clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
    }

    .about-story-tab::after {
        content: none;
    }

    .about-story-grid {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 16px;
        margin-top: 30px;
        margin-bottom: 24px;
    }

    .about-story-rows {
    }

    .about-story-row {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 8px;
        align-items: start;
    }

    .about-story-row-label {
        font-size: 24px;
        width: 100%;
    }

    .about-copy-block {
        min-width: 0;
        border-left: none;
    }

    .about-copy-block p {
        font-size: 16px;
        line-height: 1.45;
        letter-spacing: 0.2px;
        overflow-wrap: anywhere;
    }

    .about-copy-quote {
        font-size: 22px !important;
    }

    .about-story-image {
        max-height: 400px;
        width: auto;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .about-story-section {
        padding: 22px 12px 0;
    }

    .about-story-shell {
        padding: 50px 14px 20px;
    }

    .about-story-tab {
        left: 0;
        font-size: 12px;
        letter-spacing: 0.06em;
        padding: 9px 28px 9px 12px;
    }

    .about-story-grid {
        margin-top: 26px;
        margin-bottom: 26px;
        row-gap: 14px;
    }

    .about-story-row {
        row-gap: 6px;
    }

    .about-story-row-label {
        font-size: 17px;
        line-height: 1.15;
        text-align: center;
    }

    .about-copy-block {
        border-left: none;
        padding-left: 0;
    }

    .about-copy-block p {
        font-size: 15px;
        line-height: 1.4;
        letter-spacing: 0.2px;
        margin-bottom: 8px;
        overflow-wrap: anywhere;
    }

    .about-copy-quote {
        font-size: 18px !important;
        line-height: 1.28 !important;
    }
}

@media (max-width: 480px) {
    .about-story-section {
        padding: 18px 8px 0;
    }

    .about-story-shell {
        padding: 46px 10px 16px;
    }

    .about-story-tab {
        font-size: 11px;
        padding: 8px 24px 8px 10px;
    }

    .about-story-grid {
        margin-top: 20px;
        margin-bottom: 18px;
        row-gap: 12px;
    }


    .about-story-row-label {
        font-size: 15px;
        text-align: center;
    }

    .about-copy-block p {
        font-size: 14px;
        line-height: 1.36;
        overflow-wrap: anywhere;
    }

    .about-copy-quote {
        font-size: 16px !important;
    }
}

/* ================== Driving Force Showcase ================== */
.driving-force-showcase-section {
    padding: 0 20px 22px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background-color: #fff100;
}

.driving-force-showcase-section::after{
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 250px;
    background: #fff;
}



.driving-force-showcase-shell {
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    background: #ffffff;
    padding: 0 0 24px;
    z-index: 1;
}



.driving-force-showcase-title {
    width: fit-content;
    margin: 0 auto;
    background: #7f7f7f;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 10px 22px 8px;
    position: relative;
    top: 16px;
    z-index: 2;
}

.driving-force-showcase-card {
    width: calc(100% - 300px);
    max-width: 980px;
    margin: 12px auto 0;
    border: 3px solid #fff100;
    background: #ffffff;
    padding: 34px 34px 0;
}

.driving-force-showcase-card p {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.35;
    color: #111;
    max-width: 80%;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .driving-force-showcase-card p {
        max-width: 100%;

    }
}

.driving-force-showcase-image-wrap {
    margin-top: 18px;
    text-align: center;
    position: relative;
}

.driving-force-showcase-image-wrap::after {
    content: "";
    display: block;
    width: 48%;
    height: 26px;
    background: #808080;
    margin: -10px auto 0;
}

.driving-force-showcase-image {
    display: inline-block;
    max-width: 440px;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .driving-force-showcase-section {
        padding: 0 12px 12px;
    }

  

  
    .driving-force-showcase-shell {
        padding: 16px 12px 12px;
    }

   

    .driving-force-showcase-card {
        width: calc(100% - 24px);
        max-width: none;
        padding: 26px 18px 0;
        margin-top: 8px;
    }

    .driving-force-showcase-title {
        top: 8px;
    }

   

    .driving-force-showcase-image {
        max-width: 320px;
    }
}

/* ================== Footer Section ================== */
.main-footer {
    width: 100%;
    font-family: 'Gelion', sans-serif;
    position: relative;
}

.footer-top {
    background-color: #fee614;
    padding: 40px 0 50px;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.relative-container {
    position: relative;
}

.catalogue-btn {
    position: absolute;
    top: -77px;
    right: 40px;
    background-color: #0D0C0F;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}
@media (max-width: 992px) {
    .catalogue-btn {
        top: 0;
    }
}

.catalogue-btn:hover {
    background-color: #333;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    margin-top: 20px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-col-content {
    margin-top: auto;
    position: relative;
    padding: 0;
}

.col-about {
    padding-right: 30px;
}

.footer-logo {
    max-width: 220px;
    margin: 0 auto 15px;
    display: block;
}

.col-about p {
    font-size: 20px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.col-contact {
    padding: 0 40px;
}

.col-contact .footer-col-content::before,
.col-contact .footer-col-content::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #000;
}

.col-contact .footer-col-content::before {
    left: -40px;
}

.col-contact .footer-col-content::after {
    right: -40px;
}

.footer-sankalp-logo {
    max-width: 180px;
    margin: 0 auto 15px;
    align-self: center;
    display: block;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 21px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
    margin-bottom: 2px;
    text-align: center;
    justify-content: center;
}

.mt-2 {
    margin-top: 0px;
}

.mt-3 {
    margin-top: 13px;
}

.col-links {
    padding-left: 30px;
}

.footer-links-title {
    background-color: #808080;
    color: #fee614;
    display: inline-block;
    padding: 6px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 15px;
    font-weight: 600;
}

.col-links ul {
    list-style: none;
}

.col-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Why page footer: QUICK LINKS column (buttons + social) */
.footer-col-quicklinks {
    padding-left: 20px;
    padding-right: 10px;
    align-self: flex-end;
}

.footer-col-quicklinks .footer-col-content {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 270px;
}

.footer-quick-title {
    margin: 0 0 18px;
    padding: 0;
    background: none;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.footer-quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 22px;
    width: 100%;
}

.footer-quick-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 2px solid #000;
    border-radius: 9999px;
    background: transparent;
    box-shadow: none;
}

.footer-col-quicklinks .footer-quick-btn:hover {
    color: #000;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    transform: none;
}

.footer-col-quicklinks .footer-quick-btn:focus-visible {
    color: #000;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    transform: none;
    outline: 2px solid #000;
    outline-offset: 3px;
}

.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-social-link svg {
    display: block;
}

@media (max-width: 992px) {
    .footer-col-quicklinks {
        padding-left: 0;
        padding-right: 0;
        align-self: center;
        width: 100%;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 360px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-quick-buttons {
        width: 100%;
    }

    .footer-quick-btn {
        width: 100%;
    }
}

.back-to-top {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fee614;
    border: none;
    padding: 12px 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
}

.footer-bottom {
    background-color: #dde1e3;
    padding: 25px 0 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 992px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .col-contact {
        padding: 0 16px;
    }

    .col-contact .footer-col-content::before,
    .col-contact .footer-col-content::after {
        display: none;
    }

    .catalogue-btn {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-flex;
        width: auto;
        max-width: max-content;
        margin: 0 0 30px;
    }

    .col-about p {
        font-size: 16px;
        letter-spacing: 0.4px;
    }

    .contact-item {
        font-size: 16px;
        line-height: 1.35;
    }

    .footer-quick-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-quick-buttons {
        margin-bottom: 14px;
    }

    .footer-quick-btn {
        font-size: 12px;
        padding: 7px 12px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .footer-social-link svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-logo {
        max-width: 170px;
    }

    .catalogue-btn {
        padding: 10px 20px;
        font-size: 10px;
        margin: 0 auto 20px 0;
    }

    .col-about p {
        font-size: 14px;
    }

    .contact-item {
        font-size: 14px;
        gap: 6px;
    }

    .footer-quick-title {
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 320px;
    }

    .footer-quick-btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .footer-social-row {
        gap: 9px;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .footer-social-link svg {
        width: 20px;
        height: 20px;
    }

    .back-to-top {
        padding: 10px 30px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 140px;
    }

    .catalogue-btn {
        padding: 8px 16px;
        font-size: 9px;
    }

    .footer-sankalp-logo {
        max-width: 140px;
    }

    .footer-top {
        padding: 28px 0 44px;
    }

    .contact-item {
        font-size: 12px;
        line-height: 1.3;
    }

    .footer-quick-title {
        font-size: 15px;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 280px;
    }

    .footer-quick-btn {
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }

    .back-to-top {
        padding: 8px 20px;
        font-size: 10px;
        bottom: -15px;
    }
}
