body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-padding {
    padding: 50px 0;
}

.btn-custom {
    background: #449C8B;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px rgb(5, 14, 13);
    z-index: 2; /* Ensure buttons are above canvas */
}

.btn-custom:hover {
    background: rgb(46, 99, 88);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn-custom:hover::after {
    width: 200px;
    height: 200px;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Clients Section Styles */
.our-clients {
    background-color: #e9ecef; /* Light gray background */
    padding: 10px 0;
}

.our-clients h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.client-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 120px; /* Fixed height for single row */
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: marquee 20s linear infinite;
    white-space: nowrap; /* Prevent wrapping */
    width: 200%; /* Double width to ensure all logos fit */
}

.client-logos {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* Explicitly prevent wrapping */
}

.client-logo {
    max-height: 100px; /* Consistent logo size */
    width: auto;
    transition: transform 0.3s ease;
    filter: grayscale(0%);
    margin-left: 50px;
}

.client-logo:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

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

/* Header Styles */
header.sticky-top {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: -10px;
    margin-left: -30px;
}

header .brand-slogan {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    margin-left: -25px;
}

.main-banner {
    position: relative;
    padding: 250px 0;
    background: linear-gradient(135deg, #f8f7f9 0%, #009688 50%, #1e3c72 100%);
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.main-banner canvas#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Below content but above background */
}

.main-banner .container {
    position: relative;
    z-index: 2; /* Ensure container is above canvas */
}

.main-banner h1 {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
}

.main-banner p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease-out;
}

.main-banner .btn-custom {
    animation: fadeInUp 1.4s ease-out;
}

.main-banner .btn-outline-light {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    animation: fadeInUp 1.6s ease-out;
}

.why-us h2,
.our-services h2,
.our-solutions h2,
.get-quote h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.why-us .card,
.our-services .card,
.our-solutions .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.why-us .card-body,
.our-services .card-body,
.our-solutions .card-body {
    border-radius: 20px;
}

.why-us .fa-trophy,
.why-us .fa-wallet,
.why-us .fa-rocket {
    color: #449c8c;
}

.our-solutions .card-img-top {
    height: 200px;
    object-fit: cover;
}

.our-solutions {
    margin-top: -30px;
}



.get-quote {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
}

.get-quote .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.get-quote .form-control:focus + .form-label,
.get-quote .form-control:not(:placeholder-shown) + .form-label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: #fff;
    padding: 0 5px;
}

.get-quote .form-control:focus {
    border-color: #449c8c;
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

footer {
    background-color: #077F82;
    color: #fff;
    padding: 60px 0;
}

footer h2 {
    font-size: 2rem;
    font-weight: 600;
}

footer p {
    font-size: 1rem;
    line-height: 1.6;
}

footer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #449c8c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: none;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-icon {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.whatsapp-icon a:hover img {
    transform: scale(1.2);
}

.btn-ws {
    background: #449C8B;
    color: #fff;
    width: 150px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.btn-ws:hover {
    background: rgb(255, 255, 255);
    color: #333;
    border: 1px solid #333;
}

/* Custom panel for "Our Valued Clients" */
.clients-panel {
  background: #84c9c4;      /* required color */
  padding: 40px 0;          /* vertical spacing — adjust if needed */
  border-radius: 10px;      /* subtle rounding (optional) */
  box-shadow: 0 6px 18px rgba(0,0,0,0.08); /* gentle depth */
  overflow: hidden;
}

@media (max-width: 768px) {
    .main-banner {
        padding: 60px 0;
    }
    .main-banner h1 {
        font-size: 2rem;
    }
    .main-banner p {
        font-size: 1rem;
    }
    .btn-custom,
    .btn-outline-light {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .get-quote .form-label {
        font-size: 0.75rem;
    }
    .get-quote .form-control {
        font-size: 0.9rem;
    }
    .client-logo {
        max-height: 60px; /* Reduced size on medium screens */
    }
}

@media (max-width: 480px) {
    .main-banner {
        padding: 163px 0;
    }
    .main-banner h1 {
        font-size: 1.5rem;
    }
    .main-banner p {
        font-size: 0.8rem;
    }
    .main-banner .d-flex.justify-content-center.gap-3 > a {
        width: 70%;
        margin-bottom: 10px;
    }
    .main-banner .d-flex.justify-content-center.gap-3 {
        flex-direction: column;
        align-items: center;
    }
    .client-logo {
         height: 100px; /* Consistent logo size */
    }

  
    .our-clients h2 {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 500;
    margin-bottom: 5px;
     margin-top: 10px;
}

header .brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: -10px;
    margin-left: -45px;
}
header .brand-slogan {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    margin-left: -41px;
}
    .webinfo{
margin-left: -7px;
width: 50px;
height: 40px;
    }
}