/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    
    background: #f9f9f9;
    line-height: 1.6;
    font-family: Alata;
    }

h1 {
    color: #333;
}

a {
    text-decoration: none;
    color: #fff;
}

.company-name{
    font-family: "Sour Gummy";
    display: none;
}

/* Header Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.navbar-email {
    color: #333;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.navbar-links {
    font-family: rubik;
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    align-items: center; /* Center align items */
    justify-content: center; /* Center the navigation links */
   
    padding: 10px 20px; /* Add some padding to the navbar */
}

.navbar-links li a {
     background-color: red; /* Red background for the navbar */
    text-decoration: none;
    color: white; /* White text color for the links */
    font-size: 14px;
    font-weight: 500; /* Semi-bold text */
    padding: 8px 12px; /* Add padding for better clickable area */
    border-radius: 4px; /* Rounded edges */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
}

.navbar-links li a:hover,
.navbar-faq:hover,
.navbar-button:hover {
    color: white; /* Keep the text white on hover */
    background-color: orange; /* Green background on hover */
}

.navbar-links li a:active {
    color: white; /* Keep the text white when clicked */
    background-color: darkgreen; /* Darker green on active */
}


.navbar-actions {
    display: flex;
    gap: 15px;
}

.navbar-faq {
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.navbar-button {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #fff, #f7f7f7);
}

.news-banner {
    display: inline-block;
    background: #e6f5ff;
    border-radius: 20px;
    padding: 5px 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #0077cc;
    font-weight: bold;
    margin-top: 25px;
}

.news-badge {
    background: #0077cc;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    margin-right: 10px;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 20px 0;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.hero-button {
    background: #ff6600;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.hero-button:hover {
    background: #e65a00;
}

/* Button Styles */
.btn {
    display: inline-block;
    background: #ff5733;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #c63c1d;
}

/* Section Styles */
.services-section {
    text-align: center;
    padding: 20px;
}

.services-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 420px;
   
    text-align: center;
    margin-bottom: 20px; /* Ensure space between cards */
}

.service-card img {
    height: 350px;
    margin-bottom: 20px;
}

.service-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.service-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.service-card a:hover {
    background-color: #333;
}

.carousel-container {
    text-align: center;
    padding: 40px 20px;
    background: #f7f7f7;
    margin-top: 20px;
}

.carousel img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel .slide {
    margin: 0 auto;
}


/* Customer Reviews Section */
.reviews-section {
    text-align: center;
    padding: 40px 20px;
}

.reviews-section h2 {
    font-size: 32px;
    color: #0073e6;
    margin-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: #f1f3f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.review-card p {
    margin: 10px 0;
    line-height: 1.5;
    font-size: 16px;
}

.review-card .customer-name {
    font-weight: bold;
    color: #0073e6;
}

.stars {
    color: #0073e6;
    font-size: 18px;
    margin-bottom: 10px;
}


/* Media Queries for Mobile */
@media (max-width: 768px) {
    .company-name{
        display: block;
    }
    .cn{
       display:none;
   }
    .navbar {
       display:block;
        flex-direction: column;
        padding: 15px;
    }

    .navbar-links {
        justify-content: center;
        gap: 10px;
        flex-direction: column;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-button {
        padding: 12px 18px;
        font-size: 14px;
    }

    .services-container {
        flex-direction: column;
        gap: 15px;
    }

    .service-card {
        width: 100%;
        margin-bottom: 15px;
    }
    .service-card img {
        width: 90%;
        height: 80%;
        margin-bottom: 15px;
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        padding: 0 10px;
    }

    .review-card {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    .company-name{
        display: block;
    }
   .navbar{
       display:block;
   }
   .cn{
       display:none;
   }
    .navbar-email, .navbar-links li a, .navbar-faq, .navbar-button {
        font-size: 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-button {
        padding: 10px 15px;
        font-size: 12px;
    }

    .services-section h1 {
        font-size: 28px;
    }

    .service-card h2 {
        font-size: 20px;
    }
    .service-card img {
        width: 90%;
        height: 80%;
        margin-bottom: 15px;
    }

    .review-card p {
        font-size: 14px;
    }

    .stars {
        font-size: 16px;
    }
}
