* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
}

.navigationBar {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logoImg {
    width: 140px;
    height: auto;
}

.navLinks {
    display: flex;
    gap: 10px;
    align-items: center;
}

.navLink {
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    cursor: pointer;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navLink:hover {
    background: #2E3094;
    color: white;
}

.navBtn {
    background: #9B2D33;
    color: white;
    margin-left: 10px;
}

.navBtn:hover {
    background: #7f2227;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger .dot {
    width: 6px;
    height: 6px;
    background-color: #2E3094;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.heroSection {
    padding: 10px 2%;
    display: flex;
    justify-content: center;
}

.slideshowContainer {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    /* Hide the images outside the box */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slideshowWrapper {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease-in-out;
    /* Smooth sliding transition */
}

.bgImg1 {
    min-width: 100%;
    /* Ensure each image takes full width of container */
    max-width: 100%;
    height: 85vh;
    display: block;
    object-fit: cover;
}

.historyContainer {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 60px 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.historyContainer img {
    width: 45%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.verticalDivider {
    width: 2px;
    height: 250px;
    background-color: #ccc;
    border: none;
}

.historyText {
    width: 45%;
    font-size: 16px;
}

.historyText h2 {
    margin-bottom: 20px;
    color: #2E3094;
    font-size: 28px;
    line-height: 1.3;
}

/* Brands Section */
.brandsSection {
    padding: 60px 8%;
    background-color: #ffffff;
    text-align: center;
}

.brandsSection h2 {
    font-size: 32px;
    color: #2E3094;
    margin-bottom: 10px;
}

.brandsSection p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.brandCard {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    font-size: 20px;
    font-weight: bold;
    color: #2E3094;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.brandCard img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brandCard:hover img {
    transform: scale(1.08);
}

.brandTitle {
    padding: 20px;
    background: white;
    z-index: 2;
    transition: all 0.3s ease;
    border-top: 1px solid #f0f0f0;
}

.brandCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(46, 48, 148, 0.15);
    border-color: #2E3094;
}

.brandCard:hover .brandTitle {
    background: #2E3094;
    color: white;
}

.ourCore {
    padding: 60px 8%;
    background-color: #f9f9f9;
}

.ourCore h2 {
    text-align: center;
    font-size: 32px;
    color: #2E3094;
    margin-bottom: 10px;
}

.ourCore>p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.textCard {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.textCard h4 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #9B2D33;
}

.contactUs {
    background: linear-gradient(135deg, #47699E, #2E3094);
    border-radius: 20px;
    padding: 50px 8%;
    margin: 60px 8%;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(46, 48, 148, 0.2);
}

.contactUs h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contactUs p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #2E3094;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.map {
    text-align: center;
    padding: 60px 8%;
}

.map h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2E3094;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mapContainer {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.contactSection {
    background: #f5f7fb;
    padding: 80px 8%;
    text-align: center;
}

.contactSection h2 {
    font-size: 36px;
    color: #2E3094;
    margin-bottom: 15px;
}

.contactSection>p {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

.contactActionBtns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.actionBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.callBtn {
    background-color: #2E3094;
    color: white;
}

.callBtn:hover {
    background-color: #1f2270;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(46, 48, 148, 0.3);
}

.whatsappBtn {
    background-color: #25D366;
    color: white;
}

.whatsappBtn:hover {
    background-color: #1ebe57;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
}

.footer {
    background: #141772;
    color: white;
    padding: 50px 8% 30px;
    text-align: center;
}

.footerContent h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.footerContent p {
    color: #aaa;
    margin-bottom: 20px;
}

.copyright {
    font-size: 14px;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .textCards {
        grid-template-columns: repeat(2, 1fr);
    }

    .historyContainer {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bgImg1 {
        height: auto;
    }

    .navigationBar {
        flex-direction: row;
        padding: 15px 20px;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .navLinks {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
    }

    .navLinks.active {
        display: flex;
    }

    .navLink {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-radius: 0;
    }

    .navLink:hover {
        background: #f5f7fb;
        color: #2E3094;
    }

    .navBtn {
        margin: 10px auto;
        width: 80%;
        border-radius: 8px;
    }

    .navBtn:hover {
        background: #9B2D33;
        color: white;
    }

    .historyContainer {
        flex-direction: column;
        text-align: center;
    }

    .historyContainer img {
        width: 100%;
        max-width: 500px;
    }

    .verticalDivider {
        width: 100%;
        height: 2px;
        max-width: 300px;
    }

    .historyText {
        width: 100%;
    }

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

    .contactUs {
        margin: 40px 5%;
        padding: 40px 5%;
    }
}

@media (max-width: 480px) {
    .bgImg1 {
        height: auto;
    }

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

    .navLink {
        padding: 8px 12px;
        font-size: 14px;
    }

    .logoImg {
        width: 120px;
    }

    .ourCore h2,
    .contactUs h2,
    .contactSection h2,
    .historyText h2 {
        font-size: 24px;
    }

    .contactActionBtns {
        flex-direction: column;
        gap: 15px;
    }

    .actionBtn {
        width: 100%;
    }

    .map iframe {
        height: 300px;
    }

    .heroSection {
        padding: 10px 5%;
    }
}