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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Area */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #000;
}

.logo-placeholder img {
    max-height: 50px;
}

.logo-text {
    display: block;
    font-family: 'Shreelipi', sans-serif;
    transform: skewX(5deg);
}

/* 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;
    /* space between toggle and button if they sit side-by-side */
}

/* 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;
    /* Extra padding on left for icon overlap */
    margin-left: 15px;
    /* Space for the icon circle to jut out */
    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;
    /* Match header background */
    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 */
@media (max-width: 992px) {
    .container {
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
    }

    .header-action {
        order: 2;
        margin-left: auto;
        /* Pushes the call button to the right */
        margin-right: 20px;
        /* Space between call btn and toggle */
    }

    .mobile-toggle {
        display: flex;
        order: 3;
        /* Put toggle on the far right */
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        /* Slide in from left */
        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) {

    /* Let's shrink the logo image if we don't have enough space */
    .logo-placeholder img {
        max-height: 40px;
    }

    .call-btn {
        transform: scale(0.9);
        transform-origin: right center;
    }

    .header-action {
        margin-right: 15px;
        /* slightly less space on mobile */
    }
}

@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; /* Adjust height as needed */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/about-us/WhatsApp-Image-2026-02-19-at-3.42.11-PM.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Ensure items start from left */
    position: relative;
}

.breadcrumb-section .container {
    width: 100%; /* Take full width of its max-width (1280px) */
    display: flex;
    justify-content: flex-start; /* Ensure content inside container is left-aligned */
}

.breadcrumb-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff; /* Changed to white for better visibility on dark background */
}

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

/* ================== Footer Section ================== */
.main-footer {
    width: 100%;
    font-family: 'Gelion', sans-serif;
    position: relative;
    /* We don't need margin-top, because upper sections have padding */
}

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

.relative-container {
    position: relative;
}

/* Catalogue Button */
.catalogue-btn {
    position: absolute;
    top: -60px;
    /* Touch the very top of the yellow */
    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;
}

.download-icon {
    width: 24px;
    height: 24px;
}

/* Footer Grid */
.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Stretch columns to same height */
    gap: 40px;
    margin-top: 20px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-col-content {
    margin-top: auto;
    /* Push content to bottom */
    position: relative;
    padding: 0;
}

/* Column 1 */
.col-about {
    padding-right: 30px;
}

.footer-logo {
    max-width: 220px;
    margin: 0 auto 15px auto;
    /* Centered */
    display: block;
}

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

/* Column 2 */
.col-contact {
    padding: 0 40px;
}

.col-contact .footer-col-content::before,
.col-contact .footer-col-content::after {
    content: "";
    position: absolute;
    top: 10px;
    /* Added gap at top */
    bottom: 10px;
    /* Added gap at bottom */
    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;
    /* Centered */
    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;
}

.contact-icon {
    margin-top: 2px;
}

.mt-2 {
    margin-top: 0px;
}

.mt-3 {
    margin-top: 0px;
}

/* Column 3 */
.col-links {
    padding-left: 30px;
}

.footer-links-title {
    background-color: #808080;
    color: #fee614;
    display: inline-block;
    /* Full width bar */
    padding: 6px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.col-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.col-links li {
    margin-bottom: 6px;
}

.col-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.col-links a:hover {
    opacity: 0.6;
}

/* Back To Top Button */
.back-to-top {
    position: absolute;
    bottom: -20px;
    /* Overlap the grey bar */
    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;
    white-space: nowrap;
}

.back-to-top:hover {
    background-color: #333;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #DDE1E3;
    /* grey */
    padding: 25px 0 15px 0;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .col-about {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .col-contact {
        border-left: none;
        border-right: none;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        padding: 30px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-col-content {
        margin-top: 0;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .col-links {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .catalogue-btn {
        position: static;
        display: inline-flex;
        margin: 0 auto 30px 0;
    }

    .footer-top {
        padding: 40px 0 60px 0;
    }
}

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

    .footer-bottom {
        text-align: center;
    }

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

    .back-to-top {
        padding: 8px 20px;
        font-size: 10px;
        bottom: -15px;
    }
}

/* Contact Page Specific Styles */

/* Dealer Section */
.dealer-section {
    padding: 80px 0;
    text-align: center;
}

.dealer-section h2 {
    font-family: 'Gotham', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.dealer-section p {
    font-family: 'Gelion', sans-serif;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Info Cards Section */
.info-card-section {
    background-color: #FFF100;
    padding: 80px 0;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-card-icon {
    background-color: #FFF100;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon img {
    width: 30px;
    height: 30px;
}

.info-card-content h3 {
    font-family: 'Gotham', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card-content p {
    font-family: 'Gelion', sans-serif;
    color: #666;
    line-height: 1.6;
}

/* Get In Touch Form Section */
.get-in-touch-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.get-in-touch-header {
    text-align: center;
    margin-bottom: 50px;
}

.get-in-touch-header .subtitle {
    color: #E53935; /* Red color from image */
    font-family: 'Gotham', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.get-in-touch-header h2 {
    font-family: 'Gotham', sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.get-in-touch-header p {
    font-family: 'Gelion', sans-serif;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-input {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: 'Gelion', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #FFF100;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

.form-submit-btn {
    background-color: #FFF100;
    color: #000;
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    font-family: 'Gotham', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    justify-self: center;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #ffe000;
}

/* Google Map Section */
.google-map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .info-card-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}
