* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
/* Top Info Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #e2dede;
    color: #b11475;
    font-size: medium;
    font-weight: 550;
}

/* Left, Center, and Right sections of the bar */
.top-left, .top-center, .top-right {
    display: flex;
    align-items: center;
}

.top-left i, .top-center i, .top-right i, .top-social i {
    margin-right: 5px;
}

/* Social Media Icons */
.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    font-size: 165rem; /* Icon size */
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Circular shape */
    background-color: #fff; /* White circle */
    color: #fff; /* Default icon color */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Center the icon inside the circle */
.top-social a i {
    font-size: 0.9rem; /* Adjust icon size */
    margin-right: 1px;
}

/* Specific Icon Colors */
.top-social a.facebook {
    background-color: #1877F2; /* Facebook blue */
    color: #fff; /* Icon color */
}

.top-social a.tiktok {
    background-color: #010101; /* TikTok black */
    color: #fff; /* Icon color */
}

.top-social a.whatsapp {
    background-color: #25D366; /* WhatsApp green */
    color: #fff; /* Icon color */
}

/* Icon Hover Effect */
.top-social a:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}
/* Remove underline from anchor tags */
.top-social a {
    text-decoration: none;
}


/* Mobile Responsive: Stacked layout */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .top-left, .top-center, .top-right, .top-social {
        margin-bottom: 10px;
    }

    .top-social {
        flex-direction: row;
        justify-content: center;
    }
    /* Remove underline from anchor tags */
.top-social a {
    text-decoration: none;
}

}

/* Navbar Styles */
nav {
    background: linear-gradient(to right, #b11475, #0cb5db);
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* ensures it stays on top of other elements */
}
.logo-container img {
    width: 305px;
    height: 70px;
}

/* Navigation Menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight:550;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
    
}

/* Hamburger Menu */
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
z-index: 20;
margin-left: auto;
}

.hamburger div {
width: 25px;
height: 3px;
background-color: white;
margin: 4px;
transition: 0.4s;
}

/* Navigation Menu */
.nav-links {
list-style: none;
display: flex;
gap: 50px;
position: absolute;
top: 8px;
right: 0;
padding: 20px;
border-radius: 8px;
z-index: 15; /* Above the image, below hamburger */
}


.nav-links a:hover {
color: red;
}

/* Mobile Menu */
@media (max-width: 768px) {
.nav-links {
flex-direction: column;
align-items: center;
gap: 20px;
width: 200px;
height: 100vh;
position: fixed;
top: 0;
right: 0;
transform: translateX(100%);
transition: transform 0.5s;
}

.hamburger {
display: flex;
}

.nav-links.open {
transform: translateX(0);
background: #b11475;
}
}
/* Image Section with Fade and Text Overlay */
.image-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}
.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(90%);
    transition: filter 1s ease;
}
.image-section img:hover {
    filter: brightness(70%);
}
/* Text Overlay */
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}
.text-overlay h1 {
    color: linear-gradient(to right,  #b11475, #0cb5db);
    font-family: 'Montserrat', sans-serif;
    font-size: 3.0rem;
    margin-bottom: 10px;
    
}
.text-overlay p {
    font-size: 1.2rem;
}
/* Optional dark overlay for better text visibility */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adds a dark, semi-transparent overlay */
    z-index: 1;
}
/* About Us Section */
.about-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    position: relative;
}

/* About Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

/* Text Section */
.about-text {
    flex: 1;
    min-width: 300px;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.4s ease-in-out;
}

.about-text:hover {
    transform: translateX(10px);
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient( #b11475, #0cb5db); /* Gradient */
    -webkit-background-clip: text; /* Clip background to text */
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
}

/* Image Slider */
.image-slider {
    flex: 1;
    overflow: hidden;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Slide Animation */
.slide-track {
    display: flex;
    animation: slide 12s infinite linear;
}

.slide {
    min-width: 100%;
    transition: transform 1s ease-in-out;
}

.image-slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
}

.image-slider:hover img {
    transform: scale(1.1);
}

/* Sliding Animation */
@keyframes slide {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-100%); }
    50%, 70% { transform: translateX(-200%); }
    75%, 100% { transform: translateX(-300%); }
}

/* Background animation */
@keyframes backgroundShift {
    0% { background-color: #f9f9f9; }
    50% { background-color: #ffe6f0; }
    100% { background-color: #f9f9f9; }
}

.about-section:hover {
    animation: backgroundShift 5s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .image-slider {
        width: 100%;
        margin-top: 20px;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1rem;
    }
}

.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #e74c3c; /* Red Button */
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background-color: #c0392b; /* Darker Red on Hover */
}





/* Clients and Success Rate Section */
.clients-success-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Prevents elements from overflowing */
}

/* Hidden class - Initially hidden */
.clients-success-section.hidden {
    opacity: 0;
    transform: translateY(50px);
}

/* Animated classes (applied when section is in view) */
.clients-success-section.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Section Title Animation */
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 1000;
    background: linear-gradient( #b11475, #0cb5db); /* Gradient */
    -webkit-background-clip: text; /* Clip background to text */
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Cards Container Animation */
.cards-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start from below */
    animation: slideUp 1s ease-out forwards;
}

/* Visible class for cards */
.clients-success-section.visible .cards-container {
    opacity: 1;
    transform: translateY(0);
}

/* Card Styles */
.card {
    background-color: #f4f4f4;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    animation: cardAnimation 1s ease-out forwards;
    opacity: 0; /* Starts invisible and fades in */
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover Effects */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Card Title and Text */
.card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #9F2B68;
    font-weight: bold;
}

.card .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0ba9e7;
    margin-bottom: 10px;
    animation: pulse 1.5s infinite ease-in-out;
}

.card p {
    font-size: 1.2rem;
    color: #666;
}

/* Card Image Hover Effect */
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.card img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Keyframe Animations */

/* Fade-In for Section Title */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Slide-Up for Cards Container */
@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for Individual Cards */
@keyframes cardAnimation {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for the Number */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.review-card .stars {
    color: #f5c518; /* golden yellow for stars */
    font-size: 1.5rem;
    margin-bottom: 10px;
}


/* Our Services Section */
.services {
    padding: 60px 20px;
    background: linear-gradient(to right, #ffffff, #849599);
    text-align: center;
}

/* Services Heading */
.services h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out forwards;
    background: linear-gradient(5deg, #b11475, #0cb5db); /* Gradient */
    -webkit-background-clip: text; /* Clip background to text */
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card Container */
.card-container {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-top: 20px;
}

/* Individual Card Styling */
.card {
    background-color: #fff;
    padding: 25px;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    overflow: hidden;
    position: relative;
}

/* Card Hover Effect */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Image Hover Effect */
.card img:hover {
    transform: scale(1.05);
}

/* Card Header */
.card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Icons in Card Header */
.card i {
    font-size: 1.5rem;
    margin-right: 8px;
    color: #0ba9e7; /* A more subtle color */
}


/* Animation: Fade In and Slide Up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        margin-bottom: 30px;
    }

    .services h2 {
        font-size: 2.2rem;
    }
}
/* what-we-provide Section */
.what-we-provide {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

/* what-we-provide Heading */
.what-we-provide h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 1000;
    background: linear-gradient(45deg, #b11475, #0cb5db); /* Gradient */
    -webkit-background-clip: text; /* Clip background to text */
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.image-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 10px;
}

/* Image Item Styling */
.image-item {
    width: 300px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    transform: translateX(-100%);
    animation: slideInLeft 1s ease-out forwards;
}

/* Image Hover Effect */
.image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.1);
}

/* Image Title Styling */
.image-item h3 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 1.4rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    
}

/* Animation for Image Items */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 'Many more demands available' Text Styling */
.more-demands {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.5rem;
    opacity: 0; /* Initially hidden */
    transform: translateY(30px); /* Start from below */
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: linear-gradient(45deg, #b11475, #0cb5db); /* Gradient */
    -webkit-background-clip: text; /* Clip background to text */
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Animation for 'Many more demands available' Text */
.more-demands.visible {
    opacity: 1;
    transform: translateY(0); /* Move to normal position */
}

/* Responsive Design for the Image Items */
@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
        align-items: center;
    }

    .image-item {
        width: 90%;
        margin-bottom: 20px;
    }

    .more-demands p {
        font-size: 1.3rem;
    }
}

/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 60px 20px;
    background: linear-gradient(to right, #0cb5db, #b11475);
    text-align: center;
    color: #fff;
}

.why-choose-us h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    
}

/* Container */
.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Card Styles */
.reason-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    width: 260px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* Icon Styles */
.reason-card i {
    font-size: 55px;
    color: #9F2B68;
    margin-bottom: 18px;
}

/* Heading & Text */
.reason-card h3 {
    font-size: 1.6rem;
    margin: 18px 0;
    color: #9F2B68;
    font-weight: bold;
}

.reason-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reasons-container {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-us h2 {
        font-size: 2.2rem;
    }
}

.client-reviews {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.client-reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    background: linear-gradient( #b11475, #0cb5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.swiper {
    padding-bottom: 50px;
}

.review-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.review-card h3 {
    font-size: 1.5rem;
    color: #9F2B68;
    margin-bottom: 10px;
}

.review-card .position {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.review-card .stars {
    color: #f5c518;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.review-card .review {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: #0ba9e7;
}

.swiper-pagination-bullet {
    background: #0ba9e7;
}



/* Responsive Design */
@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer Section */
.footer {
    background-color: #222;
    color: white;
    padding: 50px 20px 20px;
    text-align: center;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  
  /* Footer Columns */
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6347;
  }
  
  .footer-column p {
    font-size: 1rem;
    line-height: 1.5;
    color: #bbb;
  }
  
  /* Quick Links */
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin: 8px 0;
  }
  
  .footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ff6347;
  }
  
  /* Contact Info */
  .footer-column i {
    margin-right: 10px;
    color: #ff6347;
  }
  
  /* Social Media Icons */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #ff6347;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 10px;
  }
  
  .footer-bottom p {
    font-size: 0.9rem;
    color: #bbb;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      gap: 15px; /* Reduce gap between footer columns */
    }
  
    .footer-column h3 {
      font-size: 1.3rem; /* Reduce font size of column headings on mobile */
    }
  
    .footer-column p {
      font-size: 0.9rem; /* Slightly smaller text on mobile for readability */
    }
  
    .social-icons {
      justify-content: center;
      margin-top: 15px; /* Provide some space between social icons and footer text */
    }
  
    .footer-bottom {
      padding-top: 20px; /* Give more space at the bottom for mobile */
    }
  
    .footer-bottom p {
      font-size: 0.8rem; /* Slightly smaller font for footer bottom text */
    }
  }
  
/* Popup Overlay */
.popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
visibility: hidden;
opacity: 0;
transition: visibility 0s, opacity 0.4s ease;
z-index: 1000;
}

/* Popup Content */
.popup-content {
background: white;
padding: 30px 20px;
border-radius: 12px;
width: 350px;
max-width: 90%;
text-align: center;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
position: relative;
transform: scale(0.5);
transition: transform 0.4s ease;
}

/* Close Button */
.close-btn {
position: absolute;
top: 15px;
right: 20px;
font-size: 2rem;
cursor: pointer;
color: #ff6347;
transition: color 0.3s;
}

.close-btn:hover {
color: #e5533d;
}

/* Form Styling */
.popup-content input,
.popup-content textarea {
width: 100%;
padding: 12px;
margin: 10px 0;
border: 2px solid #ddd;
border-radius: 8px;
outline: none;
transition: border-color 0.3s;
font-size: 1rem;
}

.popup-content input:focus,
.popup-content textarea:focus {
border-color: #ff6347;
}

/* Submit Button */
.popup-content button {
background: linear-gradient(135deg, #ff6347, #ff8267);
color: white;
border: none;
padding: 12px;
width: 100%;
border-radius: 8px;
cursor: pointer;
font-size: 1.2rem;
transition: background 0.3s;
box-shadow: 0 5px 15px rgba(255, 99, 71, 0.2);
}

.popup-content button:hover {
background: linear-gradient(135deg, #ff8267, #ff6347);
box-shadow: 0 8px 20px rgba(255, 99, 71, 0.3);
}

/* Show Popup */
.popup-overlay.show {
visibility: visible;
opacity: 1;
}

.popup-overlay.show .popup-content {
transform: scale(1);
}

/* Animation */
@keyframes popup-appear {
from {
transform: scale(0.5);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
/* Dropdown Styling */
select {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 2px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
font-size: 16px;
color: #333;
box-sizing: border-box; /* Makes sure padding doesn't affect the width */
}

/* Dropdown option styling */
select option {
padding: 10px;
font-size: 16px;
}

/* Focus effect on dropdown */
select:focus {
border-color: #4CAF50;
outline: none; /* Removes the blue outline that appears in some browsers */
background-color: #f1f1f1;
}

/* Adding hover effect */
select:hover {
border-color: #888;
}

/* For better accessibility */
select:invalid {
color: red;
}

