@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    list-style: none;
}

:root {
    --bg-color: #eee;
    --second-color: #000;
    /* --text-color: #000; */
    --light-color: #808080;
    --big-font: 5rem;
    --h2-font: 4rem;
    --p-font: 1.5rem;
    --box-shadow: 0 .5rem 1.5rem rgba(0, 0, .1);
    --border-line: #fff;
    --border: 1px solid black;

}

html {
    font-size: 62.5%;
    /* Base font size is 10px */
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
    max-width: 100%;
}

body {
    background: var(--bg-color);
    color: var(--second-color);
    font-size: 1.6rem;
    overflow-x: hidden;
    max-width: 100%;
    /* 16px base font size */
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 10%;
    border-bottom: 1px solid transparent;
    transition: all .45s ease;
}

header.sticky {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-line);
    padding: 12px 15px;
}

/* .logo {
    /* color: var(--second-color);
    font-size: 2.5rem;
    font-weight: bolder; 
} */

.header-logo {
    height: 60px; /* Adjust this value to control the logo's height */
    width: auto;  /* Maintain aspect ratio */
    max-width: 100%; /* Ensures the image doesn't exceed the container width */
}


.navlist {
    display: flex;
}

.navlist a {
    color: var(--second-color);
    font-size: 1.7rem;
    /* Adjust font size for navigation links */
    font-weight: 500;
    margin: 0 25px;
    transition: all .45s ease;
    position: relative;
}

.navlist .ul {
    text-align: right;
    flex: 1;
}

.navlist a::after {
    content: '';
    width: 0;
    height: 3px;
    background: var(--second-color);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

.navlist a:hover::after {
    width: 100%;
}

li a.active::after {
    width: 100%;
}

#menu-btn {
    font-size: 35px;
    color: var(--second-color);
    z-index: 10001;
    cursor: pointer;
    margin-left: 50px;
    display: none;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust height as needed */
    overflow: hidden;
}

.slides {
    display: flex;
    width: 400%; /* Four slides */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 25%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Add these styles for the button container */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: rgba(0, 0, 0, 0.1);  Dark transparent overlay */
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start;
    justify-content: center; /* Center items vertically */
    padding: 20px;
    box-sizing: border-box;
}

.text {
    color: var(--second-color);
    margin-bottom: 20px; /* Space between text and button */
}

.text h2 {
    font-size: var(--h2-font); /* Adjust as needed */
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 50px;
    padding-right: 40%;
    text-transform: capitalize;
}

.text p {
    font-size: 1.5rem; /* Adjust as needed */
}

.buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: flex-start;
}

.buttons .btn {
    margin-right: 0; /* Remove right margin for vertical stacking */
    margin-bottom: 15px; /* Space between buttons if more than one */
    transition: all .45s ease;
    border: .2rem solid var(--second-color);
    padding: .8rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    color: var(--second-color);
    cursor: pointer;
    background: none;
}

.buttons .btn:hover {
    background: var(--second-color);
    color: var(--bg-color);
}

.cards {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    margin: 0 auto;
    margin-top: -65px;
    padding: 20px 10%;
    position: relative;
    z-index: 1; /* Ensure the cards are above other content */
}

.card {
    background: #fff;
    border: 1px solid var(--second-color);
    border-radius: .5rem;
    padding: 20px;
    text-align: center;
    width: 30%;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 10;
    transform: translateY(20px); /* Adjust to create overlap effect */
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card i {
    font-size: 3rem;
    color: #A4CF41;
    margin-bottom: 10px;
}

.card p {
    font-size: 1.2rem;
    color: var(--second-color);
}

.card:hover {
    transform: translateY(0); /* Remove the overlap effect on hover */
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
    background: #8F539B;
}

.card:hover i,
.card:hover h2,
.card:hover p {
    color: white;
}

.about-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 10%;
    background: #fff; /* Light background for contrast */
    margin-top: 15px;
}

.about-details-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.text-column {
    flex: 1;
    max-width: 50%;
}

.text-column h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.text-column p {
    font-size: 1.6rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.view-more {
    display: inline-block;
    font-size: 1.6rem;
    color: var(--second-color);
    border: 2px solid var(--second-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.view-more:hover {
    background: var(--second-color);
    color: #fff;
}

.photo-column {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

.photo-column img {
    width: 100%;
    height: 55%;
    object-fit: contain;
}

.services {
    padding: 40px 10%;
    text-align: center;
    background: #f5f5f5; /* Light background for contrast */
}

.services-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.services-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 20px;
}

.card-list {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 24%; /* Increased width for wider cards */
    text-align: center;
    transition: background 0.3s, color 0.3s;
}

.card-list i {
    color: #A4CF41;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.card-list h3, .card-list p {
    transition: color 0.3s;
}

.card-list:hover {
    background: #8F539B;
    color: #fff;
}

.card-list:hover i {
    color: #fff;
}

.card-list:hover h3, .card-list:hover p, .card-list:hover .read-more {
    color: #fff;
}

.all-services {
    display: inline-block;
    font-size: 1.6rem;
    color: var(--second-color);
    border: 2px solid var(--second-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.all-services:hover {
    background: var(--second-color);
    color: #fff;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    color: var(--second-color);
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s, transform 0.3s;
}

.read-more i {
    margin-left: 7px;
    font-size: 1.4rem;
    transition: transform 0.3s;
    margin-top: 15px;
}

.read-more:hover {
    color: var(--light-color);
    transform: translateX(10px)
}

.blogs {
    margin: 20px 20px;

}

.blogs-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    margin-top: 40px;
}

.blogs .box-container {
    border: 0px solid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
    gap: 1.5rem;
}

.blogs .box-container .box {
    overflow: hidden;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    background: #fff ;
}


.blogs .box-container .box img {
    height: 25rem;
    width: 100%;
    object-fit: cover;

}


.blogs .box-container .box .content {
    /* border: 1px solid; */
    padding: 2rem;
}

.blogs .box-container .box .content .icons {
    /* border: 1px solid blue; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: var(--border);
}

.blogs .box-container .box .content .icons a {
    color: var(--light-color);
    font-size: 1.5rem;
}


.blogs .box-container .box .content .icons a:hover {
    color: var(--second-color);
}


.blogs .box-container .box .content .icons a i {
    color: var(--second-color);
    padding-right: .5rem;
}

.blogs .box-container .box .content h3 {
    line-height: 1.8;
    color: var(--second-color);
    font-size: 2.2rem;
    padding: .5rem 0;
}

.blogs .box-container .box .content p {
    line-height: 1.8;
    color: var(--light-color);
    font-size: 1.5rem;
    padding: .5rem 0;
}

.counters {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    padding: 40px 0;
    background: #f9f9f9;
}

.counter-box {
    text-align: center;
}

.counter-box h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 3rem;
    font-weight: bold;
    color: var(--second-color);
    margin: 0;
}

.partners {
    padding: 50px 0;
    background-color: var(--bg-color) /* Adjust as needed */
}

.partners-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    margin-top: 40px;
}

.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* border: 1px solid #f9f9f9; */
}

.marquee-content {
    display: flex;
    animation: marquee 50s linear infinite;
}

.marquee-content img {
    max-height: 80px; /* Adjust the height of the logos as needed */
    margin-right: 50px; /* Adjust the spacing between logos */
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


footer {
    background: var(--bg-color);
}

footer .box-container {
    border: 0px solid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
    gap: 1.5rem;
    padding: 5rem;
    border-top: 1px solid var(--second-color);
}

footer .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--second-color);
    padding: 1rem 0;
    text-transform: capitalize;
}

footer .box-container .box h3 i {
    color: var(--second-color);
}

footer .box-container .box .links {
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
    transition: transform 0.3 ease;
}

footer .box-container .box .links i {
    color: var(--second-color);
    padding-right: .5rem;
    transition: transform 0.3s ease;
}

footer .box-container .box .links:hover i:hover {
    /* padding-right: 2rem; */
    transform: translateX(2rem);
}

footer .box-container .box p {
    line-height: 1.8;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

footer .box-container .box .share a {
    border: 0px solid;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border-radius: .5rem;
    color: var(--second-color);
    font-size: 2rem;
    margin-left: .1rem;
    background: var(--bg-color);
    text-align: center;
}

footer .box-container .box .share a:hover {
    background: var(--second-color);
    color: var(--bg-color);
}
.credit {
    text-align: center;
    margin: 2rem auto;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    color: var(--second-color);
    border-top: 2px solid var(--second-color);
    max-width: 80%;
}


/* about us page */
/* Styling for the landing image section */
.landing-image {
    position: relative;
    width: 100%;
    height: 60vh; /* Adjust height as needed */
    background: url('worker7.jpg') no-repeat center center/cover; /* Replace with your image path */
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(225, 225, 225, 0.3); /* Black overlay with 50% opacity */
    z-index: 1;
}

.landing-image h1 {
    position: relative;
    color: var(--second-color);
    font-size: var(--h2-font); /* Adjust font size as needed */
    z-index: 2;
}

/* About Main Section */

/* Main section styling */
.about-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 10%;
    background: #fff; /* Light background for contrast */
    margin-top: 15px;
}

.text-column {
    flex: 1;
    max-width: 50%;
    padding-right: 20px; /* Space between text and image */
}

.text-column .about-label {
    display: block;
    font-size: 1.2rem;
    color: var(--second-color);
    margin-bottom: 10px;
}

.text-column .about-heading {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.text-column p {
    font-size: 1.6rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.text-column ul {
    list-style: none;
    padding: 0;
}

.text-column ul li {
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.text-column ul li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--second-color);
    margin-right: 10px;
}

.photo-column {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

.photo-column img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}
.about-details-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 10%;
    gap: 80px;
    /*background: #fff;  Light background for contrast */
    margin-top: 30px; /* Increased margin to add space above */
}

.mission-vision-section {
    padding: 60px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

.section-heading {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.cards-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.vision-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 30%;
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    color: #A4CF41;
    margin-bottom: 15px;
}

.vision-card:hover {
    background: #8F539B;
    color: white;
    transition: all 0.3 ease;
}

.vision-card p {
    font-size: 1.6rem;
}

.vision-card:hover i,
.vision-card:hover h3,
.vision-card:hover p {
    color: white;
}

.core-values {
    padding: 50px 10%; /* Adjust padding as needed */
    background: #f9f9f9; /* Background color for the section */
}

.core-values-heading {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 40px;
}

.core-values-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.core-value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 48%; /* Ensures two cards per row */
    max-width: 48%; /* Ensures two cards per row */
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}

.core-value-card i {
    font-size: 2.5rem;
    color: #A4CF41;
}

.core-value-card p {
    font-size: 1.6rem;
    text-align: left;
}

/* Hover effect */
.core-value-card:hover {
    background: #8F539B;
    color: white;
}

.core-value-card:hover i,
.core-value-card:hover h3,
.core-value-card:hover p {
    color: white;
}

/* Service Page Styling */
/* Services Page Styles */
/* .services-intro {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4; /* Light gray background *
}

.services-intro .intro-label {
    font-size: 1.2rem;
    color: #555; /* Light gray text color *
    margin-bottom: 5px;
    display: block;
}

.services-intro .services-heading {
    font-size: 3.0rem;
    font-weight: bold;
    color: #333; /* Darker text color *
    margin-bottom: 30px; 
}*/

/* Styling for services section */
.services-section {
    padding: 50px 10%;
    text-align: center;
}

.small-heading {
    font-size: 1.5rem;
    margin-bottom: 2px;
    color: #555;
}

.main-heading {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 30%;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card i {
    font-size: 3.0rem;
    color: #A4CF41;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.4rem;
    color: #333;
}

.service-card h2 {
    font-size: 2.0rem;
    color: var(--second-color);
    text-align: center;
}

.service-card:hover {
    background-color: #8F539B; /* Purple color on hover */
    color: #fff;
}

.service-card:hover i,
.service-card:hover h2,
.service-card:hover p {
    color: #fff;
}


/* contact us page styling */

.contact-info .info-header {
    margin-bottom: 30px;
}

.info-header .small-heading {
    font-size: 1.4rem;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-header h2 {
    font-size: 3.4rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.contact-details {
    display: flex;
    justify-content: space-between;
    padding: 40px 10%;
}

.contact-info {
    flex: 1;
    margin-right: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 2rem;
    color: #333;
    margin-right: 15px;
}

.info-content h3 {
    font-size: 1.8rem;
    margin: 0;
    color: #333;
}

.info-content p {
    font-size: 1.6rem;
    color: #777;
}


.contact-form {
    flex: 1;
    padding: 20px;
    background-color: transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    resize: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: transparent;
    resize: none;
}







@media (max-width: 1024px) {
    .slideshow {
        height: 60vh; /* Adjusted height for better visibility on medium screens */
    }

    .slides {
        width: 400%; /* Show three slides at a time */
    }

    .slide {
        width: 33.33%; /* Each slide takes up one-third of the width, showing three slides at a time */
    }

    .overlay {
        padding: 10px; /* Adjusted padding for medium screens */
        font-size: 1.1rem; /* Slightly larger font size for readability */
    }

    .text h2 {
        font-size: 2rem; /* Adjusted font size for better readability on medium screens */
        margin-top: 40px; /* Adjusted top margin for medium screens */
        margin-bottom: 10px; /* Slightly adjusted bottom margin */
    }

    .text p {
        font-size: 1.2rem; /* Adjusted font size for paragraphs */
    }

    .cards {
        flex-direction: column;
        align-items: center;
        padding: 20px 5%;
    }
    
    .card {
        width: 100%; /* Reduce the width to complement the screen size */
        /* height: 100%; */
        margin-bottom: 20px; /* Add spacing between the cards */
        transform: translateY(0); /* Remove the overlap effect */
    }
    
    
    .card i {
    font-size: 3rem;
    color: #A4CF41;
    margin-bottom: 10px;
    }
    
    .card p {
    font-size: 1.2rem;
    color: var(--second-color);
    }
    
    .card:hover {
    transform: translateY(0); /* Remove the overlap effect on hover */
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
    background: #8F539B;
    }
    
    .card:hover i,
    .card:hover h2,
    .card:hover p {
    color: white;
    }

    .about-details-content {
        flex-direction: row;
        gap: 60px; /* Adjusted gap for medium screens */
    }

    .text-column, .photo-column {
        max-width: 50%; /* Each column takes up half the width */
    }

    .photo-column img {
        width: 100%;
        height: auto; /* Adjusted height for responsiveness */
        max-height: 500px; /* Optional: Limit max height for medium screens */
        object-fit: cover;
    }

    .services-cards {
        flex-wrap: wrap; /* Allow cards to wrap */
        gap: 30px; /* Adjusted gap for better spacing */
        justify-content: center; /* Center the cards */
    }

    .card-list {
        width: 45%; /* Full width for medium screens */
        max-width: 320px; /* Optional: to set a max width */
        margin: 0 auto; /* Center each card horizontally */
    }

    .blogs .box-container {
        grid-template-columns: repeat(2, 1fr); /* Two columns on medium screens */
        gap: 1.5rem; /* Adjust the gap for better spacing */
    }

    .blogs .box-container .box {
        width: 100%; /* Full width within the grid columns */
        margin: 0 auto; /* Center the box */
    }

    .blogs .box-container .box img {
        height: 25rem; /* Adjusted height for medium screens */
    }

    .blogs .box-container .box .content {
        padding: 2rem; /* Adjust padding for medium screens */
    }

    .blogs .box-container .box .content h3 {
        font-size: 2rem; /* Slightly smaller font size for titles */
    }

    .blogs .box-container .box .content p {
        font-size: 1.6rem; /* Adjusted font size for paragraphs */
    }

    .mission-vision-section {
        padding: 50px 7%; /* Adjusted padding for medium screens */
        background-color: #f9f9f9;
        text-align: center;
    }
    
    .section-heading {
        font-size: 3rem; /* Adjusted font size for medium screens */
        font-weight: bold;
        margin-bottom: 35px; /* Adjusted bottom margin */
    }
    
    .cards-container {
        display: flex;
        justify-content: space-between;
        gap: 20px; /* Adjusted gap for better spacing on medium screens */
        flex-wrap: wrap;
    }
    
    .vision-card {
        background: #fff;
        padding: 20px; /* Adjusted padding for medium screens */
        border-radius: 10px; /* Slightly larger border radius */
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.1); /* Adjusted box shadow */
        flex: 1;
        max-width: 30%; /* Adjusted width to fit three cards per row */
        text-align: center;
        transition: all 0.3s ease; /* Added missing 's' for smooth transition */
    }
    
    .card-icon {
        font-size: 2.8rem; /* Adjusted icon size */
        color: #A4CF41;
        margin-bottom: 12px; /* Adjusted bottom margin */
    }
    
    .vision-card:hover {
        background: #8F539B;
        color: white;
        transition: all 0.3s ease; /* Fixed transition property */
    }
    
    .vision-card p {
        font-size: 1.6rem; /* Adjusted font size for paragraphs */
    }
    
    .vision-card:hover i,
    .vision-card:hover h3,
    .vision-card:hover p {
        color: white;
    }
    
    .about-details {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 40px 7%; /* Adjusted padding for medium screens */
        background: #fff; /* Light background for contrast */
        margin-top: 15px;
    }
    
    .text-column {
        flex: 1;
        max-width: 100%; /* Full width for smaller screens */
        padding-right: 0; /* Remove space between text and image */
        margin-bottom: 20px; /* Space between columns on smaller screens */
    }
    
    .text-column .about-label {
        display: block;
        font-size: 1.1rem; /* Adjusted font size for medium screens */
        color: var(--second-color);
        margin-bottom: 10px; /* Adjusted margin for medium screens */
    }
    
    .text-column .about-heading {
        font-size: 2.8rem; /* Adjusted font size for medium screens */
        margin-bottom: 20px; /* Adjusted bottom margin */
    }
    
    .text-column p {
        font-size: 1.5rem; /* Adjusted font size for paragraphs */
        margin-bottom: 20px; /* Adjusted bottom margin */
        line-height: 1.6; /* Adjusted line height for readability */
    }
    
    .text-column ul li {
        font-size: 1.5rem; /* Adjusted font size for list items */
        margin-bottom: 10px; /* Adjusted margin for list items */
    }
    
    .photo-column {
        flex: 1;
        max-width: 100%; /* Full width for smaller screens */
        display: flex;
        justify-content: center;
    }
    
    .photo-column img {
        width: 100%;
        height: auto; /* Adjust height for responsiveness */
        max-height: 450px; /* Optional: Limit max height for medium screens */
        object-fit: cover;
    }
    
    .about-details-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 40px 7%; /* Adjusted padding for medium screens */
        gap: 50px; /* Adjusted gap for better spacing on medium screens */
        margin-top: 20px; /* Adjusted margin for spacing */
    }

    .landing-image {
        height: 50vh; /* Adjusted height for better visibility on medium screens */
    }

    .landing-image h1 {
        font-size: var(--h2-font); /* Adjusted font size for medium screens */
        padding: 0 15px; /* Adjusted padding for medium screens */
    }

    .services-section {
        padding: 40px 7%; /* Adjusted padding for medium screens */
    }

    .small-heading {
        font-size: 1.3rem; /* Adjusted font size for medium screens */
        margin-bottom: 8px; /* Increased margin for better spacing */
        color: #555;
    }

    .main-heading {
        font-size: 2.8rem; /* Adjusted font size for medium screens */
        margin-bottom: 30px; /* Reduced margin for medium screens */
    }

    .services-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px; /* Adjusted gap for better spacing on medium screens */
        justify-content: center;
    }

    .service-card {
        background-color: #f5f5f5;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Adjusted shadow for medium screens */
        padding: 15px; /* Adjusted padding for medium screens */
        width: 45%; /* Two cards per row on medium screens */
        text-align: center;
        transition: all 0.3s ease;
    }

    .service-card i {
        font-size: 2.8rem; /* Adjusted icon size for medium screens */
        color: #A4CF41;
        margin-bottom: 12px; /* Adjusted margin for medium screens */
    }

    .service-card p {
        font-size: 1.3rem; /* Adjusted font size for paragraphs */
        color: #333;
    }

    .service-card h2 {
        font-size: 1.9rem; /* Adjusted font size for headings */
        color: var(--second-color);
        text-align: center;
    }

    .service-card:hover {
        background-color: #8F539B; /* Purple color on hover */
        color: #fff;
    }

    .service-card:hover i,
    .service-card:hover h2,
    .service-card:hover p {
        color: #fff;
    }
}






@media (max-width: 768px) {
    #menu-btn {
        display: block;
        font-size: 35px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        /* Adjust as needed for desired spacing from the right edge */
        top: 50%;
        transform: translateY(-50%);
        padding-top: 30px;
    }
    
    #menu-btn i {
        transition: transform 0.3s ease;
        /* Add a transition for smoother icon change */
    }
    
    #menu-btn.active i.fa-bars {
        transform: rotate(90deg);
        /* Example transformation for bars icon */
    }
    
    #menu-btn.active i.fa-times {
        transform: rotate(0);
        /* Example transformation for times icon */
    }
    
    .navlist {
        position: absolute;
        top: -1000px;
        right: 0;
        left: 0;
        flex-direction: column;
        background-color: var(--bg-color);
        text-align: left;
        transition: all .45s ease;
        padding: 30px;
    }
    
    .navlist.open {
        top: 100%;
    }
    
    .navlist {
        display: flex;
    }
    
    .navlist a {
        display: block;
        margin: 17px;
        font-size: 20px;
        transition: all .45s ease;
        color: var(--second-color);
    }
    
    .navlist a::after {
        content: '';
        width: 0;
        height: 3px;
        background: var(--second-color);
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: 0.5s;
    }
    
    .navlist a:hover::after {
        width: 5%;
    }
    
    li a.active::after {
        width: 5%;
    }
    
    .navlist.open {
        top: 100%;
    }

    .slideshow {
        height: 50vh; /* Increase height for better visibility on larger screens */
    }

    .slides {
        width: 400%; /* Ensure two slides are shown at a time */
    }

    .slide {
        width: 50%; /* Each slide takes up half the width, showing two slides at a time */
    }

    .overlay {
        padding: 10px; /* Adjust padding for medium screens */
        font-size: 1rem; /* Slightly larger font size for readability */
    }

    .text h2 {
        font-size: 1.8rem; /* Adjusted font size for better readability on medium screens */
        margin-top: 30px; /* Reduced top margin for smaller screens */
        margin-bottom: 8px; /* Slightly reduced bottom margin */
    }

    .text p {
        font-size: 1rem; /* Adjusted font size for paragraphs */
    }

    .about-details-content {
        flex-direction: column;
    }

    .text-column, .photo-column {
        max-width: 100%;
    }

    .photo-column img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 500px;
    }
    .services-cards {
        flex-wrap: wrap; /* Allow cards to wrap */
        gap: 20px; /* Increased gap for better spacing */
        justify-content: center; /* Center the cards */
    }

    .card-list {
        width: 48%; /* Full width for smaller screens */
        max-width: 300px; /* Optional: to set a max width */
        margin: 0 auto; /* Center each card horizontally */
    }

    .blogs .box-container {
        grid-template-columns: repeat(2, 1fr); /* Two columns on screens up to 768px */
        gap: 1rem; /* Adjust the gap for better spacing on smaller screens */
    }

    .blogs .box-container .box {
        width: 100%; /* Full width within the grid columns */
        margin: 0 auto; /* Center the box */
    }

    .blogs .box-container .box img {
        height: 20rem; /* Adjusted height for smaller screens */
    }

    .blogs .box-container .box .content {
        padding: 1.5rem; /* Adjust padding for smaller screens */
    }

    .blogs .box-container .box .content h3 {
        font-size: 1.8rem; /* Slightly smaller font size for titles */
    }

    .blogs .box-container .box .content p {
        font-size: 1.4rem; /* Slightly smaller font size for paragraphs */
    }

    .mission-vision-section {
        padding: 40px 5%; /* Adjusted padding for medium screens */
        background-color: #f9f9f9;
        text-align: center;
    }
    
    .section-heading {
        font-size: 2.5rem; /* Adjusted font size for medium screens */
        font-weight: bold;
        margin-bottom: 30px; /* Adjusted bottom margin */
    }
    
    .cards-container {
        display: flex;
        justify-content: space-between;
        gap: 15px; /* Reduced gap for better spacing on medium screens */
        flex-wrap: wrap;
    }
    
    .vision-card {
        background: #fff;
        padding: 15px; /* Adjusted padding for medium screens */
        border-radius: 8px; /* Slightly smaller border radius */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Reduced box shadow */
        flex: 1;
        max-width: 45%; /* Increased width to fit two cards per row */
        text-align: center;
        transition: all 0.3s ease; /* Added missing 's' for smooth transition */
    }
    
    .card-icon {
        font-size: 2.5rem; /* Adjusted icon size */
        color: #A4CF41;
        margin-bottom: 10px; /* Adjusted bottom margin */
    }
    
    .vision-card:hover {
        background: #8F539B;
        color: white;
        transition: all 0.3s ease; /* Fixed transition property */
    }
    
    .vision-card p {
        font-size: 1.4rem; /* Adjusted font size for paragraphs */
    }
    
    .vision-card:hover i,
    .vision-card:hover h3,
    .vision-card:hover p {
        color: white;
    }
    
   .about-details {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        padding: 20px 5%; /* Reduced padding for smaller screens */
        background: #fff; /* Light background for contrast */
        margin-top: 15px;
    }
    
    .photo-column {
        flex: 1;
        order: 1;
        max-width: 100%; /* Full width for smaller screens */
        display: flex;
        justify-content: center;
        margin-bottom: 20px; /* Space between image and text */
    }
    
    .photo-column img {
        width: 100%;
        height: auto; /* Adjust height for responsiveness */
        max-height: 400px; /* Limit max height for smaller screens */
        object-fit: cover;
        aspect-ratio: 16 / 9; /* Maintain landscape aspect ratio */
    }
    
    .text-column {
        flex: 1;
        order: 2;
        max-width: 100%; /* Full width for smaller screens */
        padding-right: 0; /* Remove padding for full-width view */
    }
    
    .text-column .about-label {
        display: block;
        font-size: 1rem; /* Adjusted font size for smaller screens */
        color: var(--second-color);
        margin-bottom: 8px; /* Adjusted margin for smaller screens */
    }
    
    .text-column .about-heading {
        font-size: 2.5rem; /* Adjusted font size for smaller screens */
        margin-bottom: 15px; /* Reduced bottom margin */
    }
    
    .text-column p {
        font-size: 1.4rem; /* Adjusted font size for paragraphs */
        margin-bottom: 15px; /* Reduced bottom margin */
        line-height: 1.5; /* Adjusted line height for readability */
    }
    
    .text-column ul li {
        font-size: 1.4rem; /* Adjusted font size for list items */
        margin-bottom: 8px; /* Reduced margin for list items */
    }
    
    .about-details-content {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        padding: 20px 5%; /* Reduced padding for smaller screens */
        gap: 40px; /* Reduced gap for better spacing */
        margin-top: 20px; /* Adjusted margin for spacing */
    }

    .landing-image {
        height: 40vh; /* Further reduced height for smaller screens */
    }

    .landing-image h1 {
        font-size: var(--h2-font); /* Further adjusted font size for smaller screens */
        padding: 0 10px; /* Adjusted padding for smaller screens */
    }

    .services-section {
        padding: 30px 5%; /* Reduced padding for smaller screens */
    }

    .small-heading {
        font-size: 1.2rem; /* Adjusted font size for smaller screens */
        margin-bottom: 10px; /* Increased margin for better spacing */
        color: #555;
    }

    .main-heading {
        font-size: 2.5rem; /* Adjusted font size for smaller screens */
        margin-bottom: 20px; /* Reduced margin for smaller screens */
    }

    .services-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px; /* Reduced gap for better spacing on smaller screens */
        justify-content: center;
    }

    .service-card {
        background-color: #f5f5f5;
        border-radius: 8px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* Reduced shadow for smaller screens */
        padding: 15px; /* Reduced padding for smaller screens */
        width: 45%; /* Two cards per row on smaller screens */
        text-align: center;
        transition: all 0.3s ease;
    }

    .service-card i {
        font-size: 2.5rem; /* Adjusted icon size for smaller screens */
        color: #A4CF41;
        margin-bottom: 10px; /* Reduced margin for smaller screens */
    }

    .service-card p {
        font-size: 1.2rem; /* Adjusted font size for paragraphs */
        color: #333;
    }

    .service-card h2 {
        font-size: 1.8rem; /* Adjusted font size for headings */
        color: var(--second-color);
        text-align: center;
    }

    .service-card:hover {
        background-color: #8F539B; /* Purple color on hover */
        color: #fff;
    }

    .service-card:hover i,
    .service-card:hover h2,
    .service-card:hover p {
        color: #fff;
    }
}
    
    


/* Media query for screens with a max width of 480px */
@media (max-width: 540px) {
    .slideshow {
        height: 40vh; /* Further reduce height for very small screens */
    }

    .slides {
        width: 400%; /* Adjust width for two slides at a time */
    }

    .slide {
        width: 50%; /* Show two slides at a time */
    }

    .overlay {
        padding: 5px; /* Further reduce padding */
        font-size: 0.8rem; /* Adjust font size for very small screens */
    }

    .about-details-content {
        padding: 20px; /* Add some padding for spacing */
    }

    .text-column, .photo-column {
        max-width: 100%;
        margin-bottom: 20px; /* Add spacing between text and photo columns */
    }

    .photo-column img {
        width: 100%;
        height: auto; /* Use 'auto' to maintain aspect ratio */
        object-fit: cover; /* Change to 'cover' for better image fill */
        max-height: 500px; /* Optional: Limit max height for smaller screens */
    }

    .text-column {
        font-size: 1.4rem; /* Adjust text size for better readability */
        line-height: 1.6; /* Improve line spacing */
    }
    .services-cards {
        flex-wrap: wrap; /* Allow cards to wrap */
        gap: 15px; /* Adjust gap for smaller screens */
        justify-content: center; /* Center the cards */
    }

    .card-list {
        width: 100%; /* Full width for each card */
        margin: 0 auto; /* Center each card horizontally */
        max-width: 330px; /* Optional: Set a max width to maintain layout aesthetics */
    }

    .blogs .box-container {
        grid-template-columns: 1fr; /* Single column layout for smaller screens */
        gap: 1rem; /* Maintain the gap for spacing */
    }

    .blogs .box-container .box {
        width: 100%; /* Full width for each box */
        margin: 0 auto; /* Center the box */
    }

    .blogs .box-container .box img {
        height: 18rem; /* Further adjusted height for smaller screens */
    }

    .blogs .box-container .box .content {
        padding: 1rem; /* Reduced padding for a compact look */
    }

    .blogs .box-container .box .content h3 {
        font-size: 1.6rem; /* Smaller font size for titles */
    }

    .blogs .box-container .box .content p {
        font-size: 1.3rem; /* Smaller font size for paragraphs */
    }

    .counters {
        flex-direction: column; /* Stack the counter boxes vertically */
        align-items: center; /* Center align the boxes */
        gap: 20px; /* Add space between each counter box */
        padding: 20px 0; /* Reduce padding for a more compact layout */
    }

    .counter-box h3 {
        font-size: 1.8rem; /* Slightly smaller font size for headings */
        margin-bottom: 8px; /* Adjust margin for smaller screens */
    }

    .counter-box p {
        font-size: 2.5rem; /* Slightly smaller font size for counter values */
    }

    .about-details {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        padding: 20px 5%; /* Reduced padding for smaller screens */
        background: #fff; /* Light background for contrast */
        margin-top: 15px;
    }
    
    .photo-column {
        flex: 1;
        order: 1;
        max-width: 100%; /* Full width for smaller screens */
        display: flex;
        justify-content: center;
        margin-bottom: 20px; /* Space between image and text */
    }
    
    .photo-column img {
        width: 100%;
        height: auto; /* Adjust height for responsiveness */
        max-height: 200px; /* Limit max height for smaller screens */
        object-fit: cover;
        aspect-ratio: 16 / 9; /* Maintain landscape aspect ratio */
    }
    
    .text-column {
        flex: 1;
        order: 2;
        max-width: 100%; /* Full width for smaller screens */
        padding-right: 0; /* Remove padding for full-width view */
    }
    
    .text-column .about-label {
        display: block;
        font-size: 1rem; /* Adjusted font size for smaller screens */
        color: var(--second-color);
        margin-bottom: 8px; /* Adjusted margin for smaller screens */
    }
    
    .text-column .about-heading {
        font-size: 2rem; /* Adjusted font size for smaller screens */
        margin-bottom: 15px; /* Reduced bottom margin */
    }
    
    .text-column p {
        font-size: 1.2rem; /* Adjusted font size for paragraphs */
        margin-bottom: 15px; /* Reduced bottom margin */
        line-height: 1.4; /* Adjusted line height for readability */
    }
    
    .text-column ul li {
        font-size: 1.2rem; /* Adjusted font size for list items */
        margin-bottom: 8px; /* Reduced margin for list items */
    }
    
    .about-details-content {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        padding: 20px 5%; /* Reduced padding for smaller screens */
        gap: 40px; /* Reduced gap for better spacing */
        margin-top: 20px; /* Adjusted margin for spacing */
    }
    
    .landing-image {
        height: 30vh; /* Further reduced height for smaller screens */
    }

    .landing-image h1 {
        font-size: 2.5rem; /* Further adjusted font size for smaller screens */
        padding: 0 10px; /* Adjusted padding for smaller screens */
    }

    .mission-vision-section {
        padding: 30px 5%; /* Reduced padding for smaller screens */
        background-color: #f9f9f9;
        text-align: center;
    }
    
    .section-heading {
        font-size: 2.5rem; /* Adjusted font size for smaller screens */
        font-weight: bold;
        margin-bottom: 20px; /* Reduced margin for smaller screens */
    }
    
    .cards-container {
        display: flex;
        flex-direction: column; /* Stack cards vertically */
        gap: 15px; /* Reduced gap for better spacing on smaller screens */
    }
    
    .vision-card {
        background: #fff;
        padding: 15px; /* Reduced padding for smaller screens */
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Reduced shadow for smaller screens */
        flex: 1;
        max-width: 100%; /* Full width for smaller screens */
        text-align: center;
    }
    
    .card-icon {
        font-size: 2rem; /* Adjusted icon size for smaller screens */
        color: #A4CF41;
        margin-bottom: 10px; /* Reduced margin for smaller screens */
    }
    
    .vision-card:hover {
        background: #8F539B;
        color: white;
        transition: all 0.3s ease; /* Corrected transition property */
    }
    
    .vision-card p {
        font-size: 1.4rem; /* Adjusted font size for paragraphs */
    }
    
    .vision-card:hover i,
    .vision-card:hover h3,
    .vision-card:hover p {
        color: white;
    }
    

    .core-values {
        padding: 20px 5%; /* Reduced padding for smaller screens */
        background: #f9f9f9; /* Background color for the section */
    }
    
    .core-values-heading {
        text-align: center;
        font-size: 2.5rem; /* Adjusted font size for smaller screens */
        margin-bottom: 20px; /* Reduced margin for smaller screens */
    }
    
    .core-values-content {
        display: flex;
        flex-direction: column; /* Stack cards vertically */
        gap: 15px; /* Reduced gap for better spacing on smaller screens */
    }
    
    .core-value-card {
        background: #fff;
        padding: 20px; /* Reduced padding for smaller screens */
        border-radius: 10px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); /* Reduced shadow for smaller screens */
        flex: 1 1 100%; /* Full width for smaller screens */
        max-width: 100%; /* Full width for smaller screens */
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px; /* Reduced gap for smaller screens */
    }
    
    .core-value-card i {
        font-size: 2rem; /* Adjusted icon size for smaller screens */
        color: #A4CF41;
    }
    
    .core-value-card p {
        font-size: 1.4rem; /* Adjusted font size for paragraphs */
        text-align: left;
    }
    
    /* Hover effect */
    .core-value-card:hover {
        background: #8F539B;
        color: white;
    }
    
    .core-value-card:hover i,
    .core-value-card:hover h3,
    .core-value-card:hover p {
        color: white;
    }
    
    .services-section {
        padding: 20px 5%; /* Reduced padding for smaller screens */
    }

    .small-heading {
        font-size: 1.2rem; /* Adjusted font size for smaller screens */
        margin-bottom: 10px; /* Increased margin for better spacing */
        color: #555;
    }

    .main-heading {
        font-size: 2.0rem; /* Adjusted font size for smaller screens */
        margin-bottom: 20px; /* Reduced margin for smaller screens */
    }

    .services-grid {
        display: flex;
        flex-direction: column; /* Stack cards vertically */
        gap: 15px; /* Reduced gap for better spacing on smaller screens */
        justify-content: center;
    }

    .service-card {
        background-color: #f5f5f5;
        border-radius: 8px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* Reduced shadow for smaller screens */
        padding: 15px; /* Reduced padding for smaller screens */
        width: 100%; /* Full width for smaller screens */
        text-align: center;
        transition: all 0.3s ease;
    }

    .service-card i {
        font-size: 2.5rem; /* Adjusted icon size for smaller screens */
        color: #A4CF41;
        margin-bottom: 10px; /* Reduced margin for smaller screens */
    }

    .service-card p {
        font-size: 1.2rem; /* Adjusted font size for paragraphs */
        color: #333;
    }

    .service-card h2 {
        font-size: 1.8rem; /* Adjusted font size for headings */
        color: var(--second-color);
        text-align: center;
    }

    .service-card:hover {
        background-color: #8F539B; /* Purple color on hover */
        color: #fff;
    }

    .service-card:hover i,
    .service-card:hover h2,
    .service-card:hover p {
        color: #fff;
    }

    .contact-info .info-header {
        margin-bottom: 20px; /* Reduced margin for smaller screens */
    }

    .info-header .small-heading {
        font-size: 1.2rem; /* Adjusted font size */
        color: #555;
        text-transform: uppercase;
        margin-bottom: 3px; /* Reduced margin */
        letter-spacing: 0.5px; /* Reduced letter spacing */
    }

    .info-header h2 {
        font-size: 2.5rem; /* Adjusted font size for smaller screens */
        color: #333;
        margin: 0;
        font-weight: 600;
    }

    .contact-details {
        flex-direction: column; /* Stack contact details vertically */
        padding: 20px 5%; /* Reduced padding for smaller screens */
    }

    .contact-info {
        margin-right: 0; /* Removed right margin */
        margin-bottom: 20px; /* Added margin at the bottom */
    }

    .info-item {
        flex-direction: column; /* Stack icon and text vertically */
        align-items: flex-start; /* Align items to start */
        margin-bottom: 15px; /* Reduced margin for smaller screens */
    }

    .info-item i {
        font-size: 1.5rem; /* Adjusted icon size */
        color: #333;
        margin-bottom: 5px; /* Added bottom margin */
    }

    .info-content h3 {
        font-size: 1.6rem; /* Adjusted font size */
        margin: 0;
        color: #333;
    }

    .info-content p {
        font-size: 1.4rem; /* Adjusted font size */
        color: #777;
    }

    .contact-form {
        padding: 15px; /* Reduced padding */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Reduced shadow */
        border-radius: 4px; /* Reduced border radius */
    }

    .form-group {
        margin-bottom: 15px; /* Reduced margin */
    }

    .form-group label {
        font-size: 1.4rem; /* Adjusted font size */
        margin-bottom: 3px; /* Reduced margin */
        color: #333;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1.4rem; /* Adjusted font size */
        padding: 8px; /* Reduced padding */
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .buttons {
        display: flex;
        flex-direction: column; /* Keep buttons stacked vertically */
        align-items: stretch; /* Ensure buttons take the full width */
        gap: 10px; /* Adjust gap between buttons */
        padding: 0 10px; /* Add padding for screen edges */
    }

    .buttons .btn {
        margin-right: 0; /* Keep no right margin */
        margin-bottom: 10px; /* Reduce space between buttons */
        padding: 0.8rem 2rem; /* Adjust padding for smaller screens */
        font-size: 1.4rem; /* Adjust font size for readability */
        width: 100%; /* Ensure buttons take full width */
        box-sizing: border-box; /* Include padding and border in the element's total width */
        transition: all .45s ease;
        border: .2rem solid var(--second-color);
        border-radius: .5rem;
        color: var(--second-color);
        cursor: pointer;
        background: none;
    }

    .buttons .btn:hover {
        background: var(--second-color);
        color: var(--bg-color);
    }
    
}

