/* 🔹 Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🔹 Navigation Bar */


nav {
    background-color: white;
    color: blue;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: blue;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: lightblue;
}

/* 🔹 Search Bar */
.searchbar {
    padding: 50px;
    text-align: center;
}

.searchbar input {
    width: 60%;
    padding: 12px;
    border-radius: 25px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.searchbar input:focus {
    border-color: blue;
    box-shadow: 0px 0px 8px rgba(0, 0, 255, 0.2);
}

/* 🔹 About Us Section */
.about {
    padding: 50px;
    background: #f9f9f9;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.about img {
    width: 40%;
    border-radius: 10px;
}

.about-text {
    max-width: 500px;
    text-align: center;
}

.about-text h1 {
    font-size: 28px;
    color: #333;
}

.about-text h3 {
    font-size: 20px;
    color: #007bff;
    margin-top: 5px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

/* 🔹 Services Section */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.box {
    width: 280px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.box ul {
    list-style-type: disc !important;
    padding-left: 25px;
    text-align: left;
    margin-top: 10px;
}

/* 🔹 Contact Us Section */
.contact {
    padding: 50px;
    background: #e3f2fd;
    text-align: center;
}

.contact h1 {
    font-size: 28px;
    color: #333;
}

.contact h3 {
    font-size: 20px;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.contact-details a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.map-container {
    margin-top: 20px;
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
    }

    .products {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        flex-direction: column;
    }

    .about img {
        width: 80%;
    }

    .box {
        width: 90%;
    }

    .searchbar input {
        width: 80%;
    }
}
/* 🔹 Contact Us Section */
.contact {
    padding: 60px 20px;
    background: linear-gradient(to right,white, #007bff);
    text-align: center;
    color: black;
    border-radius: 10px;
}

.contact h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact h3 {
    font-size: 22px;
    font-weight: lighter;
    margin-bottom: 30px;
    color: black;
}

/* 🔹 Contact Section Layout */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: auto;
}

/* 🔹 Contact Details Box */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 45%;
}

.contact-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.contact-card i {
    font-size: 24px;
    margin-right: 15px;
    color: #ffeb3b;
}

.contact-card p, .contact-card a {
    font-size: 18px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

/* 🔹 Google Map Container (Side-by-Side) */
.map-container {
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
}

/* 🔹 Responsive Design for Mobile */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-details, .map-container {
        width: 100%;
    }
}

/* 🔹 Sticky Navigation Bar */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* 🔹 Hover Effect for Navigation Links */
nav ul li {
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

nav ul li:hover {
    color: lightblue;
}

/* 🔹 About Section Enhancements */
.about-section {
    padding: 50px 20px;
    background: linear-gradient(to right, #f9f9f9, #e3f2fd);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.about-container img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.about-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 20px;
    color: #007bff;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* 🔹 Contact Section Enhancements */
.contact {
    padding: 60px 20px;
    background: linear-gradient(to right, #007bff, #00bcd4);
    color: white;
    text-align: center;
    border-radius: 10px;
    margin: 20px auto;
}

.contact h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact h3 {
    font-size: 22px;
    font-weight: lighter;
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 45%;
}

.contact-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-card i {
    font-size: 24px;
    margin-right: 15px;
    color: white;
}

.contact-card p, .contact-card a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.map-container {
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
}

@media (max-width: 768px) {
    /* Navigation Bar */
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    /* About Section */
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-container img {
        width: 80%;
    }

    /* Services Section */
    .products {
        flex-direction: column;
        align-items: center;
    }

    .box {
        width: 90%;
    }

    /* Contact Section */
    .contact-container {
        flex-direction: column;
    }

    .contact-details, .map-container {
        width: 100%;
    }
}
/* 🔹 Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* 🔹 Navigation Bar */
nav {
    background-color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #007bff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    border: 2px solid #007bff;
}

nav ul li a:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
}

/* 🔹 Home Section */
.home-section {
    height: 100vh; /* Full viewport height */
    background-image: url('img/background.jpg'); /* Add your background image path */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.home-content {
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    border-radius: 10px;
}

.home-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.home-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.home-content .btn {
    text-decoration: none;
    color: white;
    background-color: #007bff;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.home-content .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .home-content h1 {
        font-size: 36px;
    }

    .home-content p {
        font-size: 18px;
    }

    .home-content .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* 🔹 Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* 🔹 Home Section */
.home-section {
    height: 100vh; /* Full viewport height */
    background-image: url('img/website-hosting.jpg'); /* Add your background image path */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative; /* For overlay positioning */
}

/* 🔹 Overlay for Better Readability */
.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent black overlay */
    z-index: 1;
}

/* 🔹 Home Content */
.home-content {
    position: relative; /* Ensures content is above the overlay */
    z-index: 2; /* Places content above the overlay */
    max-width: 800px;
    padding: 20px;
}

.home-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase; /* Uppercase title */
    letter-spacing: 2px; /* Adds spacing between letters */
}

.home-content p {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300; /* Lighter font weight for subtitle */
}

.home-content .btn {
    text-decoration: none;
    color: white;
    background-color: #007bff;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.home-content .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
    .home-content h1 {
        font-size: 36px;
    }

    .home-content p {
        font-size: 18px;
    }

    .home-content .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* Footer Styling */

.footer-container{
    background-image: url(img/FT.jpg);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 14px;
    margin: 5px 0;
}

/* Social Media Icons */
.footer-social {
    margin-top: 10px;
}

.footer-social p {
    font-size: 16px;
    margin-bottom: 5px;
}

.social-icon {
    display: inline-block;
    font-size: 30px;
    color: white;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icon:hover {
    color: #0004ff; /* Hover Color */
    transform: scale(1.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
}
/* General button styles */
button {
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 25px;
    color: white;
    background-color: #007bff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

/* Button hover effect */
button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
}

/* Home Section */
.home-section {
    display: flex;  
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background-image: url('img/website-hosting.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-content {
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.home-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: white;
}

.home-content p {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
    color: white;
}

.home-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.home-buttons button {
    padding: 10px 25px;
    font-size: 18px;
}

/* Services Section */
.services-section {
    padding: 50px 0;
    text-align: center;
    background-color: #f4f4f4;
}

.services-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.services-buttons button {
    padding: 12px 30px;
    font-size: 18px;
}

/* About Section */
.about-section {
    padding: 50px 0;
    text-align: center;
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-buttons button {
    padding: 12px 30px;
    font-size: 18px;
}

/* Contact Section */
.contact-section {
    padding: 50px 0;
    text-align: center;
    background-color: #3765fc;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-buttons button {
    padding: 12px 30px;
    font-size: 18px;
}

/* Responsive Design for Buttons */
@media (max-width: 1024px) {
    /* Adjust buttons for medium screens like tablets */
    .home-buttons button, .services-buttons button, .about-buttons button, .contact-buttons button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* Adjust buttons for small screens like phones */
    .home-buttons button, .services-buttons button, .about-buttons button, .contact-buttons button {
        padding: 10px 20px;
        font-size: 14px;
        width: 80%; /* Make buttons take up more width on mobile */
    }

    /* Stack buttons vertically in smaller screens */
    .home-buttons, .services-buttons, .about-buttons, .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* For very small screens like portrait phones */
    .home-buttons button, .services-buttons button, .about-buttons button, .contact-buttons button {
        padding: 10px 15px;
        font-size: 14px;
        width: 90%; /* Buttons take almost full width */
    }
}
/* General Button Styles */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.nav-buttons a {
    text-decoration: none;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 25px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}

/* Hover Effect */
.nav-buttons a:hover {
    background-color: white;
    color: #007bff;
    border: 2px solid #007bff;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-buttons a {
        width: 80%;
        text-align: center;
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .nav-buttons a {
        width: 90%;
        font-size: 14px;
        padding: 8px 15px;
    }
}


.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li {
    display: inline;
}



.menu-icon {
    font-size: 30px;
    color: rgb(47, 51, 164);
    cursor: pointer;
    display: none;
    position: absolute;  /* Make sure it's positioned */
    top: 20px;  /* Adjust for desired top margin */
    right: 20px;
}

#menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        position: absolute;
        top: 70px;
        right: 20px;
        /* left: 0; */
        /* text-align: center; */
    }

    .menu li {
        padding: 10px;
    }

    .menu-icon {
        display: block;
    }

    #menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }
}/*  */


/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #005bb5;
    padding: 10px 20px;
    background: #fff;
    border-radius: 8px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #003f80;
}

/* Sections */
section {
    padding: 50px 20px;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0073e6 ;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn:hover {
    background: #005bb5;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 10px 0;
    }
    section {
        padding: 30px 10px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px;
    }
    nav ul li a {
        padding: 8px 16px;
        font-size: 14px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* Default style for desktop (will show the original image) */
.responsive-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mobile-specific style (this will apply when screen width is 768px or less) */
@media (max-width: 768px) {
    .responsive-image {
        max-width: 100%;
        width: auto;
    }
}
/* Default styles for desktop and larger screens */
.home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full screen height */
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

.home-content {
    max-width: 600px; /* Limit content width */
    padding: 20px;
}

.home-content h1 {
    font-size: 3rem; /* Default font size for desktop */
    margin-bottom: 20px;
}

.home-content p {
    font-size: 1.25rem; /* Default paragraph font size */
    margin-bottom: 30px;
}

.home-content .btn {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .home-section {
        flex-direction: column; /* Stack content vertically on small screens */
        text-align: center;
        height: auto;
        padding: 20px;
    }

    .home-content {
        width: 100%; /* Use full width on mobile */
        padding: 20px;
    }

    /* Adjust heading font size for mobile */
    .home-content h1 {
        font-size: 2.2rem; /* Make font smaller for mobile */
        margin-bottom: 15px;
    }

    /* Adjust paragraph font size for mobile */
    .home-content p {
        font-size: 1rem; /* Adjust for readability */
        margin-bottom: 20px;
    }

    /* Adjust button size for mobile */
    .home-content .btn {
        font-size: 1rem; /* Keep button font size consistent */
        padding: 12px 25px;
    }
}
html {
    scroll-behavior: smooth;
}

.menu-icon {
    margin-top: 14px;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Testimonial Section Styles */
.testimonial-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 2.5em;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px;
    scroll-snap-align: start;
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    min-height: 400px;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: -60px auto 20px;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.client-name {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-align: center;
}

.client-role {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-button {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-button:hover {
    transform: scale(1.1);
}

/* Footer Styles */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-nav {
    margin-top: 20px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9em;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .testimonial-card {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    
    .site-footer {
        padding: 60px 0;
    }
}
/* Remove borders from entire navigation bar and its elements */
.header nav,
.header nav img,
.menu-icon,
.menu,
.menu li,
.menu a {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Specific styling for navigation elements */
.header nav {
    background: transparent; /* Or your preferred background color */
    padding: 10px 20px;
}

/* Remove any default list styling */
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Style menu links */
.menu a {
    text-decoration: none;
    color: #333; /* Your preferred text color */
    padding: 10px 15px;
    display: block;
}

/* Remove focus states */
#menu-toggle:focus,
.menu a:focus {
    outline: none !important;
}

/* Hover effects (optional) */
.menu a:hover {
    background-color: rgba(0,0,0,0.1); /* Optional hover effect */
}
/* Testimonial Section Styles */
.testimonial-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.testimonial-card {
    min-width: calc(25% - 15px);
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.client-name {
    font-size: 1.2rem;
    margin: 10px 0 5px;
    color: #333;
}

.client-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-top: 10px;
}

.slider-nav {
    margin-top: 30px;
}

.nav-button {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.nav-button:hover {
    background: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(33.33% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 100%;
    }
}