@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');
}

/* 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;
    }
}

/* ================== Breadcrumb Section ================== */
.breadcrumb-section {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/header-baners.fw.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.breadcrumb-section .container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.breadcrumb-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
}

.breadcrumb-title {
    font-family: 'Gotham', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #fff;
}

.breadcrumb-nav {
    font-family: 'Gelion', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.breadcrumb-nav a {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.breadcrumb-nav span {
    color: #fff;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-title {
        font-size: 32px;
    }

    .breadcrumb-nav {
        font-size: 12px;
    }
}

/* ================== Sanitation Innovation Section ================== */
.sanitation-innovation-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Gelion', sans-serif;
}

.sanitation-innovation-section .container {
    display: block;
}

.innovation-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.innovation-image-area {
    flex: 0 0 45%;
}

.innovation-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: visible;
}

.innovation-main-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.years-badge {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    z-index: 10;
}

.badge-red-box {
    background-color: #ec1c24;
    width: 90px;
    padding: 40px 0 100px 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border: 3px solid #fff;
    border-left: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-text-vertical {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-family: 'Gelion', sans-serif;
}

.badge-yellow-circle {
    background-color: #fff100;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.innovation-content-area {
    flex: 1;
}

.innovation-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 25px;
}

.innovation-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
}

.dealer-enquiry-btn {
    display: inline-block;
    background-color: #fff100;
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.dealer-enquiry-btn:hover {
    background-color: #e5d900;
}

@media (max-width: 992px) {
    .innovation-flex {
        flex-direction: column;
        gap: 50px;
    }
    
    .innovation-image-area {
        flex: 0 0 100%;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .innovation-title {
        font-size: 28px;
    }
    
    .badge-red-box {
        width: 50px;
    }
    
    .badge-text-vertical {
        font-size: 14px;
    }
    
    .badge-yellow-circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ================== Roadmap Section ================== */
.roadmap-section {
    padding: 100px 0;
    background-image: url('../images/about-us/map-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #fdfdfd;
}

.roadmap-section .container {
    display: block;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.roadmap-subtitle {
    color: #ec1c24;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-family: 'Gelion', sans-serif;
}

.roadmap-title {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    font-family: 'Gelion', sans-serif;
}

.roadmap-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #ffd6c5;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    width: 50%;
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.timeline-item.left {
    padding-right: 80px;
}

.timeline-item.right {
    margin-left: auto;
    padding-left: 80px;
}

.timeline-box {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #ffd6c5;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    position: relative;
}

.timeline-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

.timeline-box-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.timeline-box-year-marker {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
}

.marker-line {
    flex: 1;
    height: 1.5px;
    background-color: #ffd6c5;
}

.marker-dot {
    width: 8px;
    height: 8px;
    background-color: #fff100;
    border-radius: 50%;
}

.marker-year {
    font-size: 24px;
    font-weight: 700;
    color: #ccc;
}

.timeline-box-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    margin: 0;
    font-weight: 400;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 12px;
    height: 12px;
    background-color: #fff100;
    border: 3px solid #ffd6c5;
    border-radius: 50%;
    z-index: 3;
}

.timeline-item.left::after {
    right: -9px;
}

.timeline-item.right::after {
    left: -9px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 36px;
    width: 80px;
    height: 2px;
    background-color: #ffd6c5;
    z-index: 1;
}

.timeline-item.left::before {
    right: 0;
}

.timeline-item.right::before {
    left: 0;
}

@media (max-width: 992px) {
    .timeline-item.left {
        padding-right: 50px;
    }
    .timeline-item.right {
        padding-left: 50px;
    }
    .timeline-item::before {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .timeline-item::after {
        left: 11px !important;
    }
    
    .timeline-item::before {
        left: 20px !important;
        width: 40px !important;
    }

    .timeline-box-header {
        flex-wrap: wrap;
    }

    .timeline-box-title {
        font-size: 22px;
    }

    .roadmap-title {
        font-size: 36px;
    }
}

/* ================== Driving Force Section ================== */
.driving-force-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
    font-family: 'Gelion', sans-serif;
}

.driving-force-section .container {
    display: block;
}

.driving-force-content {
    max-width: 900px;
    margin: 0 auto;
}

.driving-force-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.driving-force-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 60px;
}

.driving-force-desc.secondary {
    margin-bottom: 30px;
}

.company-profile-link {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.company-profile-link:hover {
    color: #000;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .driving-force-title {
        font-size: 28px;
    }
    
    .driving-force-desc {
        font-size: 16px;
    }
}

/* ================== Swachhalaya Edge Section ================== */
.swachhalaya-edge-section {
    padding: 80px 0;
    background-color: #fff100;
    font-family: 'Gelion', sans-serif;
    text-align: center;
}

.swachhalaya-edge-section .container {
    display: block;
}

.edge-header {
    margin-bottom: 60px;
}

.edge-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.edge-subtitle {
    font-size: 16px;
    color: #333;
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.edge-card {
    border: 3px solid #fff;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.edge-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.edge-item-text {
    font-size: 18px;
    color: #333;
}

@media (max-width: 992px) {
    .edge-grid {
        grid-template-columns: 1fr;
    }
    
    .edge-title {
        font-size: 32px;
    }
}

/* ================== Corporate Values Section ================== */
.corporate-values-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Gelion', sans-serif;
    text-align: center;
}

.corporate-values-section .container {
    display: block;
}

.values-header {
    margin-bottom: 60px;
}

.values-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.values-subtitle {
    font-size: 16px;
    color: #555;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: #fff100; /* Yellow background */
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.value-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    font-weight: 400;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .values-title {
        font-size: 28px;
    }
}

/* ================== Expert Suggestions Section ================== */
.expert-suggestions-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
    font-family: 'Gelion', sans-serif;
}

.expert-suggestions-section .container {
    display: block;
}

.expert-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.certificate-item img:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .certificate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .certificate-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .expert-title {
        font-size: 28px;
    }
}

/* ================== Footer Section ================== */
.main-footer {
    width: 100%;
    font-family: 'Gelion', sans-serif;
    position: relative;
}

.footer-top {
    background-color: #fee614;
    padding: 40px 0 50px 0;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.catalogue-btn {
    position: absolute;
    top: -60px;
    right: 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.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 auto;
    display: block;
}

.col-about p {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
    margin: 0;
}

.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 auto;
    align-self: center;
    display: block;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
    margin-bottom: 8px;
}

.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 0;
    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;
}

.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 0;
}

.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;
    }

    .col-contact .footer-col-content::before,
    .col-contact .footer-col-content::after {
        display: none;
    }

    .catalogue-btn {
        position: static;
        margin-bottom: 30px;
    }
}
