body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #FFF;
    padding: 12px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}

header img {
    height: 52px;
}

header img.right {
    height: 52px;
    order: 2;
}

.content {
    padding: 0px;
    max-width: 1100px;
    margin: 20px auto;
}

.content h2 {
    color: #00000;
    font-weight: 600;
    margin-left: 30px;
    margin-right: 30px;
}

.content .comingsoon {
    color: #00000;
    font-weight: 600;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 300px;
    margin-bottom: 300px;
    font-size: 50px;
    text-align: center;
}

.content .error-404{
    color: #00000;
    font-weight: 600;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 300px;
    font-size: 100px;
    text-align: center;
}

.content .error-desc{
    color: #00000;
    font-weight: 600;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 300px;
    font-size: 20px;
    text-align: center;
}

.content p, .content li {
    line-height: 1.9;
    color: #202020;
    margin-left: 30px;
    margin-right: 30px;
}

button {
    background-color: #1e88e5;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
    font-weight: bold;
    outline: none;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    margin-left: 30px;
    margin-right: 30px;
}

button:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
}

footer {
    background-color: #333;
    color: #FFF;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: start;
    padding: 20px;
    text-align: left;
}

.footer-section {
    margin: 10px;
}

.footer-section h3 {
    color: #FFF;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1e88e5;
}

.footer-section.contact p, .footer-section.about p {
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

footer a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #1e88e5;
}

footer img {
    width: 20px;
    height: 20px;
    margin-right: 7px;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 999;
    transition: right 0.3s ease;
    padding-top: 60px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    margin: 0;
    padding: 15px 20px;
    font-size: 1.2em;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu ul li:hover {
    background-color: #E4F0FD;
}

.nav-menu ul li a:hover {
    color: #007BFF;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-size: contain;
}

.menu-btn {
    cursor: pointer;
    display: none;
}

.horizontal-nav {
    list-style-type: none;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    margin: 0;
    padding: 10px 25px;
}

.horizontal-nav li {
    margin: 0;
    position: relative;
}

.horizontal-nav a {
    text-decoration: none;
    color: #555;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.horizontal-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007BFF;
    transition: width 0.3s;
}

.horizontal-nav a:hover {
    color: #007BFF;
}

.horizontal-nav a:hover::after {
    width: 100%;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: block;
}

.whatsapp-button img {
    width: 55px;
    height: auto;
}

.blog-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.blog-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    color: #333333;
}

.blog-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.read-more:hover {
    color: #0d47a1;
    text-decoration: underline;
}

#services {
    padding: 40px 20px;
    text-align: center;
}

#services h2 {
    font-size: 28px;
    color: #333333;
    margin-bottom: 30px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 50px;
}

.service-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 2px solid #e0e0e0;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    font-size: 20px;
    color: #1e88e5;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
}

.carousel {
    max-width: 1100px; /* Maximum width of the carousel */
    width: calc(100% - 40px); /* Full width minus the desired total margin */
    overflow: hidden;
    margin: 20px auto; /* 20px top and bottom margin, auto on the sides for centering */
    position: relative;
    border-radius: 15px;
}

.carousel-images {
    white-space: nowrap;
    transition: transform 0.5s ease;
    display: flex; /* Align images in a row */
}

.carousel-images img {
    flex: 0 0 100%; /* Each image takes full width of the carousel */
    display: block; /* Removes bottom margin from inline-block */
    height: auto; /* Maintain aspect ratio */
    max-height: 300px; /* Adjust this value to your preferred height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}


.carousel .prev, .carousel .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.carousel .prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.carousel .next {
    right: 0;
    border-radius: 0 3px 3px 0;
}

.carousel-dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #1e88e5;
}


@media (max-width: 768px) {
    .blog-card-container {
        grid-template-columns: 1fr;
    }

    .blog-card {
        max-width: 100%;
    }
    .content {
        padding: 0px 5%;
        background-color: transparent;
        margin: 10px auto;
    }
    .content h2 {
        margin-left: 10px;
        margin-right: 10px;
    }

    .content p, .content li {
        margin-left: 10px;
        margin-right: 10px;
    }
    .horizontal-nav {
        display: none;
    }
    .menu-btn {
        display: flex;
    }
    button {
        margin-left: 10px;
        margin-right: 10px;
    }
    .button:last-child {
        margin-bottom: 0;
    }
    .button p {
        font-size: 1rem;
    }
    .footer-banner {
        margin: 0px auto;
    }
    .content .comingsoon {
        font-size: 30px;
    }
    .footer-banner img {
        width: 100%;
        height: 50px;
    }
    .services-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    #services h2 {
        font-size: 24px;
    }

    .service-item {
        padding: 15px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .footer-section {
        margin: 20px 0;
        text-align: center;
        max-width: 90%;
    }

    .footer-section h3 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }

    .footer-section ul {
        margin: 0;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        font-size: 1em;
    }

    .footer-section.about p,
    .footer-section.contact p {
        font-size: 1em;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
        font-size: 1em;
    }

    footer img {
        width: 30px;
        height: 30px;
        margin: 0 10px;
    }
    .carousel {
        max-width: 100%; /* Maximum width of the carousel */
        width: 100%; /* Full width minus the desired total margin */
        margin: 0; /* 20px top and bottom margin, auto on the sides for centering */
        border-radius: 0;
    }
    .carousel-images img {
        height: auto; /* Maintain aspect ratio */
        max-height: 200px; /* Adjust this value to your preferred height */
        object-fit: cover; /* Ensures the image covers the area without distortion */
    }
}
