@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Poppins&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}
#banner{
    background: linear-gradient(rgba(9, 9, 9, 0.5),#009687), url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.logo{
    width:140px;
    position: absolute;
    top: 4%;
    left: 10%;
}
.banner-text{
    text-align: center;
    color: #fff;
    padding-top: 180px;
}
.banner-text h1{
    font-size: 130px;
    font-family: 'Kaushan Script', cursive;
}
.banner-text p{
    font-size: 20px;
    font-style: italic;
}

.banner-btn{
    margin: 70px auto 0;
}
.banner-btn a{
    width: 150px;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: #fff;
    border: 0.5px solid #fff;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
} 

.banner-btn a span{
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: all 0.5s ease;
}
.banner-btn a:hover span{
    width: 100%;
}
.banner-btn a:hover{
    color: #000;
}

/* SIDENAV */
#sideNav{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background: #009688;
    z-index: 2;
    transition: 0.5s;
}

nav ul li{
    margin: 50px 20px;
}
nav ul li a{
    color: #fff;
}
#manuBtn{
    width: 50px;
    height: 50px;
    background: #009688;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 20px;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
}

#manuBtn img{
    width: 20px;
    margin-top: 15px;
}

/* media queries */
@media screen and (max-width:770px){
    .banner-text h1{
        font-size: 44px;
    }
    .banner-btn a{
        display: block;
        margin: 20px auto;
    }
    
}

/* header section completed */
#feature{
    width: 100%;
    padding: 70px 0;
}
.title-text{
    text-align: center;
    padding-bottom: 70px;
}
.title-text p{
    margin: auto;
    font-size: 20px;
    color: #019587;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#019587,#fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.title-text h1{
    font-size: 50px;
}
.feature-box{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;  
}
.features{
    flex-basis: 50%;
}
.features-img{
    flex-basis: 50%;
    margin: auto;
}
.features-img img{
    width: 70%;
    border-radius: 10px;
}
.features h1{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color: #019587;
}
.features-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.feature-icon .fa{
    width:50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: #019587;
    border: 1px solid #b5cfcc;
}
.feature-text p{
    padding: 0 20px;
    text-align: initial;

}


/* media queries for featured section */
@media screen and (max-width:770px){
    .title-text h1{
        font-size: 35px;
    }
    .features{
        flex-basis: 100%;
    }
    .features-img{
        flex-basis: 100%;
    }
    .features-img img{
        width: 100%;
    }
}
/* Second section completed */
/* Service section Started */
#service{
    width: 100%;
    padding: 70px 0;
    background: rgba(16, 105, 77, 0.173);
}

.service-box{
    width:80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}

.single-service{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff; 
    position: relative;
}
.single-service img{
    width: 100%;
    border-radius: 7px;
}
.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5), #b8dbd7);
    opacity: 0;
    transition: 1s;
}
.single-service:hover .overlay{
    opacity: 1;
}
.service-desc{
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 1s;
}
hr{
    background: #3e1d1d;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}
.service-desc p{
    font-size: 14px;
}
.single-service:hover .service-desc{
    bottom: 40%;
    opacity: 1;
}

@media screen and (max-width:770px){
    .single-service{
        flex-basis: 100%;
        margin-bottom: 30px;  
    }
    .service-desc p{
        font-size: 12px;
    }
    hr{
        margin: 5px auto;
    }
    .single-service:hover .service-desc{
        bottom: 25% !important;
    }
}
/* Service section completed */
/* Testimonial Section Starts Here */

#testimonial{
    width: 100%;
    padding: 70px 0;

}
.testimonial-row{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.testimonial-col{
    flex-basis: 28%;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 20px 3px #02a090;
    cursor: pointer;
    transition: transform .5s ease;
}
.testimonial-col p{
    font-size: 14px;
}
.user{
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.user img{
    width: 40px;
    margin-right: 20px;
    border-radius: 3px;
}
.user-info .fa{
    margin-left: 10px;
    color: #27c0ff;
    font-size: 20px;
}
.user-info small{
    color: #b9d3d0;
}
.testimonial-col:hover{
    transform: translateY(-7px);
}
@media screen and (max-width:770px){
    .testimonial-col{
        flex-basis: 100%;
    }
}
/* Testimonial Section Ends */
/* Footer starts here */
#footer{
    padding: 100px 0 20px;
    background: #efefef;
    position: relative;

}
.footer-row{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left, .footer-right{
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;

}
.footer-right{
    text-align: right;
}
.footer-row h1{
    margin: 10px 0;
}
.footer-row p{
    line-height: 35px;
}
.footer-left .fa, .footer-right .fa{
    font-size: 20px;
    color: #ddf7f5;
    margin: 10px;  
}
.footer-img{
     max-width: 370px;
     opacity: 0.1;
     position: absolute;
     left: 50%;
     top: 35%;
     transform: translate(-50%,-50%);
}
.social-links{
    text-align: center;
}
.social-links .fa{
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid #d0fdf9;
    margin: 40px 5px 0;
    color: #a4e1db;
    cursor: pointer;
    transition: .5s;   
}

.social-links .fa:hover{
    background: #b6dbd8;
    color: #fff;
    transform: translateY(-7px);
}
.social-links p{
    font-size: 12px;
    margin-top: 20px;
}
@media screen and (max-width:770px){
    .footer-left, .footer-right{
        flex-basis: 100%;
        font-size: 14px;
    }
    .footer-img{
        top: 25%;
    }
}

/* preloader */
#preloader{
    background: #000 url("images/loader.gif") no-repeat center center;
    background-size: 15%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

.logo {
    width: 320%; /* Adjust this percentage to your preference */
    height: auto;
    /* Other CSS properties as needed */
}

.logo {
    width: 310px; /* Adjust the pixel value as needed */
    height: auto;
}



.ribbon {
    background: rgba(14, 13, 13, 0.5); /* Transparent white background */
    padding: 10px; /* Adjust as needed */
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center; /* Center the logo vertically */
    width: 100%; /* Full width of the banner */
    /* Additional styling as needed */
}



.logo-image {
    width: 120px; /* Adjust as needed */
    height: auto; /* Keeps the aspect ratio */
}

.header-top-list {
    display: flex;
    /* Add any additional styling for your list here */
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 0 15px;
}

.header {
    background: rgba(255, 250, 242, 0.918); /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Glass effect */
    box-shadow: 0 4px 6px rgba(10, 240, 167, 0.502); /* Subtle shadow for depth */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo-image {
    height: 90px; /* Adjust as needed */
}

/* Header Top List Styles */
.header-top-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.header-top-item {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Space between items */
}

.item-title, .item-link, .item-text {
    margin-left: 5px; /* Space after icon */
    color: #333; /* Dark text for readability */
}

/* Icons */
ion-icon {
    font-size: 20px; /* Adjust icon size */
    color: #007bff; /* Icon color */
}

/* Link Styling */
.item-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.item-link:hover {
    text-decoration: underline;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    .header-top-item {
        margin-bottom: 10px;
    }
}


/* Pop-up modal style */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close-button {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
#testimonial {
    position: relative;
    overflow: hidden;
}

.background-gif-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-gif {
    background-image: url('images/Tutor.gif'); /* Replace with the correct path to your GIF */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
    animation: gifAnimation 20s infinite; /* Adjust animation duration as needed */
}

@keyframes gifAnimation {
    0% { transform: scale(1.2); }
    50% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

/* Your existing styles for testimonial content here */
#testimonial {
    color: rgb(18, 174, 161);
}

#testimonial h1, 
#testimonial h4, 
#testimonial p {
    color: white;
}

#testimonial h4 {
    color: rgb(225, 160, 20);
}

#testimonial p {
    color: #02a090;;
}

.background-gif-container {
    /* Adjust the background color to a dark shade with some transparency */
    background-color: rgba(0, 0, 0, 0.6); /* This is a black background with 60% opacity */

    /* Adding blur to the background elements */
    backdrop-filter: blur(10px);

    /* Optional: border-radius for rounded corners and a border if needed */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* White border with 30% opacity */

    /* Optional: A box-shadow for better depth */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#service {
    position: relative;
    overflow: hidden; /* Ensures the pseudo-element does not extend outside the section */
}

#service::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        rgba(0, 123, 255, 0.5), /* Adjust the color and opacity here */
        rgba(0, 123, 255, 0.5)  /* Adjust the color and opacity here */
    ), url('images/x.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(2px); /* Adjust blur level */
    z-index: -1;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4), 
        rgba(10, 9, 9, 0.4)
    ), url('images/x.jpg');
    filter: blur(2px) sepia(0.2) saturate(1.5); /* Combine different filters */
}

#service h1 {
    color: white; /* This sets the color of h1 elements to white */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.header {
    position: fixed; /* Makes the header stay in place */
    top: 0; /* Aligns the header at the top of the viewport */
    width: 100%; /* Ensures the header stretches across the full width */
    z-index: 10; /* Keeps the header above all other content */
    background-color: #ffffff; /* Optional: Set a background color */
}

.footer {
    background-color: #f1f1f100;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
    color: #ffe5e5;
}

.footer .social-links {
    text-align: center;
    padding: 10px 0;
}

.footer .social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #fffdfd; /* Change this color as per your design */
    font-size: 24px; /* Adjust the size as needed */
}

.footer .social-links a:hover {
    color: #007bff; /* Change hover color as per your design */
}

  /* Mobile-first styles go here */
  @media screen and (max-width: 768px) {
    /* Adjust styles for smaller screens */

    /* Header styles */
    .header-content {
        flex-direction: column;
    }

    .header-top-item {
        margin: 10px 0;
    }

    /* Banner styles */
    #banner .banner-text h1 {
        font-size: 44px;
    }

    /* Features section styles */
    .features {
        flex-basis: 100%;
    }

    .features-img {
        flex-basis: 100%;
    }

    .features-img img {
        width: 100%;
    }

    .features h1 {
        text-align: center;
        margin-bottom: 10px;
    }

    .features-desc {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    /* Service section styles */
    #service .title-text h1 {
        font-size: 35px;
    }

    .single-service {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .service-desc p {
        font-size: 12px;
    }

    hr {
        margin: 5px auto;
    }

    .single-service:hover .service-desc {
        bottom: 25% !important;
    }

    /* Testimonial section styles */
    .testimonial-col {
        flex-basis: 100%;
    }

    .testimonial-col p {
        font-size: 14px;
    }

    /* Footer section styles */
    .footer-left, .footer-right {
        flex-basis: 100%;
        font-size: 14px;
    }

    .footer-img {
        top: 25%;
    }
}



/* Add your existing styles here */

/* Media queries for mobile phones */
@media screen and (max-width: 768px) {
    /* General mobile styles */

    /* Reset font size for the whole page */
    body {
        font-size: 16px;
    }

    /* Banner styles */
    #banner .banner-text h1 {
        font-size: 30px; /* Decrease font size for mobile */
        padding-top: 80px; /* Adjust spacing */
    }

    .banner-text p {
        font-size: 16px; /* Decrease font size for mobile */
    }

    .banner-btn a {
        width: 120px; /* Adjust button width */
        font-size: 14px; /* Decrease font size for mobile */
        padding: 8px 0; /* Adjust button padding */
    }

    /* Features section styles */
    .title-text h1 {
        font-size: 35px; /* Decrease font size for mobile */
        padding-bottom: 30px; /* Adjust spacing */
    }

    .features h1 {
        font-size: 24px; /* Decrease font size for mobile */
    }

    .features-desc {
        margin-bottom: 20px; /* Adjust spacing */
    }

    .feature-icon .fa {
        width: 40px;
        height: 40px;
        font-size: 24px; /* Decrease icon size for mobile */
        line-height: 40px;
    }

    .feature-text p {
        font-size: 14px; /* Decrease font size for mobile */
        padding: 0 10px; /* Adjust padding */
    }

    /* Service section styles */
    #service .title-text h1 {
        font-size: 30px; /* Decrease font size for mobile */
        padding-bottom: 20px; /* Adjust spacing */
    }

    .single-service p {
        font-size: 12px; /* Decrease font size for mobile */
    }

    hr {
        margin: 5px auto;
        width: 40%; /* Adjust line width for mobile */
    }

    /* Testimonial section styles */
    .testimonial-col p {
        font-size: 14px; /* Decrease font size for mobile */
    }

    /* Footer section styles */
    .footer-left, .footer-right {
        font-size: 14px; /* Decrease font size for mobile */
    }

    .footer-img {
        max-width: 250px; /* Adjust image size for mobile */
        top: 20%; /* Adjust image position */
    }

    .social-links .fa {
        height: 30px;
        width: 30px;
        font-size: 18px; /* Decrease icon size for mobile */
        line-height: 30px;
        margin: 30px 5px 0; /* Adjust margin for mobile */
    }

    .footer p {
        margin: 0;
    }

    .footer .social-links p {
        font-size: 12px; /* Decrease font size for mobile */
        margin-top: 15px; /* Adjust spacing */
    }

    /* Add any additional mobile styles here */

}


/* Header styles for all devices */
.header {
    position: fixed; /* Keeps the header at the top */
    top: 0;
    width: 100%; /* Full width */
    z-index: 10; /* Above other content */
    background-color: #ffffff; /* Optional background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo-image {
    height: auto;
    max-height: 90px; /* Adjust as needed */
    width: auto;
}

/* Header Top List Styles */
.header-top-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.header-top-item {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Space between items */
}

.item-title, .item-link, .item-text {
    margin-left: 5px; /* Space after icon */
    color: #333; /* Dark text for readability */
}

/* Icons */
ion-icon {
    font-size: 20px; /* Adjust icon size */
    color: #007bff; /* Icon color */
}

/* Link Styling */
.item-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.item-link:hover {
    text-decoration: underline;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 750px) {
    .header-content {
        flex-direction: column;
    }

    .header-top-item {
        margin-bottom: 10px; /* Spacing between items in column layout */
    }

    .logo-image {
        max-height: 60px; /* Smaller logo for mobile */
    }
}


/* Media Queries for Responsive Design */
@media screen and (max-width: 750px) {
    .header-content {
        flex-direction: column;
    }

    .header-top-item {
        margin-bottom: 10px; /* Spacing between items in column layout */
    }

    .logo-image {
        max-height: 60px; /* Smaller logo for mobile */
    }

    /* Adjusting font size for header descriptions */
    .item-title, .item-link, .item-text {
        font-size: 7px; /* Smaller font size for mobile */
    }
}


.background-gif-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-gif {
    background-image: url('images/Tutor.gif'); /* Replace with the correct path to your GIF */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
    animation: gifAnimation 20s infinite; /* Adjust animation duration as needed */
}

@keyframes gifAnimation {
    0% { transform: scale(1.2); }
    50% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

 /* Add hover animation for dropdown */
 .dropdown:hover .dropdown-content {
    display: block;
}


/* Style for dropdown menu */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #009687;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
        }

        /* Style for dropdown items */
.dropdown-content li {
    padding: 1px 16px; /* Slightly reduced top and bottom padding */
    font-size: 10px; /* Adjust the font size as needed */
    text-decoration: none;
    display: block;
    cursor: pointer;
}

        
        /* Add underline effect on hover and selected item */
        .dropdown-content li:hover,
        .selected {
            border-bottom: 2px solid rgb(255, 145, 0); /* Change the color as desired */
        }

        /* General styling for the modal background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* High z-index to ensure it's on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.5); /* Black with opacity */
}

/* Modal Content Box with glass effect */
.modal-content {
    background: rgba(255, 255, 255, 0.2);  
    backdrop-filter: blur(10px);
    margin: 10% auto; /* Adjusted to 10% from the top and centered */
    padding: 40px; /* Spacious padding for aesthetic */
    border-radius: 10px; /* Rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 50%; /* Adjust width as needed */
    max-width: 600px; /* Maximum width */
    color: white; /* Set text color to white */
}

/* Close button styling */
.close {
    color: white; /* Make close button white */
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #ddd; /* Slightly darker white on hover/focus */
    text-decoration: none;
}

/* Form heading */
.modal-content h2 {
    text-align: center;
    margin-bottom: 30px; /* Spacing below the heading */
}

/* Form field styling */
.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Spacing between fields */
}

/* Label styling */
.modal-content label {
    font-size: 16px;
}

.modal-content input[type=text],
.modal-content input[type=email],
.modal-content select {
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
    background: rgb(255, 255, 255); /* Slightly opaque white */
    color: black; /* Set input text color to black */
}


/* Checkbox label alignment */
.modal-content label[for=infoTech],
.modal-content label[for=communication],
.modal-content label[for=marketing] {
    display: block;
    margin-top: 0.5em;
}

/* Checkbox and label grouping */
.modal-content fieldset {
    border: none;
    padding: 0;
}

/* Submit button styling */
.modal-content input[type=submit] {
    padding: 15px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    background-color: #009687; /* Green background */
    color: white; /* Make submit button text white */
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-content input[type=submit]:hover {
    background-color: #45a049;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .modal-content {
        width: 80%;
        padding: 20px;
        margin-top: 20%;
    }
}


.refresh {
    cursor: pointer;
    position: absolute;
    right: 40px; /* Adjust as necessary */
    top: 10px; /* Adjust as necessary */
    font-size: 24px; /* Adjust as necessary */
}


/* CSS to underline the "Visit our Shop" link */
.underlined {
    text-decoration: underline;
}

/* Horizontal Scroller Styling */
#horizontal-scroller {
    padding: 20px 0; /* Adjust padding to control space above and below the scroller */
}

#horizontal-scroller .horizontal-scroller {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    margin: 0 auto; /* Centering the scroller */
}

#horizontal-scroller .scroll-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    width: 200px; /* Adjust the width based on your design */
    min-height: 250px; /* Adjust the height as needed */
}

/* Card Styling */
.card {
    background-color: #fff; /* Background color of the card */
    border: 1px solid #ddd; /* Border color */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Shadow for depth */
    width: 100%; /* Card width */
    padding: 15px;
    box-sizing: border-box; /* Ensures padding doesn't affect overall width */
}

.card-header {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center; /* Center align the header */
}

.card-body {
    font-size: 14px;
    text-align: center; /* Center align the body text */
}

@keyframes scrollLeft {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}


.horizontal-scroller {
    /* ... other styles ... */
    animation: scrollLeft 15s linear infinite;
}

/* Pause the animation when hovering over a scroll item */
.scroll-item:hover {
    animation-play-state: paused;
}

/* Ensure the animation also pauses when hovering over any part of the scroller */
.horizontal-scroller:hover {
    animation-play-state: paused;
}


/* Card Styling */
.card {
    background-color: #fff; /* Background color of the card */
    border: 1px solid #ddd; /* Border color */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Shadow for depth */
    width: 100%; /* Card width */
    padding: 15px;
    box-sizing: border-box; /* Ensures padding doesn't affect overall width */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes space inside the card */
    overflow: hidden; /* Prevents content from protruding outside */
    height: 100%; /* Full height of scroll item */
}

.card-header {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center; /* Center align the header */
    font-weight: bold;
}

.card-body {
    font-size: 14px; /* Adjust for the best readability */
    text-align: justify; /* Justifies the text for better readability */
    overflow-y: auto; /* Enables scroll if content is too long */
}

/* Card Image Styling */
.card-image {
    width: 100%; /* Make the image fill the card's width */
    height: auto; /* Maintain the image's aspect ratio */
    display: block; /* Ensure the image is a block-level element */
    margin: 0 auto; /* Center the image */
    border-radius: 5px; /* Optional: Rounded corners to match the card's style */
}

/* Card Styling for Glassmorphism */
.card {
    background-color: rgba(255, 255, 255, 0.7); /* White background with transparency */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for depth */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(10px); /* Blur effect */
}

.card-header, .card-body {
    color: #333; /* Adjust text color for better readability */
}

.card-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.card-header {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.card-body {
    font-size: 14px;
    text-align: justify;
}

/* Static Label Styling */
.static-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background-color: #333;
    color: white;
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    left: 10px; /* Adjust as needed */
    top: 50%;
    transform: translate(0, -50%) rotate(180deg);
    z-index: 10;
    border-radius: 5px;
}

#horizontal-scroller {
    position: relative; /* For absolute positioning of the label */
    padding-left: 60px; /* Space for the static label */
}

.horizontal-scroller {
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
    z-index: 1; /* Ensure scroller is below the static label */
}

.scroll-item {
    display: inline-block;
    /* Rest of your scroll item styles */
}

/* Ensure the rest of your card styles are unchanged */


.clients {
    text-align: center; /* Ensures the "Our Clients" heading is centered */
    flex: 1; /* Keep this to ensure the container takes appropriate space */
    padding: 20px; /* Provides padding around the container */
}

.client-logos {
    display: flex;
    justify-content: center; /* Centers logos horizontally */
    align-items: center; /* Align logos vertically in the center */
    flex-wrap: nowrap; /* Prevents logos from wrapping to the next line */
    overflow-x: auto; /* Allows horizontal scrolling if the container is too small */
    padding: 20px 0; /* Adds padding above and below the logo container */
}

.client-logos img {
    max-height: 200px; /* Controls the size of the logos, adjust as needed */
    width: auto; /* Maintains the aspect ratio of the logos */
    margin: 0 20px; /* Adds horizontal space between logos */
    object-fit: contain; /* Ensures logos fit well within their dimensions */
    filter: blackscale(100%); /* Makes logos black and white */
    transition: filter 0.3s ease; /* Smooth transition for the filter */
}

.client-logos img:hover {
    filter: blackscale(0); /* Reverts to original color on hover */
}


html, body {
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}



