/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}
a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 15px;
}
.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: white;
}
.cta-button {
    background-color: #ff9800;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: #009688;
    color: white;
    text-align: center;
    padding: 100px 20px;
}
.hero-btn {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* Features Section */
.features {
    padding: 50px 20px;
    text-align: center;
}
.feature-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
.feature-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
}

/* Pricing Section */
.pricing {
    background-color: #e0f7fa;
    padding: 50px 20px;
    text-align: center;
}
.price-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin: 10px;
    width: 40%;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    text-align: center;
}
.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
    width: 60%;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .feature-grid {
        flex-direction: column;
        width: 100%;
    }

    .feature-card {
        width: 90%; /* Adjust card size for smaller screens */
        margin-bottom: 20px;
    }
}

/* Tablets and small desktops */
@media (min-width: 769px) and (max-width: 1024px) {
    .feature-card {
        width: 45%; /* Two columns */
    }
}

/* Large desktops */
@media (min-width: 1025px) {
    .feature-grid {
        display: flex;
        justify-content: space-around;
    }
}

img {
    max-width: 100%;
    height: auto;
}

/* Logo Styling */
.logo {
    width: auto;        /* Maintain aspect ratio */
    height: 70px;       /* Adjust the height (set as needed) */
    max-width: 200px;   /* Ensure it doesn't grow too large */
    object-fit: contain; /* Keeps the logo properly scaled */
    margin-right: 20px;  /* Optional: Adds space between logo and navigation */
}

/* Navbar Styling for Mobile */
@media (max-width: 768px) {
    .logo {
        height: 40px;  /* Resize the logo for smaller screens */
        margin-right: 10px;
    }
}

/* Navbar Styling */
.navbar {
    display: flex;
    align-items: center;  /* Vertically centers logo and links */
    justify-content: center;  /* Centers links horizontally */
    gap: 50px;  /* Space between logo and links */
    padding: 10px 20px;
    background-color: #333;
}

/* Ensure logo stays aligned left */
.logo-container {
    position: absolute;
    left: 20px;  /* Adjust if needed */
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;  /* Space between each link */
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 15px;
}

/* Mobile View */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Navbar Styling with Light Background */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 10px 20px;
    background-color: #f8f9fa;  /* Light gray background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  /* Subtle shadow for better separation */
}

/* Logo Styling */
.logo-container {
    position: absolute;
    left: 20px;
}

/* Navigation Links */
.nav-links a {
    text-decoration: none;
    color: #333;  /* Dark text for better contrast */
    font-size: 15px;
}

/* Hover Effect for Links */
.nav-links a:hover {
    color: #007bff;  /* Optional: Blue hover effect */
}

/* Mobile View */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}
.hero {
    background-color: #f2f2f2;  /* Light grey background */
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
}

/* Hero Content Styling */
.hero-content h1 {
    font-size: 48px;
    color: #1a1a1a;  /* Dark grey for contrast */
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 15px;
    color: #333;  /* Slightly lighter grey for paragraph text */
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-btn {
    padding: 12px 25px;
    background-color: #007bff;  /* Blue button for contrast */
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Button Hover Effect */
.hero-btn:hover {
    background-color: #0056b3;  /* Darker blue on hover */
}

/* Mobile View */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        padding: 0 5%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }
}
.hero-content h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #007bff, #00c4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.hero {
    background-image: url('../img/baner.jpg');  /* Ensure the path is correct */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;  
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* Align content to the left */
    padding: 0 8%;  /* Adjust padding to move the content left */
    color: #1a1a1a;
}

/* Hero Content Styling */
.hero-content {
    max-width: 384px;  /* Limit content width */
}

.hero-content h1 {
    font-size: 28px;  /* Smaller font size for heading */
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;  /* Smaller font size for paragraph */
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-btn {
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        padding: 0 5%;
    }

    .hero-content h1 {
        font-size: 16px;
    }

    .hero-content p {
        font-size: 14px;
    }
}