/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Navbar Styling */
.nav-custom {
    background-color: dodgerblue;
}

.nav-link {
    color: white !important;
    font-weight: 500;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Hero Section Styling */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: #e6f3ff;
}

.hero-text {
    flex: 1;
    min-width: 280px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    color: #1e90ff;
}

.hero-text p {
    font-size: 20px;
    font-style: italic;
    color: #333;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Media Queries */

/* Tablets and below (max-width: 768px) */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-image img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Mobile phones and smaller screens (max-width: 576px) */
@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }
}
/* Other existing styles above */

/* Make sure images scale correctly */
img {
    max-width: 100%;
    height: auto;
}

/* Optional: If you want to control margins or other aspects of image positioning */
p img {
    margin: 0 auto;  /* Center images inside the parent p tag */
    display: block;  /* Ensure block display for centering */
}

/* Custom waffle icon (three lines) for the mobile menu */
.navbar-toggler {
    border: none; /* Remove the default border */
    background: transparent; /* Make the background transparent */
    padding: 0; /* Remove any padding */
}

/* Create three lines for the waffle icon */
.navbar-toggler-icon {
    display: none; /* Hide the default Bootstrap hamburger icon */
}

.navbar-toggler:focus {
    outline: none; /* Remove focus outline */
}

.navbar-toggler .waffle {
    width: 30px;
    height: 3px;
    background-color: #fff; /* Color of the lines */
    margin: 6px 0; /* Space between each line */
    transition: all 0.3s ease;
}

/* Show the custom waffle icon when the navbar-toggler is clicked */
@media (max-width: 768px) {
    .navbar-toggler .waffle {
        display: block;
    }
}