/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Color Palette */
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #F9010E;
    /* Vibrant Red */
    --accent-hover: #c22600;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --text-dark: #000000;
    --text-light: #222222;
    --text-black: #000000;
    --border-color: #333;

    /* Typography */
    --font-body: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --spacing-section: 80px;
}

.text-red {
    color: var(--accent-color) !important;
}

.text-white {
    color: var(--text-white) !important;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    /* text-transform: uppercase; */
}

p {
    text-align: justify;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

.margin-auto {
    margin: auto;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.pt-0 {
    padding-top: 0px !important;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pb-1 {
    padding-bottom: 1rem !important;
}

.pb-2 {
    padding-bottom: 2rem !important;
}

.pb-3 {
    padding-bottom: 3rem !important;
}

.pb-4 {
    padding-bottom: 4rem !important;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

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

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-1 {
    margin-left: 1rem !important;
}

.ml-2 {
    margin-left: 2rem !important;
}

.ml-3 {
    margin-left: 3rem !important;
}

.ml-4 {
    margin-left: 4rem !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-1 {
    margin-right: 1rem !important;
}

.mr-2 {
    margin-right: 2rem !important;
}

.mr-3 {
    margin-right: 3rem !important;
}

.mr-4 {
    margin-right: 4rem !important;
}

.w-100 {
    width: 100% !important;
}

.container {
    /* max-width: 1300px; */
    margin: 0 auto;
    padding: 0px var(--spacing-section);
    max-width: 1500px;
}

.bb-red {
    border-bottom: 3px solid var(--accent-color);
}

.owl-nav {
    display: block !important;
}

.owl-prev i,
.owl-next i {
    /* background-color: var(--accent-color) !important;
    padding: 10px !important;
    color: #fff !important; */
    border-color: var(--accent-color) !important;
    padding: 10px !important;
    color: var(--text-white) !important;
    border: 1px solid;
    background-color: var(--accent-color) !important;
}

.owl-prev:hover i,
.owl-next:hover i {
    padding: 10px !important;
    color: #fff !important;
    border: 1px solid;
}

.container100 {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 30px;
    background: var(--accent-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--accent-hover);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.btn-login {
    padding: 5px 10px !important;
    border-radius: 7px;
}

.corner-5 {
    border-radius: 5px;
}

.corner-10 {
    border-radius: 10px;
}

.corner-15 {
    border-radius: 15px;
}

.corner-20 {
    border-radius: 20px;
}

.corner-25 {
    border-radius: 25px;
}

.corner-30 {
    border-radius: 30px;
}

.corner-35 {
    border-radius: 35px;
}

.corner-40 {
    border-radius: 40px;
}

.corner-45 {
    border-radius: 45px;
}

.corner-50 {
    border-radius: 50px;
}

.bg-white {
    background-color: #fff;
    color: #000;
}

/* --- Top Bar --- */
.top-bar {
    background: #000;
    color: var(--text-gray);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    margin-right: 5px;
    color: var(--accent-color);
}

.top-links a {
    margin-left: 20px;
    color: var(--text-white);
    font-weight: 500;
}

/* --- Header --- */
.main-header {
    background: #fff;
    color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}

.logo h1 {
    font-size: 32px;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 700;
    font-style: italic;
}

.separator {
    width: 1px;
    height: 20px;
    background: var(--border-color);
    margin: 0 20px;
}

.nav-list {
    display: flex;
    gap: 15px;
}

.nav-list a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.nav-list a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.header-info .call-us {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle {
    display: none;
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -200%;
    width: 300px;
    height: 100%;
    background: #111;
    z-index: 2000;
    padding: 20px;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
    padding-right: 20px;
}

.close-menu {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.mobile-nav-list li {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.mobile-nav-list a {
    color: #fff;
    font-size: 18px;
    display: block;
}

.mobile-nav-list a.active {
    color: var(--accent-color);
}

/* --- Hero Section --- */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: #000;
}

.inner-page-slider {
    max-height: 400px !important;
}

.hero-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 30px var(--spacing-section);
}

.hero-content h1 {
    font-size: 88px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-style: italic;
    text-transform: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    /* As per image mix */
}

.hero-content p {
    font-style: italic;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-content .hero-btns .btn {
    text-transform: none;
    font-size: 16px;
    font-weight: 400;
}

/* --- Sections --- */
.section-padding {
    padding: 80px 0;
}

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

.bg-light {
    background: #f9f9f9;
}

.bg-dark {
    background: #111;
    color: #fff;
}

.bg-black {
    background: #000;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-05-1 {
    grid-template-columns: 0.5fr 1fr;
}

.grid-1-1 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Intro */
.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
}

.space-container {
    height: 1px;
}

.intro-content {
    padding: 30px var(--spacing-section);
}

.intro-content h2 {
    font-size: 60px;
    margin-bottom: 0px;
    line-height: 60px;
    font-style: italic;
    color: #000;
}

.btn-skew {
    padding: 10px 20px;
    font-family: var(--font-heading);
    transform: skew(-10deg);
    display: inline-block;
}

.btn-about {
    color: var(--text-dark);
    background: var(--white-color);
    border: 2px solid var(--text-dark);
    padding: 10px 50px;
}

.btn-skew h3 {
    margin: 0;
    transform: skew(10deg);
    font-size: 20px;
}

.intro-content p {
    font-size: 16px;
    color: #000;
    max-width: 700px;
    margin: 0 auto 40px;
}

.red-border {
    background-color: var(--accent-color);
    width: 150px;
    height: 3px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Search Bar */
.join-network {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80px;
}

.join-network p {
    background: #fff;
    color: var(--accent-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    max-width: 700px;
    margin: auto;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;

}

/* Services */
.features-section .section-header h1,
.services-section .section-header h1,
.about-section .section-header h1,
.news-section .section-header h1,
.partnership-section .section-header h1 {
    font-size: 40px;
    margin-bottom: 5px;
    color: var(--text-black);
}

.features-section .section-header h3,
.services-section .section-header h3,
.partnership-section .section-header h3 {
    font-size: 24px;
    margin-top: 5px;
    margin-bottom: 40px;
    font-weight: normal;
    font-style: italic;
    color: var(--text-black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.why-item {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.why-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.why-item:hover img {
    transform: scale(1.05);
}

.why-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)); */
}

.why-card {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    /* border-left: 4px solid var(--color-primary); */

}

.why-card h3 {
    color: var(--text-white);
    font-size: 30px;
    line-height: 33px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 4px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    text-align: left;
    line-height: 1.5;
}

.why-card-count::before {
    content: "";
    position: absolute;
    color: white;
    left: 9px;
    margin-top: -23px;
    font-size: 24px;
    font-weight: 800;
}

.why-card-count.one::before {
    content: "1.";
}

.why-card-count.two::before {
    content: "2.";
}

.why-card-count.three::before {
    content: "3.";
}

.why-card-count.four::before {
    content: "4.";
}

/* Features */
.feature-grid {
    gap: 0px;
}

.feature-item {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    /* border-radius: 8px; */
}

.feature-overlay-text {
    position: absolute;
    bottom: 40px;
    color: #fff;
    width: 70%;
    background: var(--accent-color);
    padding: 10px 20px;
    font-family: var(--font-heading);
    transform: skew(-20deg);
    border-bottom: 4px solid var(--text-white);
}

/* --- Video Box & Lightbox --- */
.video-box {
    position: relative;
    display: inline-block;
    width: 100%;
}

.video-box a {
    display: block;
    position: relative;
}

.video-box img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.video-box:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
    color: var(--accent-color);
}

/* Magnific Popup Fade Animation */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.feature-verlay-left {
    left: -30px;
    padding-left: 80px;
}

.feature-verlay-right {
    right: -30px;
    padding-right: 80px;
}

.feature-overlay-text h3 {
    margin: 0;
    transform: skew(10deg);
    font-size: 20px;
}

.feature-overlay-text p {
    margin: 0;
    transform: skew(10deg);
    font-size: 15px;
}

/*Portal-section*/
.portal-text h1 {
    font-size: 52px;
    line-height: 52px;
    font-style: italic;
}

.portal-text p.signup {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}

.wholesale-feature-grid {
    gap: 60px;
}

.wholesale-feature-item {
    position: relative;
    min-height: 600px;
}

.wholesale-feature-item.feature-item {
    min-height: 500px;
    border-radius: 20px;
    position: relative;
}

.wholesale-feature-item .feature-img {
    /* height: 100%; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.wholesale-feature-item .feature-overlay-text {
    width: auto;
}

/*Brands*/
.brand-box {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding-bottom: 12px;
}

.brand-link-footer {
    text-align: center;
    padding: 12px;
}

.brand-logo-small img {
    width: 50% !important;
    height: auto !important;
    margin: 0 auto !important;
}

.customMarquee {
    overflow: hidden;
    white-space: nowrap;
    border-radius: 12px;
    /* border: 1px solid #ddd; */
    background: #fff;
    padding: 12px;
    margin: 16px 0;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
    transition: box-shadow 0.3s ease;
}

.marqueeInner {
    display: inline-flex;
    align-items: center;
    will-change: transform;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    margin-right: 12px;
    border-radius: 50px;
    background: #e0f7fa;
    border: 1px solid #b2ebf2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #00796b;
    white-space: nowrap;
    transition: transform 0.3s, background 0.3s;
}

.marquee-item:hover {
    transform: scale(1.05);
    background: #b2ebf2;
}

.marquee-img-item {
    display: inline-block;
    border-radius: 8px;
    margin-right: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

/*Brands*/
/*CTA*/
.cta-banner {
    background-color: var(--accent-color);
    padding: 24px 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.cta-content h1 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 5px;
    line-height: 40px;
    margin-bottom: 5px;
    color: var(--text-white);
}

.cta-content h3 {
    font-size: 28px;
    font-weight: normal !important;
    margin: 0px;
    margin-bottom: 5px;
}

.cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.cta-icon img {
    width: 48px;
    height: 48px;
}

.cta-left h3 {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    margin: 0px;
}

.cta-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 48px;
    font-weight: normal;
    transition: transform var(--transition-fast);
}

.cta-phone svg {
    width: 28px;
    height: 28px;
}

.cta-phone:hover {
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
    border-top: 5px solid var(--accent-color);
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-align: left;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.footer-email i {
    color: var(--accent-color);
    font-size: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.hubs-widget h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hubs-widget p {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hubs-widget p i {
    color: var(--accent-color);
    margin-top: 5px;
}

.hubs-widget .opening-hours {
    font-weight: 500;
    color: #fff;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-social a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 20px;
    font-size: 14px;
}

.footer-bottom-social a:hover {
    color: #fff;
}

/*About*/
.why-banoze h1 {
    font-size: 40px;
    line-height: 40px;
    font-style: italic;
}

.why-banoze p {
    font-size: 18px;
    font-weight: normal;
    margin-top: 20px;
}

/* Responsive */

/* FIND THE TYRE SECTION */
.find-tyre-section h2 {
    font-size: 32px;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-color);
}

.find-tyre-section .text-gray {
    color: #000;
    font-size: 16px;
    margin-top: 5px;
}

.tyre-category-card {
    background: #fff;
    /* border: 1px solid #eee; */
    /* border-radius: 8px; */
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.tyre-cat-img {
    height: 250px;
    overflow: hidden;
}

.tyre-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tyre-category-card:hover .tyre-cat-img img {
    transform: scale(1.1);
}

.tyre-cat-body {
    padding: 20px 0;
}

.tyre-cat-body h4 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-style: italic;
}

.tyre-cat-body p {
    margin-top: 0px;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 42px;
    /* Ensure alignment */
}

.wholsale .tyre-cat-body h4 {
    font-size: 17px;
}

.wholsale .tyre-cat-body p {
    font-size: 15px;
}

.btn-text-arrow {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text-arrow:hover {
    color: var(--accent-color);
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* --- News Section --- */
.section-overline {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    display: inline-block;
}

.news-card {
    background: #fff;
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-img-wrapper {
    height: 300px;
    overflow: hidden;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.1);
}

.news-body {
    padding: 30px;
    text-align: center;
}

.news-body h4 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary-color);
    font-weight: 700;
}

.news-body p {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- History Section --- */
.history-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.history-title h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0;
    color: var(--primary-color);
}

.line-separator {
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #ccc;
    margin-left: 15px;
    vertical-align: middle;
}

.history-desc p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin: 0;
    max-width: 500px;
}

/* Timeline */
.history-timeline {
    position: relative;
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 50px auto;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
    transform: translateY(-50%);
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.timeline-item .year {
    font-size: 16px;
    color: #999;
    font-weight: 500;
    transition: all 0.3s ease;
}

.timeline-item .year.active-year,
.timeline-item:hover .year {
    color: var(--primary-color);
    font-weight: 700;
}

.timeline-item .dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #bbb;
}

.timeline-item.active .dot,
.timeline-item:hover .dot {
    background-color: var(--accent-color);
    box-shadow: 0 0 0 1px var(--accent-color);
    transform: scale(1.2);
}

.timeline-item .dot.active-dot {
    background-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(237, 32, 44, 0.2);
    width: 14px;
    height: 14px;
}

/* History Content */
.history-content {
    align-items: center;
    margin-top: 80px;
    gap: 50px;
}

.history-img img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.history-img:hover img {
    transform: translateY(-5px);
}

.history-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #000;
    font-weight: 700;
}

.history-text p {
    color: #000;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

/* --- Founder Message Section --- */
.founder-message-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #DEDEDE;
}

.founder-quote-card {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../../assets/images/about/About-Session4.jpg') no-repeat center center/cover;
    /* Use a placeholder or relevant image text if needed */
    background-color: #1a1a1a;
    /* Fallback */
    padding: 40px;
    max-width: 500px;
    color: #fff;
    border-left: 6px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* height: 100%; */
    min-height: 400px;
}

.quote-icon {
    font-size: 24px;
    color: #fff;
    opacity: 0.8;
}

.quote-text {
    font-size: 20px;
    line-height: 1.6;
    margin-top: -10px;
    margin-bottom: 30px;
    font-weight: 300;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.founder-line {
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    display: inline-block;
}

.founder-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.founder-role {
    font-size: 14px;
    margin: 0;
    color: #ccc;
    font-weight: 400;
}

/* Feature Cards */
.about-section .section-header p {
    font-size: 16px;
}

.about-section .section-header ul {
    font-size: 16px;
    list-style-type: disc;
    margin-left: 25px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #DD7F7F;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    min-height: 200px;
    /* height: 100%; */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card-border-top {
    border-top: 7px solid #DD7F7F;
    width: 80px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent-color);
}

.feature-icon {
    display: flex;
    align-items: center;
    color: #000;
    gap: 10px;
}

.feature-icon.flex-end {
    justify-content: flex-end;
}

.feature-icon span {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.feature-card p {
    font-size: 17px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 0;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.text-black {
    color: #000;
}

.fa-bold {
    font-weight: 800;
}

/* Trust Banner */
.trust-banner {
    background-color: #e0e0e0;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    border: 1px solid #ccc;
}

/* ========================================
   Our Foundation Section
   ======================================== */
.foundation-section {
    position: relative;
    background-color: #1a1a1a;
}

.foundation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.foundation-section .container {
    position: relative;
    z-index: 2;
}

.foundation-header {
    text-align: left;
    margin-bottom: 50px;
    color: #fff;
}

.foundation-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.foundation-header h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.foundation-subtitle {
    font-size: 18px;
    color: #fff;
    margin-top: 15px;
    font-weight: 400;
}

.foundation-cards {
    gap: 30px;
}

.foundation-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.foundation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.foundation-card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.foundation-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--accent-color);
}

.foundation-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.foundation-card:hover .foundation-card-img img {
    transform: scale(1.1);
}

.foundation-card-content {
    padding: 30px 25px;
    background: #fff;
}

.foundation-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-black);
    text-transform: uppercase;
}

.foundation-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: justify;
}

/* Responsive Design for Foundation Section */

/* ========================================
   Affordable Trusted Brands Section
   ======================================== */
.brands-section {
    padding: 80px 0;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-item {
    flex: 0 0 20%;
    max-width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.05);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brands-carousel .owl-nav {
    position: absolute;
    top: 34%;
    /* left: -50px; */
    width: 100%;
}

.brands-carousel .owl-prev {
    left: -22px;
    position: absolute;
}

.brands-carousel .owl-next {
    right: -22px;
    position: absolute;
}

/* Responsive Design for Brands Section */

/* ========================================
   Flagship Brand Section
   ======================================== */
.flagship-section {
    padding: 100px 0;
}

.flagship-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-black);
    line-height: 1.2;
}

.flagship-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
}

.btn-full-red {
    background-color: var(--accent-color) !important;
    color: #fff !important;
    font-weight: 400 !important;
    padding: 7px 16px !important;
    border-radius: 5px !important;
    display: inline-block;
    border: none !important;
    font-size: 15px !important;
    text-transform: none !important;
}

.btn-full-red:hover {
    background-color: #c21a24 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 32, 44, 0.3);
}

.flagship-image img {
    transition: transform 0.5s ease;
}

.flagship-image:hover img {
    transform: scale(1.02);
}

/* ========================================
   Exclusive Partnerships Section
   ======================================== */
.partnership-section {
    padding: 100px 0;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.partnership-card {
    padding: 2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partnership-card-inner {
    background: #fff;
    border-radius: 15px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partnership-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.partnership-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.partnership-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partnership-card p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-black);
    margin-top: 15px;
}

.max-1000 {
    max-width: 1000px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.font-bold {
    font-weight: 700;
}

/* Responsive for medium screens (max-1366px) */

/* Responsive for flagships and partnerships */

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-intro {
    padding-top: 100px;
}

.max-800 {
    max-width: 800px;
}

.mt-80 {
    margin-top: 80px;
}

.quick-info-item h4 {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.4;
    color: var(--text-black);
}

.quick-info-icon img {
    height: 60px;
    width: auto;
}

.contact-quick-info p {
    font-size: 18px;
}

/* Location Cards */
.location-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -3px 3px 10px #ccc;
}

.location-card-content {
    min-height: 350px;
    border-left: 15px solid var(--accent-color);
}

.red-accent {
    width: 20px;
    background: var(--accent-color);
}

.p-40 {
    padding: 40px;
}

.location-card h2 {
    font-size: 32px;
    font-weight: 800;
}

.location-card h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
}

.text-gray {
    color: #333;
}

/* Contact Form Section */
.p-60 {
    padding: 60px;
}

.form-group label {
    display: block;
    color: var(--text-black);
}

.border-bottom {
    border: none;
    border-bottom: 2px solid #eee;
    outline: none;
    transition: border-color 0.3s ease;
    background: transparent;
}

.border-bottom:focus {
    border-color: var(--accent-color);
}

.px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

/* Info Panel Side */
.contact-info-panel {
    background-color: #000;
    background-image: url('../images/contact/contact-git.jpg');
    /* Using an existing image as background */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 
.contact-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 1;
} */

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.relative {
    position: relative;
}

.opacity-80 {
    opacity: 0.8;
}

.fs-1 {
    font-size: 0.9rem;
}

.fs-2 {
    font-size: 1.1rem;
}

.fs-3 {
    font-size: 1.3rem;
}

.fs-4 {
    font-size: 1.5rem;
}

.fs-5 {
    font-size: 1.7rem;
}

.contact-form-section .container-large {
    max-width: 1200px;
}

.text-uppercase {
    text-transform: uppercase;
}

/* --- Partners Section --- */
.partners-section .container {
    position: relative;
    padding-right: 250px;
    /* Space for overlapping cards on desktop */
}

.partners-bg-container {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background-color: #000;
    width: 95%;
    border-radius: 0px 20px 20px 0px;
}

.partners-bg-container .feature-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.partners-content {
    position: relative;
    z-index: 5;
    padding: 60px;
    color: #fff;
}

.partners-content h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.partners-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.4;
    opacity: 0.9;
}

.partners-content .partners-p {
    max-width: 600px;
}

.partners-btns {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.partners-cards-container {
    position: absolute;
    right: 150px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.stats-card {
    position: relative;
    padding: 30px;
    color: #fff;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stats-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.4));
    z-index: 1;
}

.stats-card .card-content {
    position: relative;
    z-index: 2;
}

.stats-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 0px;
    color: #fff;
    line-height: 26px;
}

.stats-card p {
    font-size: 16px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stats-card p:last-child {
    margin-bottom: 0;
}

/* Form Responsiveness */

/* --- Responsive Design --- */

@media (min-width: 768px) {
    .cta-left {
        flex-direction: row;
        align-items: center;
    }

    .cta-content {
        flex-direction: row;
        justify-content: space-evenly;
        text-align: left;
    }
}

@media (max-width: 1366px) {
    :root {
        --spacing-section: 40px;
    }

    .container {
        max-width: 1300px;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-content h2,
    .hero-content h3 {
        margin-top: 5px;
        font-size: 18px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-header h1,
    .features-section .section-header h1,
    .services-section .section-header h1,
    .about-section .section-header h1,
    .news-section .section-header h1,
    .partnership-section .section-header h1,
    .foundation-header h1,
    .partners-content h1,
    .brand-title h1 {
        font-size: 30px;
    }

    .section-header h3,
    .features-section .section-header h3,
    .services-section .section-header h3,
    .partnership-section .section-header h3 {
        font-size: 18px;
    }

    .intro-content h2 {
        font-size: 48px;
        line-height: 52px;
    }

    .why-card h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .partners-content h1 {
        font-size: 38px;
    }

    .partners-content p {
        font-size: 24px;
    }

    .history-title h2 {
        font-size: 34px;
    }

    .foundation-header h1 {
        font-size: 38px;
    }

    .header-inner {
        gap: 10px;
    }

    .nav-list {
        gap: 10px;
    }

    .nav-list a {
        font-size: 12px;
    }

    .header-info {
        gap: 10px;
        font-size: 13px;
    }

    .header-info .separator {
        margin: 0 10px;
    }

    .btn-login {
        font-size: 12px;
        padding: 4px 8px !important;
    }

    .partnership-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-widget h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-widget p,
    .footer-links li a {
        font-size: 14px;
    }

    .footer-social-icons a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 1200px) {
    .partnership-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .partners-section .container {
        padding-right: 0;
    }

    .partners-cards-container {
        position: static;
        transform: none;
        width: 100%;
        margin-top: -50px;
        padding: 0 20px;
        flex-direction: row;
    }
}

@media (max-width: 992px) {
    .container {
        /* max-width: 1300px; */
        padding: 0px 20px;
    }

    .header-inner .logo img {
        width: 150px;
    }

    .header-inner .separator {
        display: none;
    }

    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .portal-text h1 {
        font-size: 26px;
        line-height: 26px;
    }

    .portal-img img {
        width: 100%;
    }

    .space-container {
        display: none;
    }

    .intro-content {
        padding: 0;
    }

    .main-nav {
        display: none;
    }

    .header-info,
    .btn-login {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 24px;
        color: var(--text-black);
    }

    .mobile-menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background: red;
        margin: 6px 0;
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .history-timeline {
        max-width: 100%;
        padding: 40px 0;
    }

    .gap-30 {
        gap: 20px;
    }

    .hero-slider {
        height: 60vh;
    }

    .foundation-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .foundation-header h1 {
        font-size: 36px;
    }

    .foundation-subtitle {
        font-size: 16px;
    }

    .foundation-card-img {
        height: 200px;
    }

    .brand-item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .brands-carousel .owl-prev {
        left: -10px;
        position: absolute;
    }

    .brands-carousel .owl-next {
        right: -10px;
        position: absolute;
    }

    .partners-cards-container {
        width: 90%;
    }

    .inner-page-slider {
        max-height: none !important;
    }

    .intro-container {
        display: flex;
    }

    .partners-content p {
        text-align: unset;
    }

    .partnership-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .flagship-content h2 {
        font-size: 30px;
    }

    .location-section .grid-2,
    .contact-form-section .grid-2 {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        min-height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .top-bar {
        display: none;
    }

    /* Hide top info on mobile */
    .hero-slide {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-btns a:first-child {
        margin-right: 0px !important;
    }

    .partners-btns {
        display: block !important;
    }

    .partners-btns a:last-child {
        margin-top: 10px;
    }

    /* Mobile Typography and Button Refinements */
    .btn {
        padding: 8px 15px;
        font-size: 13px !important;
    }

    .intro-content h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .intro-content p {
        font-size: 15px;
    }

    .features-section .section-header h1,
    .services-section .section-header h1,
    .about-section .section-header h1,
    .news-section .section-header h1,
    .partnership-section .section-header h1,
    .brands-section h1,
    .brand-title h1,
    .why-banoze h1,
    .foundation-header h1,
    .brands-section .section-header h1,
    .partners-content h1 {
        font-size: 24px;
    }

    .features-section .section-header h3,
    .services-section .section-header h3,
    .partnership-section .section-header h3,
    .find-tyre-section h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .why-card h3 {
        font-size: 24px;
        line-height: 1.2;
    }

    .why-card p {
        font-size: 14px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .history-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .history-title h2 {
        font-size: 24px;
    }

    .history-title br {
        display: none;
    }

    .history-timeline {
        overflow-x: auto;
        padding-bottom: 30px;
        justify-content: flex-start;
        gap: 60px;
        padding-left: 20px;
        padding-right: 0px;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }

    .timeline-track {
        width: 600px;
    }

    .history-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .history-text h3 {
        font-size: 26px;
    }

    .founder-message-section .grid-05-1 {
        grid-template-columns: 1fr;
    }

    .founder-quote-card {
        min-height: auto;
        padding: 30px;
        margin-bottom: 20px;
    }

    .founder-features .grid-1-1 {
        grid-template-columns: 1fr;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
    }

    .cta-icon svg {
        width: 40px;
        height: 40px;
    }

    .cta-content h1 {
        font-size: 30px;
    }

    .cta-content h3 {
        font-size: 16px;
    }

    .cta-phone {
        padding: 15px;
        font-size: 20px;
    }


    .foundation-card-content {
        padding: 20px;
    }

    .foundation-card-content h3 {
        font-size: 20px;
    }

    .foundation-card-content p {
        font-size: 14px;
    }

    .brand-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .brands-grid {
        gap: 20px 0;
    }

    .brands-section {
        padding: 50px 0;
    }

    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .flagship-section,
    .partnership-section {
        padding: 60px 0;
    }

    .gap-50 {
        gap: 30px;
    }

    .partners-bg-container {
        border-radius: 20px;
        min-height: auto;
    }

    .partners-cards-container {
        flex-direction: column;
        margin-top: 20px;
        padding: 0;
    }

    .partners-content {
        padding: 40px 20px;
    }

    .partners-content p {
        font-size: 18px;
    }

    .stats-card {
        margin-right: 30px;
    }

    .stats-card h2 {
        font-size: 28px;
    }

    .contact-quick-info.grid-3 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-intro,
    .contact-form-section {
        padding: 60px 0;
    }
}

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

    .btn-full-red {
        text-align: center;
        padding: 15px 10px !important;
        font-size: 14px !important;
    }
}
/* ========================================
   Blog Page Styles
   ======================================== */
.blog-post-section {
    padding: 80px 0;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    margin-bottom: 40px;
    text-align: left;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-meta span i {
    color: var(--accent-color);
    margin-right: 5px;
}

.blog-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-black);
}

.blog-featured-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 40px;
}

.blog-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.blog-content p {
    margin-bottom: 25px;
}

.blog-content h2, .blog-content h3 {
    color: var(--text-black);
    margin: 40px 0 20px;
}

.blog-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-black);
    font-weight: 600;
    transition: color 0.3s;
}

.btn-back:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 32px;
    }
    
    .blog-post-section {
        padding: 40px 0;
    }
}

.news-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.news-img-wrapper {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.news-img-wrapper img {
    transition: transform 0.3s ease;
}
