/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 15px;
    font-size: 14px;
}


.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 25px;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
}

.heading-divider {
    width: 80px;
    height: 3px;
    background-color: #007bff;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    max-height: 60px;
}

.header-contact {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: #007bff;
    font-size: 18px;
}

#main-nav {
    background-color: #007bff;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    
}

.menu li {
    position: relative;
    flex: 1;
    text-align: center;
    
}
.menu li ul {
  
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #007bff;
    padding: 10px 0;
    border-radius: 5px;
    width: 180px;
    display: none;
   
}
.menu li ul li {
    width: 100%;
    font-size: 14px;
    text-align: left;
    padding: 10px ;
    color: aliceblue;
    border-bottom: 1px solid #0056b3;
     
}
.menu li ul li a{
     font-size: 11px;
}
.menu li:hover ul {
    display: block;
}

.menu li a {
    display: block;
    padding: 15px 5px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    height: 100%;
}

.menu li a:hover, .menu li a.active {
    background-color: #0056b3;
}
@keyframes animate {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
}

/* Banner Styles */
.banner {
    position: relative;
    overflow: hidden;
}

.banner-item {
    position: relative;
}

.banner-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}


/* Intro Section */
.intro {
    background-color: #fff;
}

.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-image, .intro-text {
    flex: 1;
    margin-left: 10px;
}
.intro-image {
    display: flex;
    
}

.intro-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #007bff; 
    ;
}

.intro-text p {
    margin-bottom: 20px;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-info p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

/* Services Section */
.services {
    background-color: #f2f8ff;
}

.partner-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-item {
    flex: 1;
    min-width: 180px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-info {
    padding: 20px;
}

.news-date {
    color: #007bff;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.news-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-info p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.read-more {
    color: #007bff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: #0056b3;
}

.read-more:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
}

/* Contact Form Section */
.contact-form {
    background-color: #f2f8ff;
}

.contact-wrapper {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info, .contact-form-container {
    flex: 1;
    padding: 40px;
}

.contact-info {
    background-color: #007bff;
    color: #fff;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail-item i {
    margin-right: 15px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #007bff;
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
    padding-left: 5px;
}

.subscribe-form {
    display: flex;
    margin-top: 15px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.subscribe-form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #0056b3;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #aaa;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .product-grid, .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-content, .why-us-content, .contact-wrapper {
        flex-direction: column;
    }
    
    .intro-image, .why-us-image {
        margin-bottom: 30px;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }       
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #007bff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    .menu li ul {
  
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #007bff;
    padding: 10px 0;
    border-radius: 5px;
    width: 100%;
    display: none;
    z-index: 1000;
}

    
    .menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .banner-content {
        left: 20px;
        max-width: 80%;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-grid, .service-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-heading h2 {
        font-size: 28px;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
    }
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Why Us Section */
.why-us {
    background-color: #fff;
}

.why-us-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.why-us-image, .why-us-items {
    flex: 1;
}
.why-us-image{
    height: 450px;
}
.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.why-us-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.why-us-icon {
    font-size: 24px;
    color: #007bff;
    min-width: 40px;
}

.why-us-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

