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

/* Body */
body {
    /* font-family: Arial, sans-serif; */
    font-family: "Montserrat Alternates", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #333;
}

/* Main Header */
.main-header {
    /* background-color: #fff; */
    color: #333;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    width: 250px;
}

/* Navigation */
.main-nav .nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
}

.main-nav .nav-links li {
    margin-left: 20px;
}

.main-nav .nav-links li a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
}

.main-nav .nav-links li a:hover {
    text-decoration: underline;
}

/* Hamburger Menu (Mobile View) */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #333;
        width: 100%;
        text-align: center;
    }

    .main-nav .nav-links.active {
        display: flex;
    }

    .main-nav .nav-links li {
        margin: 20px 0;
    }

    .menu-toggle {
        display: block;
    }
}


/* Hero Section */
.hero {
    /* background: url('../images/cart-refrigerator.png') no-repeat center center/cover; */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-color: #1a478c;
}

.hero h1 {
    font-size: 3rem;
    padding-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero .banner_slider .slider_item {
    position: relative;
}

.hero .banner_slider .slider_item img {
    width: 100%;
    height: 80vh;
    border: 3px solid #ccc;
    border-radius: 18px;
    object-fit: cover;
}

.hero .banner_slider .slider_item .slider_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    width: 80%;
    display: none;
}

.cta-btn {
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-btn:hover {
    background: #0056b3;
}

/* Section Styles */
.container {
    /* width: 80% !important;
    margin: auto; */
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* About Us Section */
.about_sec {
    padding: 80px 0px;
}

.about_sec .about_image {
    padding: 0px 30px;
}

.about_sec .about_image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-with-shadow {
    border-radius: 15px;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Adds a subtle shadow */
}

.align_center {
    align-items: center;
}

.about_sec .about_cont h2 {
    color: #02377d;
    text-align: left;
    font-size: 16px;
    margin-bottom: 20px;
}

.about_sec .about_cont h3 {
    font-size: 34px;
    margin-bottom: 30px;
}

.about_sec .about_cont h3 span {
    color: #ed3833;
}

.about_sec .about_cont p {
    font-size: 16px;
}

.primary_btn_style.pt-30 {
    padding-top: 30px;
}

.primary_btn_style a {
    background: #ed3833;
    color: white;
    padding: 20px 30px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
}

/* Products Section */
.products {
    padding: 50px 0;
    background-color: #02377d;
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
}

.product-item {
    text-align: center;
    position: relative;
    border: 4px solid #fff;
    border-radius: 12px;
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 6px;
}

.overlay h3 {
    color: white;
    font-size: 1.8rem;
    text-align: center;
    margin: 0;
}

.product-item:hover .overlay {
    opacity: 1;
}


/* Testimonials Section */
.testimonials {
    padding: 80px 0px 120px 0px;
}

.testimonial-list {
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
}

.testimonial-item {
    width: 90% !important;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.testimonial-item p {
    font-style: italic;
}

.testimonial-list .slick-dots {
    bottom: -50px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

/* Flexbox Layout for Contact Section */
/* .contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
} */

/* Contact Form Styling */
.contact-form h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

textarea {
    resize: none;
}

button.btn {
    background-color: #ed3833;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
}

button.btn:hover {
    background-color: #0056b3;
}

/* Contact Information Styling */
/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #417bc9;
}

.contact-info h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: left;
    color: white;
}

.contact-form h2 {
    text-align: left;
    color: white;
}

.contact-info ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: white;
}

.contact-info .ms-3 {
    margin-left: 15px;
    flex: 0 0 80%;
}

.contact-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Icon and text alignment */
.contact-info i {
    margin-right: 15px;
    background: #ed3833;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin-bottom: 0px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero {
        height: auto;
        padding: 30px 0px;
    }
    .hero .banner_slider .slider_item img {
        height: 25vh;
    }
    .slick-prev, .slick-next {
        display: none !important;
    }
    .about_cont {
        padding: 30px;
    }
    .about_sec .about_cont h3 {
        font-size: 28px;
    }
    .testimonial-item {
        width: 100% !important;
    }
    .contact-info {
        margin-top: 30px;
    }
    .primary_btn_style.pt-30 {
        padding-top: 0px;
        text-align: center;
    }
    .primary_btn_style a {
        padding: 15px 20px;
        font-size: 14px;
    }
}
@media (max-width: 400px) {
    .about_sec .about_cont h3 {
        font-size: 24px;
    }
}