:root {
    --primary: #cc1c29;
    /* Blue matching the image */
    --text-color: #333333;
    --bg-color: #ffffff;
    --transition: 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    /* background-color: #f9f9f9; */
    color: var(--text-color);
    padding-top: 100px;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 90px; */
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.nav_logo {
    width: 145px;
    /* Adjust based on image aspect ratio */
    padding: 6px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    margin-left: auto;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links li a {
    color: black;
    /* Dark gray text */
    /* font-weight: 500; */
    font-size: 15px;
    transition: var(--transition);
    text-transform: capitalize;
    letter-spacing: 1px;

}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border: 2px solid var(--primary);
    /* Red border from primary color */
    border-radius: 30px;
    /* Border radius */
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    background: transparent;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.contact-btn:hover {
    background-color: var(--primary);
    color: #fff;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    color: #444;
    cursor: pointer;
    transition: var(--transition);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .nav-container {
        height: auto;
        padding: 15px 20px;
        align-items: center;
    }

    .header-right {
        margin-left: 0;
        flex: none;
    }

    .nav_logo {
        width: 115px;
        padding: 0;
    }

    .top-bar {
        display: none;
    }

    .nav-wrapper {
        clip-path: none;
        padding: 0;
        background: transparent;
        height: auto;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
        color: var(--primary);
    }

    .call-btn {
        display: none;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        transition: right 0.4s ease-in-out;
        z-index: 1001;
        margin-right: 0;
    }

    .navbar.active {
        right: 0;
    }

    .navbar .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #f1f1f1;
    }

    .navbar .menu-header h3 {
        color: var(--primary);
        font-size: 22px;
    }

    .close-btn {
        background: none;
        border: none;
        font-size: 32px;
        color: var(--text-color);
        cursor: pointer;
        transition: var(--transition);
    }

    .close-btn:hover {
        color: var(--primary);
    }

    .navbar .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .navbar .nav-links li {
        width: 100%;
    }

    .navbar .nav-links li a {
        display: block;
        padding: 15px 25px;
        font-size: 18px;
        border-bottom: 1px solid #f9f9f9;
        color: var(--text-color);
    }

    .navbar .nav-links li a:hover,
    .navbar .nav-links li a.active {
        color: var(--primary);
        opacity: 1;
    }
}

/* Hero Banner Styles */
.hero-banner {
    width: 100%;
    position: relative;
    padding-bottom: 80px; /* Space for the wave */
    z-index: 1;
    height: 85vh;
    display: flex;
    align-items: center;
}

.banner-swiper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 0; /* Make it 0 instead of -2 */
}

.banner-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.banner-swiper .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Neutral dark overlay for text readability */
    z-index: 1;
    pointer-events: none; /* allow clicking through to anything under it, though we have buttons above it */
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-pagination {
    z-index: 2;
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    color: #fff;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    opacity: 1;
}

.banner-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.banner-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}

.banner-container {
    position: relative;
    z-index: 2; /* Put text above the swiper */
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.banner-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.banner-title {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 5px;
}

.banner-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.banner-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    background: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.badge i {
    color: var(--primary);
    font-size: 18px;
}

.banner-call-btn {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.banner-call-btn:hover {
    background-color: #333;
    color: #fff;
}

.banner-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    z-index: 2;
}

.hero-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.hero-img-circle::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave .shape-fill {
    fill: #ffffff;
}

@media (max-width: 991px) {
    .banner-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
    }
    .banner-text-wrapper {
        align-items: center;
    }
    .banner-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 40px;
    }

    .hero-img-circle {
        width: 300px;
        height: 300px;
    }
    
    .banner-swiper .swiper-slide:first-child {
        align-items: flex-start;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .banner-swiper .swiper-slide:first-child img {
        object-position: right center;
    }
    
    .banner-swiper .swiper-slide:first-child .banner-badges {
        display: none !important;
    }
    
    .banner-swiper .swiper-slide:first-child .banner-container {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .banner-swiper .swiper-slide:first-child .banner-text-wrapper {
        height: 100%;
        justify-content: flex-start;
    }
    
    .banner-swiper .swiper-slide:first-child .banner-call-btn {
        margin-top: auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .banner-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .banner-swiper .swiper-slide:first-child {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-img-circle {
        width: 250px;
        height: 250px;
    }
}

/* Features Section Styles */
.features-section {
    padding: 60px 15px;
    background-color: #fff;
}

.features-container {
    max-width: 1300px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    border: 1px solid #f2f2f2;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-card.color-yellow .feature-icon {
    background: #f7b71d;
}

.feature-card.color-green .feature-icon {
    background: #00d25b;
}

.feature-card.color-purple .feature-icon {
    background: #8e6ee8;
}

.feature-card.color-red .feature-icon {
    background: #f14023;
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.icon-watermark {
    position: absolute;
    top: -20px;
    right: -20px;
    opacity: 0.03;
    z-index: 0;
}

.icon-watermark i {
    font-size: 160px;
    color: var(--primary);
}

.feature-card * {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
}

/* ============================= */
/* Shared Section Header Styles  */
/* ============================= */
.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-eyebrow.light {
    color: #ffd3d6;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    transition: var(--transition);
}

.link-btn i {
    font-size: 20px;
    transition: var(--transition);
}

.link-btn:hover {
    color: #8f0f19;
}

.link-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
}

/* ============================= */
/* Welcome Section                */
/* ============================= */
.welcome-section {
    padding: 80px 15px;
    background-color: #fff;
}

.welcome-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-images {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-img-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    z-index: 2;
}

.about-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img-circle::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(204, 28, 41, 0.2);
    background: rgba(204, 28, 41, 0.05);
    z-index: 1;
}

/* About Modern Image Layout */
.about-modern-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 30px;
    padding-right: 30px;
}

.image-offset-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 95%;
    background-color: var(--primary);
    border-radius: 20px;
    z-index: 1;
}

.about-modern-image img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: block;
}

.welcome-text h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-color);
}

.welcome-text p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Modern About Section */
.modern-about-images {
    position: relative;
    height: 500px;
}

.main-img-wrapper {
    width: 65%;
    height: 75%;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secondary-img-wrapper {
    width: 55%;
    height: 60%;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 10px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 2;
}

.secondary-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 0;
    background-color: var(--primary);
    color: #fff;
    padding: 25px 35px;
    border-radius: 15px;
    border-bottom-left-radius: 35px;
    box-shadow: 0 10px 25px rgba(204, 28, 41, 0.4);
    z-index: 3;
    text-align: center;
}

.experience-badge h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.experience-badge p {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.about-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.modern-about-text h2 {
    font-size: 42px;
    color: #222;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.modern-about-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-title {
    font-size: 18px;
    color: #222;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

.services-list li i {
    color: var(--primary);
    font-size: 20px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background-color: #a11420;
    box-shadow: 0 8px 20px rgba(204, 28, 41, 0.3);
    color: #fff;
}

@media (max-width: 991px) {
    .welcome-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .modern-about-images {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 15px;
    }

    .modern-about-text h2 {
        font-size: 32px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        padding: 15px 25px;
    }
    
    .experience-badge h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .modern-about-images {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 15px;
    }

    .welcome-text h2,
    .journey-modern-text h2 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    .welcome-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .welcome-images {
        /* max-width: 300px;
        height: 320px; */
    }

    .welcome-image-badge {
        padding: 12px 18px;
    }
}

/* ============================= */
/* Our Core Solutions             */
/* ============================= */
/* ============================= */
/* Category Section (Our Solutions) */
/* ============================= */
.category-section {
    position: relative;
    padding-bottom: 80px;
    background-color: #f8f8f8;
}

.category-top-bg {
    background-color: var(--primary);
    padding: 80px 15px 140px; /* Extra bottom padding for overlap */
}

.category-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.header-left {
    flex: 1;
}

.header-left h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}

.header-right {
    flex: 1;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 40px;
}

.header-right p {
    font-size: 16px;
    line-height: 1.8;
}

.text-white {
    color: #fff !important;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -80px; /* Overlap effect */
    position: relative;
    z-index: 2;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(204, 28, 41, 0.15);
}

.card-img {
    width: 100%;
    height: 220px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.card-content {
    padding: 20px 10px 10px;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-title-row h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.card-title-row i {
    font-size: 22px;
    color: var(--text-color);
    transition: var(--transition);
}

.category-card:hover .card-title-row i {
    color: var(--primary);
    transform: translateX(5px);
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-divider {
    height: 2px;
    width: 100%;
    background-color: #eee;
    margin-top: 20px;
    transition: var(--transition);
}

.category-card:hover .card-divider {
    background-color: var(--primary);
}

@media (max-width: 991px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .header-right {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        /* padding-top: 30px; */
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .header-left h2 {
        font-size: 28px;
    }
    .category-top-bg {
        padding: 60px 15px 100px;
    }
}

/* ============================= */
/* Gallery Section                */
/* ============================= */
.gallery-section {
    padding: 80px 15px;
    background-color: #fff;
}

.gallery-container {
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-section {
        padding: 60px 15px;
    }
}

/* ============================= */
/* Why Choose Section             */
/* ============================= */
.why-choose-section {
   position: relative;
    padding: 40px 0;
    background-color: #f8f8f8;
}

.why-choose-container {
    max-width: 1300px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.why-choose-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.why-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 991px) {

    .why-choose-grid,
    .why-choose-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .why-choose-grid,
    .why-choose-grid.four-col {
        grid-template-columns: 1fr;
    }

    .why-choose-section {
        /* padding: 60px 15px; */
    }
}

/* ============================= */
/* CTA Section                    */
/* ============================= */
.cta-section {
    padding: 90px 15px;
    background: linear-gradient(135deg, var(--primary), #8f0f19);
    text-align: center;
}

.cta-container {
    max-width: 750px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 18px;
}

.cta-section p {
    color: #ffe0e2;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    padding: 16px 38px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 15px;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* ============================= */
/* Footer                         */
/* ============================= */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding-top: 70px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 14px;
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.footer-links a {
    color: #999;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 3px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact a {
    color: #999;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 15px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* ============================= */
/* About Page: Page Header        */
/* ============================= */
.page-header {
    position: relative;
    background: url('../img/banner.png') center center/cover no-repeat;
    padding: 110px 15px 90px;
    text-align: center;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Neutral dark overlay for readability */
    z-index: -1;
}

.page-header-container {
    max-width: 750px;
    margin: 0 auto;
}

.page-header h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header-subtitle {
    color: #ffe0e2;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: #fff;
}

.breadcrumb a {
    color: #ffd3d6;
}

.breadcrumb i {
    font-size: 16px;
    color: #ffd3d6;
}

@media (max-width: 768px) {
    .page-header {
        padding: 90px 15px 60px;
    }

    .page-header h1 {
        font-size: 30px;
    }
}

/* ============================= */
/* About Page: Journey Section    */
/* ============================= */
.journey-section {
    padding: 80px 15px;
    background-color: #fff;
}

.journey-section.alt-bg {
    background-color: #f8f8f8;
}

.journey-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.journey-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 18px;
}

.journey-tagline {
    margin-top: 25px;
    font-size: 17px;
    color: var(--text-color) !important;
}

/* Modern Journey Layout */
.journey-modern-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.journey-modern-image {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.journey-side-accent {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 75%;
    background-color: var(--primary);
    z-index: 1;
}

.journey-dots {
    position: absolute;
    bottom: 0;
    right: -25px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(#d1d1d1 2px, transparent 2px);
    background-size: 18px 18px;
    z-index: 1;
}

.journey-modern-image img {
    position: relative;
    width: 100%;
    border: 12px solid #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    z-index: 2;
    display: block;
}

.journey-modern-text {
    padding-right: 20px;
}

.section-eyebrow-modern {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow-modern .slashes {
    color: var(--primary);
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
}

.journey-modern-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.25;
    margin-bottom: 22px;
}

.journey-modern-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .journey-modern-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ============================= */
/* About Page: Mission & Vision   */
/* ============================= */
.mission-vision-section {
    padding: 0 15px 80px;
    background-color: #fff;
}

.mission-vision-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(204, 28, 41, 0.12);
}

.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--primary), #8f0f19);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.mv-icon i {
    font-size: 32px;
    color: #fff;
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-color);
}

.mv-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* About Page: Core Values        */
/* ============================= */
.values-section {
    padding: 80px 15px;
    background-color: #f8f8f8;
}

.values-container {
    max-width: 1300px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.value-card {
    background: #fff;
    padding: 35px 22px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.value-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-section {
        padding: 60px 15px;
    }
}

/* ============================= */
/* Products Page Layout           */
/* ============================= */
.product-category-section {
    padding: 80px 15px;
    background-color: #fff;
}

.product-category-section.alt-bg {
    background-color: #f8f8f8;
}

.prod-cat-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.prod-cat-container.reverse .prod-cat-text {
    order: 2;
}

.prod-cat-container.reverse .prod-cat-images {
    order: 1;
}

.prod-cat-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-color);
}

.prod-cat-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.prod-list-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}

.prod-feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.prod-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    line-height: 1.4;
}

.prod-feature-list li i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 1px;
}

.prod-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.prod-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    aspect-ratio: 4/3;
    transition: var(--transition);
}

.prod-img-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

@media (max-width: 991px) {
    .prod-cat-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .prod-cat-container.reverse .prod-cat-text {
        order: 1;
    }
    
    .prod-cat-container.reverse .prod-cat-images {
        order: 2;
    }
}

@media (max-width: 576px) {
    .prod-feature-list {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* Floating Action Buttons        */
/* ============================= */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: #fff;
}

.float-btn.whatsapp {
    background-color: #25d366;
}

.float-btn.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.float-btn.call {
    background-color: var(--primary);
}

.float-btn.call:hover {
    box-shadow: 0 8px 25px rgba(204, 28, 41, 0.4);
}

/* Pulsing effect for Whatsapp */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-btn.whatsapp {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* About Page - Company Section */
.about-page-company {
    padding: 80px 15px;
    background-color: #fcfcfc;
}

.about-company-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-company-images {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-company-images .bg-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    background-color: #f0f4f8;
    border-radius: 50%;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.img-grid {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.img-item {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-top-left {
    top: 40px;
    left: 5%;
    width: 42%;
    height: 240px;
}

.img-top-right {
    top: 40px;
    right: 5%;
    width: 42%;
    height: 240px;
}

.img-bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48%;
    height: 280px;
    z-index: 3;
    border: 8px solid #fcfcfc;
}

.about-company-content {
    padding-left: 20px;
}

.badge-brand {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-company-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-company-content > p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-company-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.about-company-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.about-company-list li i {
    color: var(--primary);
    font-size: 20px;
}

.about-company-quote {
    background-color: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    border-bottom-right-radius: 40px;
    position: relative;
    z-index: 2;
}

.about-company-quote::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    width: 100%;
    height: 100%;
    background-color: #a11420;
    border-radius: 10px;
    border-bottom-right-radius: 40px;
    z-index: -1;
}

.about-company-quote p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 991px) {
    .about-company-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-company-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .about-company-images {
        height: 450px;
    }
    
    .img-top-left, .img-top-right {
        height: 200px;
    }
    
    .img-bottom-center {
        height: 230px;
        width: 60%;
    }
    
    .about-company-content h2 {
        font-size: 30px;
    }
    
    .about-company-list {
        grid-template-columns: 1fr;
    }
}
/* Why Choose Us Modern Section */
/* Why Choose Us Light Section */
.why-choose-light-section {
    background-color: #f5f9fc;
    padding: 80px 15px;
    font-family: 'Inter', sans-serif;
}

.why-choose-light-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-center h2 {
    font-size: 36px;
    font-weight: 800;
    color: #112d4e;
    position: relative;
    display: inline-block;
}

.section-title-center h2 span {
    position: relative;
}

.section-title-center h2 span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e85d04; /* Orange accent */
    border-radius: 2px;
}

.why-choose-light-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-light-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.why-feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box i {
    font-size: 28px;
}

.bg-blue-light { background-color: #e6f0ff; color: #0d6efd; }
.bg-purple-light { background-color: #f4e6ff; color: #6f42c1; }
.bg-red-light { background-color: #ffe6e6; color: #dc3545; }
.bg-green-light { background-color: #e6ffe6; color: #198754; }

.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #112d4e;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.why-light-image {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.why-light-image .image-wrapper {
    position: relative;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-light-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-light-image .image-border-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-right: 15px solid #0d6efd; /* Blue border */
    border-bottom: 15px solid #0d6efd;
    border-bottom-right-radius: 70px;
    z-index: 1;
}

@media (max-width: 991px) {
    .why-choose-light-grid {
        grid-template-columns: 1fr;
    }
    
    .why-light-image {
        margin-top: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Brands Section */
.brands-section {
    padding: 60px 15px;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.brands-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #112d4e;
    margin-bottom: 40px;
    position: relative;
}

.brands-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.brands-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.brands-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    opacity: 0.9;
    transition: var(--transition);
}

.brands-swiper .swiper-slide:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brands-title {
        font-size: 26px;
    }
    .brand-logo {
        max-width: 120px;
        max-height: 60px;
    }
}
