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

/* ---------------- Desktop Header (remains the same) ---------------- */
/* ========== HEADER DESKTOP STYLING ========== */

.navbar {
  background-color: #f9f9f9 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand img {
  max-height: 60px;
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #000 !important;
  font-weight: 600;
  padding: 10px 15px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #1abc9c !important;
}

/* Sign In button (nav item only) */
.navbar-nav .nav-item.sign-in > .nav-link {
  background-color: #007BFF; /* Bootstrap Blue */
  color: #fff !important;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

/* Hover effect for Sign In */
.navbar-nav .nav-item.sign-in > .nav-link:hover {
  background-color: #28a745; /* Bootstrap Green */
  color: #fff !important;
}
/* Add horizontal spacing between header buttons */
.navbar-nav .nav-item {
  margin-right: 12px; /* You can adjust this value */
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 0;
  min-width: 240px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.dropdown-menu .dropdown-item {
  color: #333;
  font-weight: 500;
  padding: 10px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #1abc9c;
  color: #fff;
}

/* Show dropdown on hover (only desktop) */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ========== MOBILE HEADER ADJUSTMENTS ========== */
@media (max-width: 991px) {
  .navbar {
    padding: 10px 15px;
  }

  .navbar-brand img {
    max-height: 50px;
  }

  .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    border: none;
    margin: 0;
    border-radius: 0;
    background-color: #f9f9f9;
  }

  .dropdown-menu .dropdown-item {
    padding: 12px 16px;
    color: #333;
  }

  .dropdown-menu .dropdown-item:hover {
    background-color: #1abc9c;
    color: #fff;
  }
}

/* Ensure black navbar toggler icon across all pages */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
}

.navbar-toggler {
  border: 1px solid rgba(0, 0, 0, 0.2); /* Optional: light border for better visibility */
}

 .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
  }

  .navbar-toggler {
    border-color: #000; /* Optional: makes the border visible */
  }


/* ---------------- DESKTOP STYLE (default) ---------------- */

/* ---------------- DESKTOP STYLE (default) ---------------- */
.slideshow {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide:first-child {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    text-align: left;
}

.text h2 {
    font-size: 36px;
    margin: 0 0 10px;
}

.text p {
    font-size: 24px;
    margin: 0 0 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #218838;
}

/* ---------------- SERVICES SECTION ---------------- */
.services {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.service {
    flex: 0 0 30%;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    box-sizing: border-box;
}

.service img {
    width: 50px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 24px;
    margin: 0 0 10px;
}

.service p {
    font-size: 16px;
    margin: 0 0 20px;
}

.service .button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.service .button:hover {
    background-color: #218838;
}

/* ---------------- MOBILE breakpoint adjustments ---------------- */
@media (max-width: 768px) {
    /* Slideshow adjustments */
    .slideshow {
        height: 400px;
        margin-top: 60px;
    }

    .slide {
        display: block;
        position: relative;
        height: 100%;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .text {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -20%);
        width: 90%;
        background: rgba(0, 0, 0, 0.5);
        text-align: center;
        padding: 15px;
        border-radius: 8px;
    }

    .text h2 {
        font-size: 22px;
    }

    .text p {
        font-size: 14px;
    }

    .button {
        padding: 8px 16px;
        font-size: 14px;
    }

    /* Services adjustments for mobile */
    .service-container {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .service {
        flex: 1 0 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
        padding: 20px;
        text-align: center;
        box-sizing: border-box;
    }

    .service img {
        margin: 0 auto 15px;
    }

    .service h3 {
        font-size: 20px;
    }

    .service p {
        font-size: 14px;
        padding: 0 10px;
    }

    .service .button {
        padding: 8px 16px;
        font-size: 14px;
    }
}


.connect-section {
    background-color: #f8f9fb;
    padding: 10px 10px;
    font-family: 'Arial', sans-serif;
}

.connect-section h2 {
    text-align: center;
    font-size: 40px;
    color: #333;
    margin-bottom: 10px;
}

.connect-section h2 span {
    color: #0073e6;
}

.connect-section .subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

.connect-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 60px;
    overflow: hidden;
}

.connect-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.connect-content.reverse {
    flex-direction: row-reverse;
}

.connect-text {
    flex: 1;
    padding: 40px;
}

.connect-text h3 {
    color: #0073e6;
    font-size: 28px;
    margin-bottom: 20px;
}

.connect-text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.connect-text ul {
    padding-left: 20px;
}

.connect-text ul li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.connect-text a {
    color: #0073e6;
    text-decoration: underline;
}

.connect-image {
    flex: 1;
    text-align: center;
}

.connect-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.app-buttons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}
.app-buttons img {
    height: 50px;
    transition: transform 0.2s ease;
}
.app-buttons img:hover {
    transform: scale(1.05);
}


/* Mobile View Styling for Connect Section */
@media only screen and (max-width: 768px) {
    .connect-section h2 {
        font-size: 28px;
    }

    .connect-section .subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .connect-content {
        flex-direction: column !important;
        text-align: center;
    }

    .connect-text {
        padding: 20px;
    }

    .connect-text h3 {
        font-size: 24px;
    }

    .connect-text p,
    .connect-text ul li {
        font-size: 15px;
    }

    .connect-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .connect-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 0;
    }

    .connect-card {
        margin-bottom: 40px;
        border-radius: 12px;
    }
}


.testimonials {
    background-color: #f0f8ff;
    padding: 10px 10px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.testimonial {
    flex: 0 0 45%;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-left: 6px solid #3498db;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    box-sizing: border-box;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 18px;
    color: #34495e;
    margin: 0 0 15px;
}

.testimonial cite {
    font-size: 16px;
    color: #3498db;
    font-weight: bold;
    display: block;
    text-align: right;
}

.testimonial::before {
    content: open-quote;
    font-size: 50px;
    color: #e74c3c;
    position: absolute;
    top: -10px;
    left: 20px;
}

.testimonial::after {
    content: close-quote;
    font-size: 50px;
    color: #e74c3c;
    position: absolute;
    bottom: -10px;
    right: 20px;
}

/* Mobile View Styling for Testimonials Section */
@media only screen and (max-width: 768px) {
    .testimonials h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
        padding: 20px;
    }

    .testimonial blockquote {
        font-size: 16px;
    }

    .testimonial cite {
        font-size: 14px;
    }

    .testimonial::before,
    .testimonial::after {
        font-size: 40px;
        top: -10px;
        left: 10px;
        bottom: -10px;
        right: 10px;
    }
}


.clients {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.clients h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.client-slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slide-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 30s linear infinite;
}

.client-slideshow img {
    width: 150px;
    height: auto;
    margin: 0 15px;
}

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

/* Mobile View Styling for Clients Slideshow */
@media only screen and (max-width: 768px) {
    .clients h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .client-slideshow img {
        width: 100px; /* Make images smaller on mobile */
        margin: 0 10px; /* Adjust spacing between logos */
    }

    .slide-track {
        width: calc(120px * 12); /* Adjust track width accordingly */
    }
}
.why-choose-us {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.why-choose-us .content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
}

.why-choose-us .content p {
    margin-bottom: 20px;
}

.why-choose-us .button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 20px;
}

.why-choose-us .button:hover {
    background-color: #c0392b;
}

/* Mobile View Styling for Why Choose Us Section */
@media only screen and (max-width: 768px) {
    .why-choose-us {
        padding: 40px 15px;
    }

    .why-choose-us h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .why-choose-us .content {
        font-size: 16px;
        line-height: 1.5;
    }

    .why-choose-us .button {
        padding: 12px 25px;
        font-size: 16px;
    }
}



}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    background-image: url('https://cdn.pixabay.com/photo/2024/04/05/05/17/business-8676529_1280.jpg');
    background-size: cover;
    background-position: center;
    color: #ecf0f1;
    padding: 40px 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    min-height: 300px; /* Ensure the footer has enough height */
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-container,
.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* Prevents wrapping to the next line */
    align-items: flex-start; /* Aligns the items at the start */
    gap: 20px; /* Optional: Adds space between columns */
}

.footer-column {
    flex: 1; /* Each column will take up equal space */
    min-width: 0; /* Prevent columns from exceeding the container width */
    margin-right: 20px; /* Adds some space between columns */
}

.footer-column:last-child {
    margin-right: 0; /* Removes the margin from the last column */
}


.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #e74c3c;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    margin-right: 10px;
}

.social-media img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom p a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-bottom p a:hover {
    color: #e74c3c;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 30px 15px;
        min-height: auto;
        text-align: center;
    }

    .footer-logo {
        max-width: 180px;
        margin: 0 auto 20px auto;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-column {
        margin-right: 0;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

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

    .social-media {
        margin-top: 15px;
    }

    .social-media img {
        width: 20px;
        height: 20px;
    }
}


