﻿:root {
    --primary-green: #1BBD36;
    --dark-green: #16a32e;
    --light-green: #e8f7eb;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-dark: #333;
}

body {
    overflow-x: hidden;
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

    .btn-primary:hover {
        background-color: var(--dark-green);
        border-color: var(--dark-green);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    }

.Contact-Section-btn {
    border-radius: 30px;
    border: none;
    background-color: #1bbd36;
}
/* Toggler button (global, no media query) */
.navbar-toggler {
    border: none;
    outline: none;
    padding: 5px;
}

/* Hamburger lines */
.toggler-line {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--primary-green);
    transition: all 0.3s ease;
    position: relative;
}

/* ----- Animation for open state ----- */
.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 7px;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0; /* Middle line hide */
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -7px;
}
/* Remove outline and shadow from toggler */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Remove unwanted border/outline from nav links */
.nav-link:focus,
.nav-link:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar-toggler {
    border: none !important;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #333 !important;
    font-weight: 500 !important;
    margin: 0 8px;
    position: relative;
    transition: all 0.3s ease !important;
}

    .nav-link:hover {
        color: var(--primary-green) !important;
    }

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 20px 0;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }
    .nav-link::after {
        display: none;
    }
}

.carousel-container {
    width: 100%;
    /* max-width: 1000px;*/
    height: 90vh;
    overflow: hidden;
    position: relative;
    top: 60px;
    margin: 0 auto;
    perspective: 1500px;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
    transform-style: preserve-3d;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    transform: rotateY(0deg) translateZ(0px);
    transform-origin: center;
}

    .carousel-slide.active {
        transform: rotateY(0deg) translateZ(150px);
    }

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: -1;
    filter: grayscale(30%) brightness(1.1);
}

.slide-content {
    text-align: center;
    color: var(--text-dark);
    max-width: 700px;
    padding: 2rem;
    animation: fadeInUp 1.5s ease-in-out;
}

.slide-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.slide-text {
    font-size: 1.6rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 700;
}

.carousel-nav {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

    .nav-dot.active {
        background: var(--primary-green);
        border-color: white;
        transform: scale(1.4);
    }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .carousel-arrow:hover {
        background: rgba(27, 189, 54, 0.3);
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

.arrow-prev {
    left: 5%;
}

.arrow-next {
    right: 5%;
}

/* Decorative elements */
.tech-icon {
    position: absolute;
    font-size: 1.8rem;
    color: var(--primary-green);
    opacity: 0.5;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(5px, -10px) rotate(2deg);
    }

    50% {
        transform: translate(0, -15px) rotate(0deg);
    }

    75% {
        transform: translate(-5px, -10px) rotate(-2deg);
    }
}
/* What We Offer Section */
.services-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1.5s ease-in-out;
}

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 15px;
    }

    .section-title p {
        color: #666;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: var(--primary-green);
        transition: all 0.4s ease;
        z-index: -1;
    }

    .service-card:hover::before {
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-color: rgba(27, 189, 54, 0.2);
    }

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-green);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-green);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-green);
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .read-more i {
        margin-left: 5px;
        transition: all 0.3s ease;
    }

.service-card:hover .read-more {
    color: var(--dark-green);
}

    .service-card:hover .read-more i {
        transform: translateX(5px);
    }


.expertise-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

    .expertise-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNywxODksNTQsMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
        opacity: 0.3;
        z-index: 0;
    }

.expertise-card {
    border: none;
    border-radius: 12px;
    background: white;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(27, 189, 54, 0.1);
}

    .expertise-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(27, 189, 54, 0.15);
        border-color: rgba(27, 189, 54, 0.3);
    }

    .expertise-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-green);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .expertise-card:hover::after {
        transform: scaleX(1);
    }

.tech-icon-card {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    background-color: var(--light-green);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.expertise-card:hover .tech-icon-card {
    background-color: white;
    transform: rotate(10deg) scale(1.1);
}

    .expertise-card:hover .tech-icon-card .fa-microsoft {
        color: #512BD4 !important;
    }

    .expertise-card:hover .tech-icon-card .fa-code {
        color: #5C2D91 !important;
    }

    .expertise-card:hover .tech-icon-card .fa-android {
        color: #3DDC84 !important;
    }

    .expertise-card:hover .tech-icon-card .fa-php {
        color: white !important;
        background-color: #787CB5 !important;
        border-radius: 4px;
        padding: 4px;
    }
    /* PHP */
    .expertise-card:hover .tech-icon-card .fa-angular {
        color: #DD0031 !important;
    }

    .expertise-card:hover .tech-icon-card .fa-database {
        color: #00758F !important;
    }

    .expertise-card:hover .tech-icon-card .fa-bootstrap {
        color: #7952B3 !important;
    }

    .expertise-card:hover .tech-icon-card .fa-css3-alt {
        color: #264de4 !important;
    }

    .expertise-card:hover .tech-icon-card .fa-html5 {
        color: #e34c26 !important;
    }

    .expertise-card:hover .tech-icon-card .fa-mobile-alt {
        color: #000000 !important;
    }

    .expertise-card:hover .tech-icon-card .fa-chart-line {
        color: #FF9900 !important;
    }

.tech-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.expertise-card:hover .tech-name {
    color: var(--primary-green);
}

.contact-section {
    position: relative;
    overflow: hidden;
}

    .contact-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background-color: rgba(27, 189, 54, 0.1);
        border-radius: 50%;
        z-index: 0;
    }

    .contact-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        background-color: rgba(27, 189, 54, 0.05);
        border-radius: 50%;
        z-index: 0;
    }

.btn-outline-secondary:hover {
    background-color: var(--primary-green);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}
/* Footer Section */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icons {
    display: inline-flex;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    color: #666 !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        color: white !important;
        transform: translateY(-3px);
    }

    .social-icon.linkedin:hover {
        background-color: #0077b5;
    }

    .social-icon.facebook:hover {
        background-color: #3b5998;
    }

    .social-icon.google:hover {
        background-color: #db4a39;
    }

    .social-icon.twitter:hover {
        background-color: #1da1f2;
    }

/* ================== Responsive Adjustments ================== */

/* For tablets (768px - 991px) */
@media (min-width: 576px) and (max-width: 992px) {
    .carousel {
        height: 80vh !important;
    }

    .carousel-container {
        height: 60vh;
        top: 140px;
    }

    .slide-3 {
        width: 100% !important;
        margin-top: -61px !important;
    }

    .slide-2 {
        margin-top: -61px !important;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-subtitle {
        font-size: 1.5rem;
    }

    .slide-text {
        font-size: 1.1rem;
    }

    .carousel-slide {
        padding: 2rem;
    }

    .tech-icon {
        font-size: 1.5rem;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .navbar-brand {
        font-size: 1.6rem;
    }

    .services-section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .expertise-section {
        padding: 80px 0;
    }

    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* For mobile devices (576px - 767px) */
@media (max-width: 767.98px) {
    .contact-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact-section::before,
    .contact-section::after {
        display: none;
    }

    .services-section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 1.8rem;
        }

        .section-title p {
            font-size: 1rem;
        }

    .service-card {
        margin-bottom: 30px;
    }

    .carousel-container {
        height: 70vh;
        top: 120px;
        perspective: 1000px;
    }

    .carousel-slide {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .slide-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .slide-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .slide-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .slide-content {
        padding: 1rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .arrow-prev {
        left: 2%;
    }

    .arrow-next {
        right: 2%;
    }

    .tech-icon {
        font-size: 1.2rem;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .expertise-section {
        padding: 60px 0;
    }

    .expertise-card {
        padding: 25px 15px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .tech-name {
        font-size: 1rem;
    }

    .dark-footer {
        background-color: #fff !important;
        background-image: none !important;
    }

    .carouselImg {
        display: none !important;
    }
}

/* For small mobile devices (below 576px) */

@media (min-width: 320px) and (max-width: 575px) {

    .nav-max-witdh {
        max-width: 100% !important;
    }
    .carouselImg {
        display: none !important;
    }

    .dark-footer {
        background-color: #fff !important;
        background-image: none !important;
    }

    .slide-content {
        text-align: center;
        color: var(--text-dark);
        width: 100%;
        padding: 2rem;
        animation: fadeInUp 1.5s ease-in-out;
    }

    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .social-icon {
        margin: 0 8px;
    }

    .carousel-container {
        height: 65vh;
        top: 100px;
    }

    .carousel-slide {
        padding: 1rem;
        border-radius: 12px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slide-text {
        font-size: 0.9rem;
    }

    .carousel-nav {
        bottom: -30px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .tech-icon {
        display: none; /* Hide on very small screens */
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .services-section {
        padding: 50px 0;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .expertise-section {
        padding: 50px 0;
    }

    .expertise-card {
        padding: 20px 10px;
    }

    .carousel-inner {
        height: 350px !important;
    }

    .slide-content {
        margin-top: -200px !important;
    }

    .slide-3 .slide-text {
        font-size: 1rem !important;
        line-height: 1.9;
    }

    .slide-title {
        font-size: 1.3rem !important;
    }

    .section-title h2 {
        font-size: 1.4rem !important;
    }

    .contact-section .btn {
        font-size: 0.9rem !important;
    }

    .footer-logo {
        width: 170px !important;
        margin-bottom: -21px !important;
        margin-top: -26px !important;
    }

    .dark-footer {
        padding: 45px 15px;
    }

    .footer-link-heading {
        font-size: 1.3rem !important;
    }

    .contact-section-heading {
        font-size: 1.7rem !important;
    }

    .links-section {
        margin-top: -30px !important;
    }

    .logo-section p {
        margin-top: 21% !important;
        margin-bottom: 17% !important;
    }
}

/* For extra small devices (below 400px) */
@media (max-width: 399.98px) {
    .nav-max-witdh{
        max-width:100%  !important;
    }
    .carousel-container {
        height: 60vh;
        top: 90px;
    }

    .slide-title {
        font-size: 1.3rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .expertise-section {
        padding: 50px 0;
    }

    .expertise-card {
        padding: 20px 10px;
    }
}

.OurExpertiseImg {
    width: 40px;
}

.carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    /*    background-color: rgba(0, 0, 0, 0.2);*/
}

.carousel-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    /*    background: rgba(0, 0, 0, 0.4);  Optional overlay */
    background-color: white transparent !important;
}


    .carousel-content h1 {
        color: #13bb30; /* Green heading */
        font-weight: bold;
    }

    .carousel-content p {
        color: #383333;
    }

.right-img {
    animation: fadeInRight 1.5s ease-in-out;
    max-height: 520px !important;
    margin-right: 40px;
}

.right-img1 {
    animation: fadeInRight 1.5s ease-in-out;
    max-height: 550px;
    margin-right: 5%;
    margin-top: 8%;
}

.right-img3, .right-img {
    animation: fadeInRight 1.5s ease-in-out;
    max-height: 700px;
    /*    margin-right: 5%;*/
    margin-top: 8%;
    width: auto;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-control-next, .carousel-control-prev {
    width: 5% !important;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #13bb30;
    padding: 30px 0 30px 0;
}

.up-down-img {
    /*width: 150px;*/ /* ya jitna size chahiye */
    animation: upDown 2s ease-in-out infinite;
    position: relative;
}

@keyframes upDown {
    0% {
        top: 0;
    }

    50% {
        top: -20px;
    }

    100% {
        top: 0;
    }
}


/*Footer*/

.dark-footer {
    background-image: url('/assets/img/Footer3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 100%;
    width: 100%;
    padding: 70px 20px;
    color: #000;
    font-family: 'Segoe UI', sans-serif;
}

.footer-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 280px;
    margin-bottom: 15px;
}

.logo-section p {
    font-size: 14px;
    color: #000;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    /*    color: #fff;*/
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-column ul li {
        margin-bottom: 10px;
    }

        .footer-column ul li a {
            text-decoration: none;
            font-size: 16px;
            color: black;
            font-weight: 500;
        }

            .footer-column ul li a:hover {
                color: #49ca5e; /* ✅ Your logo's green */
            }

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

    .social-icons a {
        display: inline-block;
        background-color: rgb(27 189 54);
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
    }

        .social-icons a i {
            color: white;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            transition: all 0.4s;
        }
/*        .social-icons a i:hover {
            color: white;
        }*/
.service-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgb(56 147 57 / 56%) !important;
}

.nav-link.active {
    font-weight: bold;
    color: #28a745 !important; /* green */
    border-bottom: 2px solid #28a745;
}


#scrollBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #1bbd36;
    color: white;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 20%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

    #scrollBtn:hover {
        background-color: #378432;
    }

