* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* overflow-x: hidden; */
}

:root {
    --primary-color: #2563eb;
    --text-color: black;
    --white: #ffffff;
}

body {
    background-color: white;
}

/* NAVBAR STYLES */
.header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
    transform: scale(3.5);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

/* .logo:hover img {
    transform: scale(3.7);
} */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    list-style: none;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-link:hover {
    color: #ff5e0e;
}

.nav-link.active {
    color: #ff5e0e;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff5e0e;
    animation: underlineGrow 0.3s ease-out;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.btn-lets-talk {
    background-color: #ff5e0e;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-lets-talk:hover {
    transform: translateY(-2px);
    background-color: white;
    color: #ff5e0e !important;
    border: 1px solid #ff5e0e;
    box-shadow: 0 5px 15px rgba(255, 94, 14, 0.2);
}

/* Services Dropdown - Desktop */
.services-dropdown {
    position: static;
}

.dropdown-icon {
    margin-top: -0.8rem !important;
    margin-left: 0.2rem;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    display: none;
}

/* Rotate icon when active */
/* .services-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
} */

.dropdown-container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 115%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 99;
    padding: 1.5rem 0;
    max-width: 1200px;
    width: fit-content;
    pointer-events: none;
}



.dropdown-container.active {
    pointer-events: auto;

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content {
    display: flex;
    gap: 1.5rem;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.8rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background: #e7fff2ba;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #0064006f;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
}

.dropdown-item i {
    font-size: 1.5rem;
    color: #ff5e0e;
    margin-top: 0.3rem;
}

.dropdown-item span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.dropdown-item.active {
    background: #e7fff2ba !important;
    color: #333 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #0064006f;
}

.dropdown-item:hover span {
    color: #333;
}

.dropdown-item:hover span .second-line {
    color: #666;
    transition: color 0.3s ease;
}

.dropdown-item span .second-line {
    display: block;
    font-weight: 500;
    color: white#666;
    font-size: 0.85rem;
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #ff5e0e;
}

/* Default: hide mobile logo, show desktop logo */
.logo-mobile {
    display: none;
}

.logo-desktop {
    display: inline;
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: inline;
    }
}

.dropdown-icon {
    margin-top: -0.8rem !important;
    margin-left: 0.2rem;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    display: none !important;
}

/* Mobile  */
@media (max-width: 992px) {


    .dropdown-icon {
        display: inline-block !important;
    }


    .header {
        background-color: transparent;
    }

    .navbar-container {
        background-color: white;
    }

    .navbar-container.scrolled {
        border-radius: 0 0 30px 30px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        padding: 1rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Blur overlay for content behind menu */
    .blur-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 98;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .blur-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 97%;
        height: 80vh;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 2rem 2rem;
        overflow-y: auto;
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
    }

    .dropdown-container {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        border-top: none;
        animation: none;
    }

    .dropdown-content {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
        color: #333;
        background: transparent;
        min-width: auto;
        width: 100%;
    }

    .dropdown-item-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .dropdown-item:hover {
        transform: none;
        box-shadow: none;
        background: rgba(255, 94, 14, 0.05);
    }

    .dropdown-item span {
        color: #333;
        font-size: 0.9rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .dropdown-item span .second-line {
        color: #666;
        display: inline;
        font-weight: 500;
        font-size: 0.85rem;
        color: #666;
        /* margin-left: 0.3rem; */
    }

    .dropdown-item i {
        color: #ff5e0e;
        font-size: 1.2rem;
        min-width: 20px;
    }

    .services-dropdown.active .dropdown-container {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-container {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .services-dropdown {
        position: relative;
    }

    .services-dropdown.active .dropdown-container {
        position: fixed;
        top: 50%;
        left: 70%;
        /* transform: translate(-50%, -50%); */
        transform: translate(-50%, -50%);
        /* Shift slightly left */

        width: 50%;
        max-width: 250px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        display: block !important;
        z-index: 100;
        animation: fadeInFromLeft 0.3s ease-out;
        /* New animation */
    }

    @keyframes fadeInFromLeft {
        from {
            opacity: 0;
            transform: translate(-60%, -50%);
            /* Starts more left */
        }

        to {
            opacity: 1;
            transform: translate(-30%, -50%);
            /* Ends slightly left */
        }
    }

    .services-dropdown.active .dropdown-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .services-dropdown.active .dropdown-item {
        padding: 0.8rem 0.5rem;
        border-radius: 8px;
        border: 1px solid #eee;
        margin-bottom: 0.5rem;
    }

    .services-dropdown.active .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .services-dropdown.active .dropdown-item i {
        font-size: 1rem;
    }

    .services-dropdown.active .dropdown-item span {
        font-size: 0.7rem;
    }

    .services-dropdown.active .dropdown-item .second-line {
        font-size: 0.7rem;
    }

    /* Make sure overlay covers everything */
    .blur-overlay.active {
        z-index: 99;
    }

    .dropdown-container {
        display: none;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 250px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        z-index: 100;
        transition: all 0.3s ease;
    }

    .dropdown-item {
        pointer-events: auto;
        z-index: 101;
    }

    .services-dropdown.active .dropdown-container {
        display: flex;
        opacity: 1;
        visibility: visible;
        animation: fadeInFromLeft 0.3s ease-out;
    }

    .dropdown-content {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .dropdown-item.active {
        background: rgba(255, 94, 14, 0.1) !important;
        color: #ff5e0e !important;
        transform: none;
        box-shadow: none;
        border-left: 3px solid #ff5e0e;
    }
}

/* LETS TALK MODEL  */

/* Modal Styles */
.lets-talk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lets-talk-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-container {
    position: relative;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 2rem;
}

.lets-talk-modal.active .modal-container {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    z-index: 3;
}

.modal-close-btn:hover {
    color: #ff5e0e;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group textarea {
    resize: vertical;
    min-height: 95px;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #666;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: #f9f9f9;
    padding: 0 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5e0e;
    background-color: white;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #ff5e0e;
    background-color: white;
}

.submit-btn {
    background-color: #ff5e0e;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: #e0550c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 14, 0.3);
}


.lets-talk-style {
    position: relative;
    
}

.lets-talk-sleeping,
.lets-talk-awake {
    position: absolute;
    top: -48px;
    right: -0px;
    width: 50px;
    height: 50px;

    img {
        width: 100%;
        height: auto;
    }
}

.lets-talk-awake {
    display: none;
}

.lets-talk-style:hover .lets-talk-sleeping {
    display: none;
}

.lets-talk-style:hover .lets-talk-awake {
    display: block;
}


/* Mobile Specific Styles */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content p {
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .form-group label {
        top: 0.8rem;
        left: 0.8rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        padding: 1.2rem;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    .contact-form {
        gap: 1rem;
    }
}







/* hero---------------------------------------- */
/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 5% 9.5rem;
    text-align: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("/asstes/Images/hero.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Black with 60% opacity */
    z-index: 0;
}

.hero * {
    z-index: 1;

    /* Make sure text/content appears above overlay */
}




@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    /* padding-bottom: 110px; */
}

/* Rest of your existing styles remain unchanged */
.hero h2 {
    font-size: clamp(0.74rem, 3vw, 1.7rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    /* margin-bottom: 1.5rem; */
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.701);
}

.hero h3 {
    font-size: clamp(0.77rem, 2vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #ffffff;
    max-width: 800px;
}

.hero-btn {
    background-color: transparent;
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    border: 3px solid #ff5e0e;
    border-radius: 0.5rem;
    opacity: 3;
    z-index: 99;
}

.hero-btn:hover {
    background-color: #ff5e0e;
    color: #fff;
    border-radius: 4px;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */


@media (max-width: 768px) {
    .hero {
        padding: 8rem 5% 12rem;

    }

    .right-circle {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        max-height: 800px;
        min-height: 500px;
        height: fit-content;
        padding: 6rem 5% 6.5rem;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .hero-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 2000px) {
    .hero {
        padding-left: 15%;
        padding-right: 15%;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero h3 {
        font-size: 1.5rem;
    }

    .circle-1 {
        width: 150px;
        height: 150px;
        right: 10%;
    }

    .circle-2 {
        width: 100px;
        height: 100px;
        right: 12%;
    }

    .circle-3 {
        width: 80px;
        height: 80px;
        right: 9%;
    }

    .circle-4 {
        width: 180px;
        height: 180px;
        left: 10%;
    }

    .circle-5 {
        width: 120px;
        height: 120px;
        left: 12%;
    }
}

canvas {
    display: block;
    vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, #ffffff 0%, #e6f6ff 50%, #38b6ff94 100%); */
    background-position: 50% 50%;
}

/* ---- stats.js ---- */
.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #ffffff;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

/* ----------------------------------------------------------- */
/* ABOUT US  */

/* About Section Styles */
.about-section {
    padding: 2.5rem 0;
    background-color: #eff3ef;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 8px;
    /* overflow: hidden;  */
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle at top left, #d4eacb, #ffffff);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    filter: blur(10px);
    transform: rotate(-2deg);
    opacity: 0.5;
}



.about-image img {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 4px 6px rgba(0, 0, 0, 0.15);
}

.about-image:hover img {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;

}

.counters {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.counter-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-item .counter-wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
    justify-content: center;
    align-items: center;
}

.counter-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    /* color: #014421; */
    /* color: #1B4D3E; */
    /* color: #2D4739; */
    color: #006400;
    /* color: #355E49; */
    /* color: #2A4F3C; */
    line-height: 1;
}

.counter-item span:nth-child(2) {
    font-size: 1.5rem;
    color: #006400;
    line-height: 1;
    margin-left: 0.2rem;
}



.counter-item p {
    color: var(--text-color);
    font-weight: 500;
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 0.1rem;
    }

    .about-image {
        margin-bottom: 2rem;
    }

    .about-image img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .about-text {
        text-align: center;
    }

    .about-text h3 {
        font-size: 1.1rem;
    }

    .about-text p {
        text-align: justify;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        font-size: 0.9rem;
        /* or set a specific max-width if needed */
    }

    .counters {

        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .counter-item {
        width: 80px;
        /* or flex: 1 1 100px; */
        text-align: center;
    }

    .counter-item span:first-child {
        font-size: 1.2rem;
    }

    .counter-item span:nth-child(2) {
        font-size: 1rem;
        color: #006400;
        margin-left: 0;
        /* optional spacing */
    }

    .counter-item p {
        font-size: 0.85rem;
        line-height: 1.2;
        white-space: normal;
        /* allows text to wrap */
        word-break: break-word;
        text-align: center;

    }
}

/* OUR SERVICES  */

/* Services Section - Optimized */
.services-section {
    padding: 2.5rem 0;
    background-color: var(--white);

}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Desktop View */
.services-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
    /* This makes both columns stretch to same height */
}

.services-menu {
    flex: 0 0 300px;
    background: #eff3ef;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    /* Added */
    flex-direction: column;
    /* Added */
    /* justify-content: center; */
}

.services-list {
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
    flex-grow: 1;
    /* This makes the list take up available space */
    /* justify-content: center; */
}

.service-item {
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
}

.service-item:hover {
    background: #0064002a;
}

.service-item.active {
    background: linear-gradient(135deg, #0064004c, #ffffff);
    border-left: 3px solid #006400;
}

.service-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

.service-item h3 svg {
    flex-shrink: 0;
    /* Prevent icon from shrinking */
    margin-top: 2px;
    color: #006400;
    /* Small adjustment for better alignment */
}

.service-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.service-content {
    flex: 1;
    background: #eff3ef;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: flex;
    /* Added */
    flex-direction: column;
    /* Added */
}

.service-details {
    flex-grow: 1;
    /* Makes details take up available space */
    display: none;
    text-align: justify;
}

.service-details.active {
    display: flex;
    /* Changed from block to flex */
    flex-direction: column;
    /* Added */
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px #00640041;

}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: auto;
    /* Pushes features to bottom */
    padding-top: 1.5rem;
    text-decoration: none !important;
    /* Added spacing */
}

.service-features a {
    text-decoration: none !important;
    color: black !important;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
    color: #006400;
    text-decoration: none;
}

/* .feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}

/* Mobile View */
.mobile-column-view {
    display: none;
}

.mobile-service-column {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    cursor: pointer;
    position: relative;
    padding-left: 3rem;
}

.mobile-service-header::before {
    content: attr(data-number);
    position: absolute;
    left: 1rem;
    width: 24px;
    height: 24px;
    background: #006400;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.mobile-service-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.mobile-service-header.active .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.mobile-service-details.active {
    max-height: 2000px;
    padding: 1rem;
}

.mobile-service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px #00640041;
}

.mobile-service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.mobile-feature {
    text-decoration: none !important;
    color: black !important;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem;
    background: #f8fafc;
    border-radius: 6px;
}

.mobile-feature .feature-icon {
    width: 16px;
    height: 16px;
}

.mobile-feature i {
    color: #006400;
}

.mobile-feature span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-menu {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {


    /* Change service names only in mobile view */
    .mobile-service-column[data-service="custom-software"] h3:before {
        content: "Custom Software";
        display: none;
        /* Hide original text */
    }

    .mobile-service-column[data-service="mobile-app"] h3:before {
        content: "Mobile Application";
        display: none;
        /* Hide original text */
    }

    /* Hide original text */
    .mobile-service-column[data-service="custom-software"] h3,
    .mobile-service-column[data-service="mobile-app"] h3 {
        font-size: 0;
        /* Hide original text */
    }

    /* Show our new text */
    .mobile-service-column[data-service="custom-software"] h3:after {
        content: "Custom Software";
        font-size: 1rem;
    }

    .mobile-service-column[data-service="mobile-app"] h3:after {
        content: "Mobile Application";
        font-size: 1rem;
    }

    .services-container {
        display: none;
    }

    .mobile-column-view {
        display: block;
    }

    .section-title {
        font-size: 2rem !important;
        margin-bottom: 2rem;
    }

    .mobile-service-details p {
        font-size: 0.9rem !important;
        text-align: justify;
    }

    .mobile-feature {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.6rem;
        background: #f8fafc;
        border-radius: 6px;
        min-height: 40px;
        /* Add fixed height */
    }

    .mobile-feature i {
        color: #006400;
        width: 20px;
        /* Fixed width for icons */
        text-align: center;
        /* Center the icon */
        font-size: 16px;
        /* Consistent icon size */
        flex-shrink: 0;
        /* Prevent icon from shrinking */
    }

    .mobile-feature span {
        font-size: 0.8rem;
        font-weight: 500;
        line-height: 1.3;
        /* Better line spacing */
        align-self: center;
        /* Vertically center the text */
    }

}

@media (min-width: 769px) {
    .mobile-column-view {
        display: none;
    }
}


/* ******************************Client Section Styles */
/* Client Section Styles */
.client-section {
    padding: 3rem 0;
    background-color: #eff3ef;
    text-align: center;
    overflow: hidden;
}

.client-grid {
    width: 100%;
    overflow: hidden;
    margin: 2rem auto 0;
    position: relative;
}

.client-row {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0.5rem 0;
    will-change: transform;
    /* Improve performance */
}

/* Left to Right Animation */
.row-1,
.row-3 {
    animation: slideLeftToRight 50s linear infinite;
}

/* Right to Left Animation */
.row-2 {
    animation: slideRightToLeft 70s linear infinite;
    margin: 1.5rem 0;
}

.client-logo {
    flex: 0 0 auto;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1rem;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px; */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 120%;
    /* Increased from 100% */
    max-height: 160%;
    /* Increased from 100% */
    width: auto;
    height: auto;
    object-fit: contain;
    transform: scale(1.2);
    /* Additional scaling */
    transition: transform 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.15);
}

/* Animation Keyframes */
@keyframes slideLeftToRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move by half of the container width */
    }
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.client-grid:hover .client-row {
    animation-play-state: paused;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .client-logo {
        width: 140px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .client-logo {
        width: 120px;
        height: 80px;
        padding: 0.75rem;
    }

    .client-logo img {
        max-width: 110%;
        max-height: 160%;
        transform: scale(1.1);
    }

    .client-row {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .client-section {
        padding: 2rem 0;
    }

    .client-logo {
        width: 110px;
        height: 70px;
        padding: 0.5rem;
    }

    .client-logo img {
        max-width: 105%;
        max-height: 150%;
        transform: scale(1.05);
    }

    /* Faster animation on mobile */
    .row-1,
    .row-3 {
        animation-duration: 35s;
    }

    .row-2 {
        animation-duration: 31s;
    }
}

@media (max-width: 360px) {
    .client-logo {
        width: 100px;
    }
}




/*---------------------------------------------------- Why Techorses Section */
.why-techorses-section {
    padding: 2.5rem 0;
    background-color: #eff3ef;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 500;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #006400;
}

/* Reasons Slider */
.reasons-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 0 4rem;
    background-color: #eff3ef;
    overflow: hidden;

}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.reason-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 10px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}


/* 
.slider-mask {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow:
        15px 0 15px -15px rgba(0, 0, 0, 0.2) inset,
        
        -15px 0 15px -15px rgba(0, 0, 0, 0.2) inset;
   
} */

.slider-container {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    /* smoother slide */
}






/* .reason-slide.active {
    opacity: 1;
    transform: translateX(0);
} */


.reason-card {
    /* background: #eff3ef; */
    background: white;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reason-img {
    height: 200px;
    overflow: hidden;
}

.reason-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reason-card:hover .reason-img img {
    transform: scale(1.05);
}

.reason-title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 1.5rem 1.5rem 0.5rem;
    font-weight: 600;
}

.reason-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 1.5rem 1rem;
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0 10px;
    gap: 10px;
}

.slider-arrow {
    background: transparent;
    border: none;
    color: #006400;
    font-size: 1.5rem;
    border: 1px solid #006400;
    border-radius: 100px;
    cursor: pointer;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    color: white;
    background-color: #006400;
    transform: scale(1.1);
}

/* Slider Dots */
.reason-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    flex-grow: 1;
    margin: 0 1rem;
}

.dot {
    width: 0.35rem;
    height: 0.95rem;
    border-radius: 30%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #006400;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .reason-slide {
        flex: 0 0 50%;
    }

    .slider-arrow {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .why-techorses-section {
        padding: 3rem 0;
    }

    .reason-slide {
        flex: 0 0 100%;
        /* box-shadow: 0 10px 30px #00640041; */
    }

    .reason-img {
        height: 180px;
    }

    .slider-navigation {
        margin-top: 1rem;
        margin-bottom: 0.1rem;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .reasons-slider {
        padding: 0;
        margin-bottom: 0.5rem;
    }

    .reason-title {
        font-size: 1.1rem;
        margin: 1rem 1rem 0.5rem;
    }

    .reason-desc {
        font-size: 0.85rem;
        margin: 0 1rem 0.75rem;
    }

    .slider-arrow {
        font-size: 1.2rem;
        padding: 0.5rem;
        border-radius: 100px !important;

    }

    .reason-dots {
        display: none !important;
        margin: 0 0.5rem;
    }
}


/* REVIEW SECTION */

.review-section {
    background-color: #eff3ef;
    padding: 40px 0;
}

.testimonials-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px auto;
}

.left-heading {
    flex: 1 1 387px;
    max-width: 650px;
    text-align: center;
    position: relative;
    padding: 0 20px 0 6rem;
    /* Added padding to prevent overlap */
}

.left-heading h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 60px 0;
    line-height: 38px;
    position: relative;
    display: inline-block;
    /* Make the h2 inline-block for better quote positioning */
    padding: 0 40px;
    /* Add padding for quotes */
}



.left-heading .quote-top {
    font-size: 80px;
    color: #006400;
    position: absolute;
    top: 16px;
    left: 137px;
    /* font-family: 'Times New Roman', Times, serif; */
    line-height: 1;
    font-weight: 900;
}



.left-heading .quote-bottom {
    font-size: 80px;
    color: #006400;
    position: absolute;
    bottom: -17px;
    right: 47px;
    /* font-family: 'Times New Roman', Times, serif; */
    line-height: 1;
    font-weight: 900;
}

/* RIGHT SIDE TESTIMONIALS - VERTICAL CAROUSEL */
.testimonials-right {
    flex: 3 1 600px;
    position: relative;
    height: 500px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-box {
    background: #fff;
    border-left: 6px solid #d1d1d1;
    border-right: 6px solid #d1d1d1;
    padding: 10px 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    position: absolute;
    width: 70%;
    height: 170px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.025, 1);
    opacity: 0.7;
    transform: scale(0.9);
    border-radius: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* Center testimonial (special style) */
.testimonial-box.center {
    border-left-color: #006400;
    border-right-color: #006400;
    /* transform: scale(0); */
    width: 70%;
    opacity: 1;
    z-index: 2;
    /* margin-left: 50px; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-quote {
    margin-left: -20px;
    height: 25px;
}

.testimonial-box .quote {
    color: #000;
    font-size: 50px;
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    line-height: 0.8;

    /* font-family: 'Times New Roman', Times, serif;  */
}

.testimonial-box.center .quote {
    color: #006400;

}

.testimonial-box .name {
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    width: calc(100% - 4px);
}

.testimonial-box .stars {
    color: #ffbb00;
    float: right;
    font-size: 16px;
    font-weight: bold;
}

.testimonial-box .text {
    margin-top: 5px;
    font-size: 12.5px;
    color: #000;
    text-align: justify;
}

@media (max-width: 900px) {
    .testimonials-section {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .testimonials-carousel {
        height: 93%;


    }

    .testimonials-right {
        width: 100%;
        height: 550px;
    }

    .left-heading .quote-top {
        top: -20px;
        left: 50%;
        transform: translateX(-120%);
        /* Move left of center */
    }

    .left-heading .quote-bottom {
        bottom: -40px;
        right: 50%;
        transform: translateX(120%);
        /* Move right of center */
    }

    .testimonial-box.center {
        height: 160px;
    }


}

@media (max-width: 600px) {
    .left-heading {
        padding: 0 20px;

        margin-bottom: 20px;

        flex: 1 1 100px;
    }

    .left-heading h2 {
        font-size: 28px;
        margin: 20px 0;
        /* Reduce top and bottom margin */
        line-height: 1.2;
        padding: 0 30px;
    }

    .left-heading .quote-top,
    .left-heading .quote-bottom {
        font-size: 60px;
        /* Smaller quotes for mobile */
    }


    .left-heading .quote-top {
        top: -4px;
        left: 65%;
        transform: translateX(-50%);
        margin-left: -120px;
        /* Adjust this to position the left quote */
        font-size: 50px;
    }

    .left-heading .quote-bottom {
        bottom: -26px;
        right: 62%;
        transform: translateX(50%);
        margin-right: -120px;
        /* Adjust this to position the right quote */
        font-size: 50px;
    }

    .testimonials-right {
        margin-top: 10px;
        height: 300px;
        min-height: 200px;
        max-height: 500px;
    }

    .testimonial-box.center {
        /* height: 220px; */
        /* margin: 30px 0; */
        width: 96%;
        margin-left: 2%;
        border-right-color: #006400;
    }

    .testimonial-box {
        /* height: auto; */
        width: 97%;
        border-right: 6px solid #d1d1d1;
    }

    .review-section {
        padding: 20px 0;
    }


    .testimonial-box .text {
        font-size: 10.5px;
        margin-top: 2px;
    }

    .testimonial-box .name {
        font-size: 12px;
        height: 11px;
    }

    .testimonial-box .stars {
        font-size: 12px;

    }


}

@media (min-width: 2000px) {


    .left-heading h2 {
        font-size: 48px;
    }




}


/* CONTACT US */

/* Inquiry Section - Optimized with your style */

.inquiry-section {
    position: relative;
    padding: 2.5rem 2rem;
    background-color: white;
    font-family: 'Poppins', sans-serif;
    z-index: 1;
    overflow: hidden;
}

.background-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.icon-bg {
    position: absolute;
    font-size: 10rem;
    color: #0064008e;
    z-index: 0;
    pointer-events: none;
    animation: float 15s infinite alternate;
}

.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
    animation-direction: alternate-reverse;
}

.icon-3 {
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.icon-4 {
    bottom: 19%;
    left: 5%;
    animation-delay: 3s;
    animation-direction: alternate-reverse;
}

.icon-5 {
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    /* Slightly larger since it's centered */
    opacity: 0.3;
    /* More subtle since it's in the center */
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translate(50px, 50px) rotate(10deg);
        opacity: 0.4;
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
}

/* Rest of your existing CSS remains the same */
.inquiry-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3rem;
    position: relative;
}

.inquiry-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #006400;
}

.inquiry-section .section-title span {
    color: #006400;
    margin-left: 5px;
}

.inquiry-box {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 2;
}

.form-box {
    flex: 2;
    min-width: 300px;
    padding: 2.5rem;
}

.form-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 0.8rem 0.5rem;
    margin-bottom: 1.5rem;
    border: none;
    border-bottom: 1px solid #cbd5e1;
    font-size: 0.95rem;
    background: transparent;
    transition: all 0.3s ease;
}

.form-box input:focus,
.form-box textarea:focus {
    outline: none;
    /* border-color: var(--primary-color); */
    border-color: #006400;
}

.form-box textarea {
    resize: vertical;
    min-height: 120px;
}

.form-box button {
    padding: 0.8rem 2rem;
    background-color: #006400;
    color: white;
    border: 1px solid #006400;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;

}

.form-box button:hover {
    background-color: transparent;
    color: #006400;
    transform: translateY(-2px);
}


.corner-style {
    position: relative;
    padding-top: 2rem
}

.corner-icon {
    position: absolute;
    top: -39px;
    right: -0px;
    width: 40px;
    height: 40px;

    img {
        width: 100%;
        height: auto;
    }
}

.corner-icon.awake {
    display: none;
}

.corner-style:hover .sleeping {
    display: none;
}

.corner-style:hover .awake {
    display: block;
}


.office-info {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: rgba(37, 99, 235, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.office-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.office-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.office-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.office-info .info-item i {
    color: #006400;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.office-info .info-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .inquiry-section {
        padding: 4rem 1.5rem;
    }

    .inquiry-box {
        gap: 1.5rem;
    }

    .form-box,
    .office-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .inquiry-section {
        padding: 3rem 1rem;
    }

    .inquiry-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .inquiry-box {
        flex-direction: column;
        gap: 0;
    }

    .form-box,
    .office-info {
        padding: 1.5rem;
        min-width: 100%;
    }

    .office-info {
        order: 2;
        border-bottom: 1px solid #e2e8f0;
        text-align: center;
    }

    .form-box h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .office-info .info-item {
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 1rem 1rem 1rem 2rem;
        margin-bottom: 1rem;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
        background: white;
    }


    .office-info p {
        font-size: 0.8rem !important;
        /* Slightly smaller font */
        margin: 0;
        text-align: left;
    }

    .office-info .info-item i {
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
        color: #006400;
        margin: 0;
    }

    .icon-bg {
        font-size: 5rem;
    }

    .icon-1 {
        top: 5%;
    }

    .icon-2 {
        bottom: 4%;
    }

    .icon-3 {
        top: 40%;
    }

    .icon-4 {

        bottom: 39%;
    }

}

@media (min-width: 2000px) {
    .inquiry-section {
        padding: 6rem 0;
        max-width: 1600px;
        margin: 0 auto;
    }

    .inquiry-section .section-title {
        font-size: 3rem;
    }

    .inquiry-box {
        max-width: 1400px;
    }

    .form-box h3,
    .office-info h3 {
        font-size: 1.8rem;
    }

    .form-box input,
    .form-box textarea {
        font-size: 1.1rem;
        padding: 1rem 0.5rem;
    }

    .form-box button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .office-info p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .form-box {
        text-align: center;
    }

    .form-box button {
        display: inline-block;
    }
}

/* FAQS */

/* FAQ Section */
.faq-section {
    padding: 2.5rem 0;
    background-color: #eff3ef;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    flex: 1 1 400px;
    min-width: 0;
}

.faq-box {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    height: auto;
    min-height: 4.625rem;
    overflow: hidden;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--text-color);
    transition: all 0.3s ease;
    /* display: -webkit-box; */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.2rem;
    /* Enough height for 2 lines */
}

.plus-icon {
    color: #006400;
    font-size: 1.5rem;
    margin-right: 0.625rem;
    font-weight: 550;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding-top: 0.625rem;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
}

.faq-box.active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-box.active .faq-answer {
    display: block;
}

.faq-box.active .plus-icon {
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {

    


    .faq-section {
        padding: 3rem 0;
    }

    .faq-container {
        gap: 1rem;
        flex-direction: column;
    }

    .faq-column {
        flex: 1 1 auto;
        width: 100%;
    }

    .faq-box {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.8rem;
    }
}

@media (min-width: 1200px) {
    .faq-box {
        padding: 1.5rem 2rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}


/*------------------------------------- FOOTER */
.desktop-social {
    display: flex;
}

.mobile-social {
    display: none;
}

/* Active footer link styles */
.active-footer-link {
    color: #ff5e0e !important;
    font-weight: 600;
}

.footer-link {
    color: inherit;
    /* Keeps the existing text color */
    text-decoration: none;
    /* Removes underline */
    transition: color 0.1s ease;
    /* Smooth color transition */
    display: block;
    /* Makes the entire list item clickable */
}

.mobile-social .footer-socials {
    justify-content: center;
    /* margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1); */
}

footer {
    /* width: 100%; */
    background: #d5ded5;
    padding: 2rem 2rem 0;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-main-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.footer-column {
    flex: 1 1 auto;
    min-width: 150px;
    /* Reduced from 200px */
    padding: 0 0.5rem;
}

.footer-logo-column {
    flex: 1 1 300px;
    /* Give logo column more priority */
    min-width: 250px;
}

/* Specific adjustments for Explore and Services columns */
.footer-column:nth-child(2) {
    flex: 0 1 120px;
    /* Fixed width for these columns */
    min-width: 120px;
}

.footer-column:nth-child(3) {
    flex: 0 1 160px;
    /* Fixed width for these columns */
    min-width: 160px;
}

/* Contact column should take remaining space */
.footer-column:last-child {
    flex: 1 1 250px;
}

.footer-logo-column img {
    max-width: 120px;
    margin-bottom: -0.5rem;
    margin-top: -2rem;
    transform: scale(1.8);
    margin-left: 10%;
}

.footer-logo-column p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-logo-column button {
    background-color: #ff5e0e;
    color: white;
    padding: 0.7rem 1.5rem;
    border: 1px solid #ff5e0e;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    /* margin-bottom: 1.5rem; */
    display: block;
    width: 100%;
    max-width: 200px;
}

.footer-logo-column button:hover {
    background-color: transparent;
    color: #ff5e0e;
}


.client-btn-with-icon {
    position: relative;
}

.client-btn-with-icon .client-icon {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 40px;
    /* border: 1px solid red; */
    pointer-events: none;
    /* background: yellow; */
}


.footer-column h3 {
    color: #ff5e0e;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-column li:hover {
    color: #ff5e0e;
}

.footer-link {
    color: inherit;
    /* Keeps the existing text color */
    text-decoration: none;
    /* Removes underline */
    transition: color 0.1s ease;
    /* Smooth color transition */
    display: block;
    /* Makes the entire list item clickable */
}

/* CONTACT SECTION STYLES */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    /* Changed from center to flex-start */
    margin-bottom: 0.5rem;
}

.contact-icon {
    color: #ff5e0e;
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    margin-right: 5px;
    flex-shrink: 0;
    line-height: 1.5;
}

.contact-items {
    display: flex;
    align-items: center;
    /* gap: 0.5rem;  */
    line-height: 1.5;
    flex-wrap: nowrap;
    /* Prevent wrapping */

}


.contact-item {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    /* gap: 0.5rem; */
    height: 24px;

}


.contact-line .contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.contact-line .contact-item i {
    align-self: center;
    margin-top: 0;

}

.contact-item i {
    align-self: center;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.contact-separator {
    color: #999;
    padding: 0 0.5rem;
}

.contact-text {
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: nowrap;
    line-height: 1;
}

.contact-separator {
    color: #999;
    padding: 0 0.5rem;
}

.address-item {
    display: flex;
    margin-bottom: 0.8rem;
}

.address-item i {
    color: #ff5e0e;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    min-width: 20px;
    text-align: center;
    align-self: flex-start;
}

.contact-line i {
    color: #ff5e0e;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    min-width: 20px;
    text-align: center;
    align-self: flex-start;

}

.address-text {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}





/* SOCIAL MEDIA STYLES */
/* Adjust social wrapper for better mobile */
.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    /* justify-content: center; */
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: #ff5e0e;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ff5e0e;
    text-decoration: none;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background-color: #ff5e0e;
    color: white;
}

/* COPYRIGHT SECTION */
.footer-copyright-section {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Hide mobile copyright by default */
.mobile-copyright {
    display: none;
}

/* Desktop Copyright */
.desktop-copyright {
    display: block;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-color);
}

.footer-copyright span {
    color: #ff5e0e;
    font-weight: 600;
    cursor: pointer;
}

/* GO TO TOP BUTTON */
#goToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #006400;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#goToTopBtn:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: white;
    color: #006400;
}



/* Phone number links styling */
.contact-text {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover,
.call-link:hover,
.email-link:hover {
    color: #ff5e0e;
    /* WhatsApp green */
    text-decoration: none;
}

/* Show/hide phone versions based on device */
.desktop-phone {
    display: block;
}

.mobile-phone {
    display: none;
}

/* Email links specific styling */
.email-link:hover {
    color: #ff5e0e;
    /* Gmail red */
}

/* Mobile view adjustments */
/* COMPLETE MOBILE VIEW STYLES */



@media (max-width: 992px) {
    .desktop-phone {
        display: none !important;
    }

    .mobile-phone {
        display: block;
    }
}

@media (max-width: 768px) {

    /* General Mobile Footer Styles */
    footer {
        padding: 1.5rem 1rem 0;
    }

    .contact-separator {

        display: none !important;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        padding: 0;
        text-align: center;
        flex: 1 1 100%;
    }

    /* Logo Column */
    .footer-logo-column img {
        margin: -30px auto -10px;
        max-width: 150px;
    }

    .footer-logo-column p {
        text-align: center;
        padding: 0 10%;
    }

    .footer-logo-column button {
        margin: 1rem auto;

        max-width: 200px;
    }

    /* Hide desktop elements */
    .desktop-copyright,
    .desktop-social,
    .mobile-none {
        display: none !important;
    }

    /* Show mobile elements */
    .mobile-copyright {
        display: block;
        margin-top: 1.5rem;
    }

    /* Contact Section - Mobile View */
    .footer-column:last-child h3 {
        display: none;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        padding: 0 10%;
        box-sizing: border-box;
        align-items: center;
    }

    /* Address Section */
    .address-line {
        display: flex;
        /* gap: 0.8rem; */
        align-items: flex-start;
        text-align: left;
    }

    .address-line i {
        color: #ff5e0e;
        font-size: 0.9rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

    .address-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Phone Numbers Section */
    .phone-line .contact-items {
        display: flex;
        flex-direction: column;
        /* gap: 0.8rem; */
    }

    .phone-line .contact-item {
        display: flex;
        align-items: center;
        gap: 0;
        text-align: left;
    }

    .phone-line .contact-item i {
        color: #ff5e0e;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    /* Email Section */
    .email-line .contact-items {
        display: flex;
        flex-direction: column;
        /* gap: 0.8rem; */
    }

    .email-line .contact-item {
        display: flex;
        align-items: center;
        gap: 0rem;
        text-align: left;
    }

    .email-line .contact-item i {
        color: #ff5e0e;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    /* Mobile Social Icons */
    .mobile-social {
        margin-top: 1.5rem;
    }

    .footer-socials {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 94, 14, 0.1);
        color: #ff5e0e;
        transition: all 0.3s ease;
    }

    .footer-socials a:hover {
        background: #ff5e0e;
        color: white;
    }

    /* Keep the button in logo column */
    .footer-logo-column button {
        display: block !important;
        /* Ensure button stays visible */
    }

    /* Move social icons below contact details */
    .footer-social-wrapper {
        order: 1;
        /* Move after contact section */
        margin-top: 2rem;
        width: 100%;
    }

    /* Hide desktop social icons */
    .desktop-social {
        display: none !important;
    }

    /* Show mobile social icons in new position */
    .mobile-social {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    /* Adjust contact info spacing */
    .contact-info {
        gap: 1.2rem;
    }
}



@media (max-width: 480px) {
    footer {
        padding: 1rem 0.5rem 0;
    }

    .footer-logo-column p,
    .address-text,
    .contact-item {
        font-size: 0.85rem;
    }

    .contact-info {
        padding: 0 5%;
    }

    .footer-socials a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* CONTACT SECTION STYLES - UPDATED FIX */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

/* Phone line specific styles */
.phone-line .contact-items {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    line-height: 1.5;
}

/* Desktop phone numbers */
.desktop-phone {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}

/* Contact items */
.contact-item {
    display: inline-flex;
    /* Changed from flex to inline-flex */
    align-items: center;
    white-space: nowrap;
    font-size: 0.9rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 0.25rem;
}

.contact-item:hover {
    color: #ff5e0e;
}

.contact-separator {
    color: #999;
    padding: 0 0.5rem;
    display: inline-block;
}



/*------------------------------------------------------ Tools & Tech Stack Section - Complete */
/*------------------------------------------------------ Tools & Tech Stack Section - Complete */
.tech-stack-section {
    padding: 2.5rem 0 5rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.tech-stack-section .container {
    position: relative;
    z-index: 1;
}

.tech-stack-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3rem;
    position: relative;
}

.tech-stack-section .section-title span {
    color: #006400;
    position: relative;
}

.tech-stack-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #006400;
    border-radius: 3px;
}

.tech-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    border: 2px solid #006400;
    color: #006400;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00640065, transparent);
    transition: 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #006400;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 81, 20, 0.3)
}

.tech-grid {
    /* display: grid; */
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 2.5rem;
    animation: fadeIn 0.5s ease;
    justify-items: center;
    justify-content: center;

    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}


/* For categories with exactly 8 items (which would show 5+3) */
.tech-grid[data-category-count="8"] {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    justify-content: center;
}

/* For desktop view - when more than 7 items */
.tech-grid[data-category-count="8"],
.tech-grid[data-category-count="9"],
.tech-grid[data-category-count="10"],
.tech-grid[data-category-count="11"],
.tech-grid[data-category-count="12"] {
    grid-template-columns: repeat(auto-fit, 120px);
    justify-content: center;
}

/* For desktop - when 7 or fewer items */
.tech-grid[data-category-count="7"],
.tech-grid[data-category-count="6"],
.tech-grid[data-category-count="5"],
.tech-grid[data-category-count="4"],
.tech-grid[data-category-count="3"],
.tech-grid[data-category-count="2"],
.tech-grid[data-category-count="1"] {
    grid-template-columns: repeat(auto-fit, 120px);
    max-width: 900px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-item {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.3s ease;
    perspective: 1000px;
}

.tech-item.hidden {
    display: none;
    opacity: 0;
}

.tech-logo {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #eff3ef;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 1rem;
    transform-style: preserve-3d;
}

.tech-logo:hover {
    transform: translateY(-5px) rotateY(10deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.tech-logo:hover img {
    filter: grayscale(0%);
}

.tech-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #006400;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.tech-logo:hover .tech-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

/* Mobile Accordion Styles */
.filter-toggle {
    display: none !important;
    padding: 0.8rem 1.5rem;
    background-color: #006400;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 101;
}

.filter-toggle svg {
    transition: transform 0.3s ease;
}

.filter-toggle.expanded svg {
    transform: rotate(180deg);
}

.mobile-title {
    display: none;
}

/* Hide mobile text by default */
.mobile-text {
    display: none;
}

.category-name {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 1.5rem;
    }

    .tech-logo {
        width: 70px;
        height: 70px;
    }
}

@media (min-width: 1600px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 2.5rem;
    }

    .tech-logo {
        width: 80px;
        height: 80px;
    }

    .tech-tooltip {
        font-size: 0.9rem;
        bottom: -45px;
    }

    .tech-logo:hover .tech-tooltip {
        bottom: -40px;
    }
}

/* Mobile Slider Styles */

/* Add these mobile styles to your existing CSS */


@media (max-width: 768px) {

    .desktop-title {
        display: none;
    }

    .mobile-title {
        display: block;
    }

    .container1 {
        padding: 0 !important;
    }

    .category-filter {
        display: none !important;
    }

    .category-name {
        display: block;
    }

    .mobile-tech-slider-container {
        width: 100%;
        overflow: hidden;
        padding: 15px 0 15px;
        position: relative;
    }

    .slider-track {
        display: flex;
        transition: transform 0.3s ease-out;
        height: 70px;
        align-items: center;
        /* padding: 0 calc(50% - 150px); */
        padding: 0;
        /* Centers the active slide */
    }

    .slider-slide {
        flex: 0 0 150px;
        /* Fixed width for each slide */
        min-width: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }

    .category-name {
        width: 140px;
        /* Slightly less than slide width */
        padding: 12px 15px;
        text-align: center;
        font-weight: 600;
        color: #006400;
        background: white;
        border-radius: 25px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        font-size: 0.9rem;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .slider-slide.active .category-name {
        background: #006400;
        color: white;
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 100, 0, 0.2);
        z-index: 2;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
        pointer-events: none;
        /* Disable clicks on dots */
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        transition: all 0.3s ease;
    }

    .slider-dot.active {
        background: #006400;
        transform: scale(1.3);
    }

    .tech-grid {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .tech-item {
        /* display: none; */
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
}

/* Smaller screens */
@media (max-width: 480px) {
    .category-name {
        padding: 8px 4px;
        font-size: 0.7rem;
    }

    .tech-grid {
        gap: 1rem;
    }
}




/* ***************************************************CALL TO ACTION SECTION */
.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

.cta-section {
    padding: 2.5rem 0 2.1rem 0;
    background-color: white;
    /* background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%); */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    text-align: center;
}

.quote-mark {
    /* font-family: 'Times New Roman', Times, serif;  */
    font-weight: 700;
    color: #006400;
    font-size: 5rem;
    line-height: 1;
    position: absolute;
    opacity: 0.3;
}

.quote-mark.left {
    left: 6%;
    top: -1.5rem;
}

.quote-mark.right {
    right: 13%;
    bottom: -2rem !important;
}

.text-wrapper {
    position: relative;
    display: inline-block;
    padding: 0 3rem;
}

.cta-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-text span {
    color: #006400;
    font-weight: 700;
    position: relative;
    white-space: nowrap;
}

.cta-text span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #0064003a;
    z-index: -1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    background-color: #006400;
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 1px solid transparent;
}

.cta-button:hover {
    color: #006400 !important;
    background-color: white;
    border-color: #006400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.phone-button {
    background-color: var(--white);
    color: #006400;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #006400;
}

.phone-button:hover {
    background-color: #006400;
    color: white;
    transform: translateY(-2px);
}

.phone-button:hover svg {
    color: white;
}

.phone-button svg {
    width: 1rem;
    height: 1rem;
    color: #006400;
    transition: color 0.3s ease;
}

.cta-button-wrapper {
    position: relative;
    display: inline-block;
}

.icon-on-button {
    position: absolute;
    top: -35px;
    left: -5px;
    width: 40px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    animation: floatIcon 2.5s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-9px);
    }
}



/* Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }

    .cta-text {
        font-size: 1.2rem !important;
        line-height: 1.3;
        padding: 0;
    }

    .cta-text span {
        font-size: 1.2rem !important;
    }


    .text-wrapper {
        padding: 0 1.5rem;
    }

    .quote-mark {
        font-size: 4rem;
    }

    .quote-mark.left {
        left: 1rem;
        top: -1rem;
    }

    .quote-mark.right {
        right: 1.2rem;
        bottom: -0.5rem !important;
    }

    .text-wrapper {
        padding: 0 2.5rem;
        /* Consistent padding for quotes */
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
        padding: 0;
        width: 100%;
    }

    .cta-button,
    .phone-button {
        padding: 0.75rem 1.2rem;
        font-size: 0.7rem;

    }
}

@media (max-width: 480px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }

    .text-wrapper {
        padding: 0 2rem;
    }

    .cta-section {
        /* padding: 3rem 0; */
        padding: 3rem 0 2.1rem 0;


    }

    .cta-text {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .quote-mark {
        font-size: 3rem;
    }

    .cta-buttons {
        margin-top: -25px;
        flex-direction: row;
        gap: 1rem;
        padding: 0;
        width: 100%;
    }

    .cta-button,
    .phone-button {
        /* width: 100%; */
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .cta-text {
        font-size: 1.1rem;
    }

    .text-wrapper {
        padding: 0 1.5rem;
    }

    .quote-mark {
        font-size: 2.5rem;
    }
}



/* TOAST  */

/* Toast Styles */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
    max-width: 100%;
}

.toast {
    background: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.3s forwards;
    text-align: center;
    /* Center text */
    word-break: break-word;
    /* Wrap long words */
}

.toast-success {
    background-color: #28a745;
}

.toast-error {
    background-color: #dc3545;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile view: full width toast */
@media (max-width: 600px) {
    .toast-container {
        left: 0;
        transform: none;
        width: 100%;
        padding: 0 10px;
    }

    .toast {
        width: 100%;
        box-sizing: border-box;
    }
}




.btn-loader {
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}







#whatsappBtn {
    position: fixed;
    bottom: 80px;
    /* Above the go-to-top button */
    right: 20px;
    background-color: #006400;
    /* WhatsApp green */
    color: white;
    /* White icon by default */
    border: 2px solid #006400;
    /* Green border (for smooth hover transition) */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 28px;
    /* Bigger icon */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

#whatsappBtn:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: transparent !important;
    /* White bg on hover */
    color: #25D366 !important;
    /* Green icon on hover */
    border-color: #25D366;
    /* Keep border green */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #whatsappBtn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        /* Slightly smaller on mobile */
        bottom: 80px;
    }
}