/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --maroon: #631000;
    --yellow: #FFBF00;
    --grey: #D9D9D9;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Navbar Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: font-weight 0.2s ease;
    position: relative;
}

.nav-link:hover {
    font-weight: 700;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--grey);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin: 20px;
    min-height: calc(100vh - 110px);
    background-image: url('images/hero 1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    text-align: left;
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5.5rem;
    font-weight: 400;
    color: var(--maroon);
    margin-bottom: -40px;
    margin-left: 20px;
    letter-spacing: 2px;
    animation: slideInFromLeft 1s ease-out forwards;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2.08rem;
    font-weight: 500;
    color: var(--yellow);
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 50px;
    line-height: 1.2;
 
}

.hero-btn {
    margin-top: 0;
    margin-bottom: 20px;
    text-decoration: none;
    display: inline-block;
}

.hero-btn {
    background: var(--maroon);
    color: #fff;
    padding: 5px 20px;
    font-size: 1.1rem;
    font-weight: 400;
    border: none;
    border-radius: 42px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.hero-btn:hover {
    background: var(--yellow);

}

/* Grey Section */
.grey-section {
    background: var(--grey);
    padding: 28px 10px;
    text-align: center;
    margin-bottom: 40px;
}

.grey-text {
    font-size: 1.2rem;
    color: #333;
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Leading Manufacturers Section */
.manufacturers-section {
    padding: 40px 10px;
}

.manufacturers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.manufacturers-text {
    text-align: left;
}

.manufacturers-image {
    width: 100%;
    height: 90%;
    border-radius: 10px;
    overflow: hidden;
}

.manufacturers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 30px;
}

.section-text {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-btn {
    width: 160px;
    color: var(--maroon);
    background: transparent;
    border: 1px solid var(--maroon);
    padding: 8px 35px;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 42px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.section-btn:hover {
    background: var(--yellow);
    border: 1px solid white;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 10px;
    
}

.why-choose-content {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.why-choose-images {
    
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 30px;
}

.why-img {
    width: 70%;
    height: 300px;
    object-fit: contain;
    
}

.why-choose-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: #fff;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0s ease;
    cursor: pointer;
}

.why-card:hover {
    background: var(--maroon);
}

.why-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 10px;
    transition: all 0s ease;
}

.why-card:hover .why-card-title {
    color: var(--yellow);
}

.why-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.3;
    transition: all 0s ease;
}

.why-card:hover .why-card-text {
    color: #fff;
}

/* Customization Cards Section */
.customization-section {
    padding: 60px 10px;
}

.customization-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.custom-card:nth-child(7) {
    grid-column: 1;
}

.custom-card:nth-child(8) {
    grid-column: 3;
}

.custom-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ccc;
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.card-arrow:hover {
    background: rgba(255, 255, 255, 1);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.card-content {
    padding: 20px;
}

.card-title {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    background-color: var(--grey);
    padding: 8px 12px;
    display: inline-block;
    
}

.card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.3;
}

/* Glimpse Section */


.glimpse-section .grey-section {
    margin-bottom: 40px;
}
.grey-section{
    height:130px
}

.glimpse-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.glimpse-square {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.glimpse-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Request a Quote Section */
.quote-section {
    padding: 0;
    margin-top: 40px;
    

}

.quote-section .grey-section {
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--maroon);
}

.quote-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.quote-text {
    text-align: left;
}

.quote-text .section-title {
    margin-bottom: 5px;
    color: #fff;
}

.quote-text .section-text {
    margin-bottom: 0;
}

.quote-btn {
    background: white;
    color: var(--maroon);
    padding: 5px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 42px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-left: 50px;
    text-decoration: none;
    display: inline-block;
}

.quote-btn:hover {
    background: var(--yellow);
}

/* Footer */
.footer {
    background: rgb(35, 0, 0);
    color: #fff;
    padding: 40px 10px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .customization-cards {
        grid-template-columns: 1fr;
    }

    .custom-card:nth-child(7),
    .custom-card:nth-child(8) {
        grid-column: auto;
    }

    .custom-card {
        width: 100%;
    }

    .hero {
        padding: 30px;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: -20px;
        margin-left: 10px;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .hero-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .manufacturers-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .manufacturers-text {
        text-align: left;
    }

    .manufacturers-image {
        height: 300px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .why-choose-cards {
        grid-template-columns: 1fr;
    }

    .glimpse-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        align-items: flex-end;
        padding: 25px;
        background-image: url('images/homeheromonile.jpg');
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: -10px;
        margin-left: 0;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 4px 16px;
        font-size: 0.95rem;
    }

    .quote-text .section-title {
        font-size: 1.3rem;
    }

    .grey-section {
        padding: 20px 15px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .grey-text {
        padding: 0;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.05);
        margin-top: 0;
        padding: 0;
        transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
        margin-top: 10px;
    }

    .hero {
        margin: 20px;
        padding: 50px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .customization-cards {
        grid-template-columns: 1fr;
    }

    .glimpse-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 350px;
        padding: 20px;
        background-image: url('images/homeheromonile.jpg');
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-btn {
        padding: 3px 14px;
        font-size: 0.9rem;
    }

    .quote-text .section-title {
        font-size: 1.1rem;
    }

    .quote-btn {
        font-size: 0.9rem;
        padding: 5px 15px;
        margin-left: 20px;
    }

    .glimpse-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-images {
        gap: 15px;
    }

    .why-img {
        height: 200px;
    }

    .grey-text {
        font-size: 1rem;
        padding: 0 10px;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        box-sizing: border-box;
    }

    .grey-section {
        padding: 20px 10px;
        margin-bottom: 10px;
        height: 170px;
        overflow:visible;
        box-sizing: border-box;
    }
}

