@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Base Styles */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}



:root {
    --primary-color: #2563eb;
    --text-color: #1e293b;
    --white: #ffffff;

}



body {
    /* background-color: white; */
    background-color: #eff3ef;
    overflow-x: hidden;
}



/* NAVBAR STYLES */
.header {
    background-color: var(--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-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: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 Dropdown */
@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;
    }
}


/* 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: 1rem;
    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: 120px;
}

.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/company/CompanyHeroSection.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: 1100px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    z-index: 2;
}

/* Rest of your existing styles remain unchanged */
.hero h2 {
    font-size: clamp(0.74rem, 4vw, 2.1rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    color: #FFF;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero h3 {
    font-size: clamp(0.77rem, 2.7vw, 5.8rem);
    color: #FFF;
    margin-bottom: 20px;
    font-weight: 400;
    /* letter-spacing: 1px; */
}

.hero-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    /* border-radius: 50px; */
    border: 3px solid #ff5e0e;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    /* box-shadow: 0 5px 15px #ff5e0e; */
}

.hero-btn:hover {
    background-color: #ff5e0e;
    color: #fff;
    border-radius: 4px;
    /* transform: translateY(-3px); */
    /* box-shadow: 0 8px 20px #ff5e0e; */
}

/* Responsive Styles */


@media (max-width: 768px) {
    .hero {
        padding: 8rem 5% 12rem;

    }

    .right-circle {
        display: none;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0px;
        /* Reduced padding for mobile */
    }

    .hero h2 {
        width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
        /* Slightly more space */
    }

    .hero h1 {
        text-align: center;
        margin-bottom: 1.5rem;
        /* Consistent spacing */
    }

    .hero-btn {
        margin: 0 auto;
        /* Center the button */
    }
}

@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 */
/* About Section */
.about-section {
    position: relative;
    padding: 2.5rem 0;
    background-color: #fff;
    overflow: hidden;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(0,100,0,0.05)" stroke-width="0.5"/><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(0,100,0,0.05)" stroke-width="0.5"/><path d="M40,40 L60,40 L60,60 L40,60 Z" fill="none" stroke="rgba(0,100,0,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    animation: circuitMove 50s linear infinite;
}


@keyframes circuitMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1000px 1000px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #000;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #006400;
    border-radius: 2px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    margin-bottom: 2rem;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-text-overlay {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 700px;
    /* background-color: rgba(255, 255, 255, 0.9); */
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    z-index: 3;
}

.about-text-overlay p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Background Decoration */
.about-bg-circle {
    display: none;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 50, 133, 0.05) 0%, rgba(255, 94, 14, 0.05) 100%);
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
}

/* Add to your CSS */
.about-tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.tech-icon {
    position: absolute;
    opacity: 0.7;
    color: rgba(0, 100, 0, 0.3);
    /* Slightly more visible */
    animation: float 15s infinite ease-in-out;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.tech-icon:hover {
    opacity: 0.9;
    transform: scale(1.2);
    color: rgba(0, 100, 0, 0.6);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .about-tech-icons .tech-icon {
        display: none;
    }

    /* Show only specific mobile icons with custom positions */
    .about-tech-icons {

        /* Top right icon */
        .fa-network-wired {
            display: block;
            left: 85% !important;
            top: 26% !important;
            font-size: 2rem !important;
            animation: mobileFloat 12s infinite ease-in-out;
        }

        .fa-code {
            display: block;
            left: 6% !important;
            top: 5% !important;
            font-size: 2rem !important;
            animation: mobileFloat 12s infinite ease-in-out;
        }

        /* Rocket at bottom left */
        .fa-rocket {
            display: block;
            left: 10% !important;
            top: 85% !important;
            font-size: 2.5rem !important;
            animation: mobileFloat 10s infinite ease-in-out;
        }

        /* Database above rocket */
        .fa-database {
            display: block;
            left: 12% !important;
            top: 30% !important;
            font-size: 2.2rem !important;
            animation: mobileFloat 10s infinite ease-in-out;
        }

        /* .fa-mobile-alt {
            display: block;
            left: 27% !important;
            top: 15% !important;
            font-size: 2.5rem !important;
            animation: mobileFloat 8s infinite ease-in-out;
        } */

        /* Brush icon below About Us' "Us" */
        .fa-paint-brush {
            display: block;
            left: 68% !important;
            top: 5% !important;
            font-size: 2rem !important;
            animation: mobileFloat 14s infinite ease-in-out;
        }

        /* Settings at bottom right */
        .fa-cogs {
            display: block;
            left: 85% !important;
            top: 85% !important;
            font-size: 2.2rem !important;
            animation: mobileFloat 16s infinite ease-in-out;
        }

        /* Network/wired icon (two lines) at bottom center */
        .fa-server {
            display: block;
            left: 50% !important;
            top: 90% !important;
            transform: translateX(-50%);
            font-size: 2.3rem !important;
            animation: mobileFloat 18s infinite ease-in-out;
        }

        /* Users at bottom center */

    }

    /* Different animation for mobile */
    @keyframes mobileFloat {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-15px) scale(1.1);
        }
    }

    .about-section {
        padding: 2rem 0;
    }

    .about-bg-circle {
        display: none;
    }

    .about-text-overlay {
        top: 50%;
        padding: 1.5rem;
        width: 59%;
    }

    .about-image {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-text-overlay {
        padding: 1.2rem;
    }

    .about-text-overlay p {
        font-size: 0.6rem;
    }
}

@media (min-width: 2000px) {
    .about-section {
        padding: 10rem 0;
    }

    .section-title {
        font-size: 4.5rem;
        margin-bottom: 4rem;
    }

    .about-text-overlay p {
        font-size: 1.5rem;
    }

    .about-image {
        max-width: 1000px;
    }
}

@media (min-width: 2500px) {
    .container {
        max-width: 2000px;
    }

    .section-title {
        font-size: 5rem;
    }

    .about-text-overlay {
        max-width: 900px;
        padding: 3.5rem;
    }

    .about-text-overlay p {
        font-size: 1.8rem;
        line-height: 2.2;
    }
}

/* ----------------------------------------------------------------------------POINT SECTION */


/* Points Section */

.mobile-points {
    display: none;
}

.points-section {
    padding: 2.5rem 0;
    background-color: #FFF;
}

.points-columns {
    display: flex;
    gap: 0rem;
    padding: 0 8%;
    position: relative;
}

.points-connector {
    position: absolute;
    top: -19px;
    left: 50%;
    width: 100px;
    height: 108%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.connector-path {
    stroke: #006400;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 0;
    animation: none;
}

/* Adjust icon positioning to align with the connector */
.point-icon {
    position: relative;
    z-index: 2;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .points-connector {
        display: none;
    }
}

.points-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    justify-content: center;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.8s ease;
}

/* Left Column - Text First then Icon */
.points-column.left .point-item {
    flex-direction: row;
    text-align: right;
    height: 100px;
}

.points-column.left .point-content {
    order: 1;
}

.points-column.left .point-icon {
    order: 2;
}

/* Right Column - Icon First then Text */
.points-column.right .point-item {
    flex-direction: row;
    text-align: left;
    height: 100px;
}

.points-column.right .point-icon {
    order: 1;
}

.points-column.right .point-content {
    order: 2;
}

.point-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #006400;
    font-size: 2rem;
}

.point-content {
    flex: 1;
    padding: 1rem;
}

.point-text {
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    color: #333;
    line-height: 1.8;
    text-align: left;
}

.points-column.left .point-item .point-text {
    text-align: right;
}

/* Animation Classes */
.point-item.animate-left {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.8s ease forwards;
}

.point-item.animate-right {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .points-columns {
        gap: 2rem;
        padding: 0;
    }

    .point-item {
        gap: 1.5rem;
    }
}


@media (max-width: 768px) {

    /* Hide desktop version */
    .points-columns {
        display: none;
    }

    /* Show mobile version */
    .mobile-points {
        display: block;
        padding: 0 5%;
    }

    .mobile-point-item {
        display: flex;
        gap: 1.5rem;
        padding: 1rem;
        border: 2px solid #006400;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        background: white;
        align-items: center;
    }

    /* Strict alternation pattern */
    .mobile-point-item:nth-child(odd) {
        /* Odd items: icon left */
        flex-direction: row;
    }

    .mobile-point-item:nth-child(even) {
        /* Even items: icon right */
        flex-direction: row-reverse;
    }

    .mobile-point-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        background: #f5f5f5;
        border: 2px solid #006400;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-point-icon i {
        color: #006400;
    }

    .mobile-point-content {
        flex: 1;
        padding: 0.5rem;
    }

    .mobile-point-content p {
        text-align: justify;
        margin: 0;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Animation */
    .mobile-point-item {
        opacity: 0;
        transform: translateX(-50px);
    }

    .mobile-point-item:nth-child(odd) {
        animation: mobileSlideInLeft 0.8s ease forwards;
    }

    .mobile-point-item:nth-child(even) {
        animation: mobileSlideInRight 0.8s ease forwards;
    }

    @keyframes mobileSlideInLeft {
        from {
            transform: translateX(-50px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes mobileSlideInRight {
        from {
            transform: translateX(50px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
}

/* -----------------------------------------------------------------------MISSION-VISSION */

.vision-mission-section {
    background-color: #eff3ef;
    width: 80%;
    padding: 3rem 1rem;
    position: relative;
    margin: 0 auto;
}

.block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    width: 85%;
    margin: 0 auto;
}

.block-image {
    flex: 1;
    /* Changed to flex-basis only */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-height: 300px;
}

.block-image img {
    width: 100%;
    height: auto;
    /* Changed from 100% to auto */
    max-height: 300px;
    object-fit: cover;
    /* Changed from cover to contain */
    display: block;
    transition: transform 0.4s ease;
}

.block-image:hover img {
    transform: scale(1.02);
}

.block-text {
    flex: 1;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.block-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 45px;
    height: 3px;
    background: #006400;
    border-radius: 2px;
}

.block-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0.5rem 0 0;
    text-align: justify;
}

/* Vision specific styles */
.vision .block-image {
    order: 1;
}

.vision .block-text {
    order: 2;
    padding-left: 1rem;
}

/* Mission specific styles */
.mission .block-text {
    order: 1;
    padding-right: 1rem;
    text-align: left;
}

.mission .block-text h2::after {
    left: 0;
    right: auto;
}

.mission .block-image {
    order: 2;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .block {
        width: 90%;
        gap: 1.5rem;
    }

    .block-image,
    .block-image img {
        max-height: 260px;
    }
}

@media (max-width: 768px) {
    .block {
        flex-direction: column;
        width: 90%;
        margin-bottom: 2.5rem;
        gap: 1.2rem;
    }

    .block-image,
    .block-text {
        flex: 1 1 100%;
        width: 100%;
    }

    .block-image {
        max-height: 240px;
        order: 2 !important;
    }

    .block-image img {
        /* margin: 0 auto;
        max-width: 80%; */
        max-height: 240px;
        width: 100%;
    }

    .block-text {
        order: 1 !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .mission .block-text h2::after,
    .vision .block-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .block-text h2 {
        font-size: 1.6rem;
    }

    .block-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .vision-mission-section {
        padding: 2rem 0.5rem;
    }

    .block {
        width: 95%;
    }

    .block-image,
    .block-image img {
        max-height: 200px;
    }

    .block-image img {
        width: 100%;
    }

    .block-text h2 {
        font-size: 1.4rem;
    }
}


/* -------------------------------------------------------------------------------------------------COUNT */

/* COUNTER SECTION STYLES */
.stats-section {
    padding: 5rem 1rem;

    position: relative;
    overflow: hidden;

    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    /* margin: 0 auto; */
    /* margin-top: 10px; */
    box-sizing: border-box;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background: #eff3ef;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00640052, #006400a3, #00640052);
    z-index: 2;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /* background: linear-gradient(90deg, #38b6ff, #ff5e0e); */
    background: linear-gradient(90deg, #00640052, #006400a3, #00640052);

    z-index: 2;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


.stat-item:nth-child(1) {
    animation-delay: 0.2s;
    --color: #006400;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
    --color: #4e86ff;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
    --color: #006400;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plus-icons {
    font-size: 2rem;
    margin-left: 0.2rem;
    color: #006400;
}

.line-container {
    height: 4px;
    width: 50%;
    margin: 0 auto 1rem;
    background: #00640037;
    border-radius: 2px;
    overflow: hidden;
}

.animated-line {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #006400, #006400);
    border-radius: 2px;
}

/* .animated-line::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #38b6ff, #38b6ff, #38b6ff);
  animation: lineAnimation 2s linear infinite;
} */

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #666;
    margin-top: 1rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineAnimation {
    to {
        left: 100%;
    }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .stats-section {
        /* margin-top: 60px; */
        padding: 20px 16px;
    }

    .stats-container {
        gap: 1.5rem;
    }

    .stat-item {
        min-width: 150px;
        padding: 1rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .line-container {
        margin-bottom: 1rem;
    }

    .stat-label {
        letter-spacing: 0.5px;
        font-size: 0.9rem;
    }

    .plus-icons {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        gap: 0.5rem;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin: 0;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

/* Large screens (2000px and above) */
@media (min-width: 2000px) {
   

    .stat-number {
        font-size: 5rem;
    }

    .stat-label {
        font-size: 1.5rem;
    }
}


/* --------------------------------------------------------------------------------------------------------cta */

/* CALL TO ACTION SECTION */

.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

.cta-section {
    padding: 3rem 0 2.1rem 0;
    background-color: #eff3ef;
    margin-bottom: -2.7rem;
}

.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: 14%;
    top: -1.5rem;
}

.quote-mark.right {
    right: 14%;
    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;
    font-size: 2.2rem;
}

.cta-text span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #0064002d;
    z-index: -1;
}

.cta-buttons {
    margin-top: -25px;
    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: transparent;
    border-color: #006400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.phone-button {
    background-color: transparent;
    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 */
/* Responsive Design */
@media (max-width: 768px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }

    .cta-text {
        font-size: 1.5rem !important;
        line-height: 1.3;
        padding: 0;
    }

    .cta-text span {
        font-size: 1.5rem !important;
    }

    .text-wrapper {
        padding: 0 2.5rem;
        /* Increased padding for quotes */
        position: relative;
    }

    .quote-mark {
        font-size: 3.5rem;
        opacity: 0.3;
    }

    .quote-mark.left {
        left: 2.8rem !important;
        /* Reduced left position */
        top: -0.8rem;
    }

    .quote-mark.right {
        right: 1.5rem !important;
        /* Reduced right position */
        bottom: -0.5rem !important;
    }

    .cta-buttons {
        margin-bottom: 25px;
        flex-direction: row;
        gap: 1rem;
        padding: 0;
        width: 100%;
    }

    .cta-button,
    .phone-button {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-text {
        font-size: 1.3rem !important;
        /* Slightly larger than before */
        line-height: 1.4;
    }

    .cta-text span {
        font-size: 1.3rem !important;
        /* Slightly larger than before */
        line-height: 1.4;
    }

    .text-wrapper {
        padding: 0 2rem;
        /* Adjusted padding */
    }

    .quote-mark {
        font-size: 3rem;
    }


}

@media (max-width: 360px) {
    .cta-text {
        font-size: 1.2rem !important;
    }

    .text-wrapper {
        padding: 0 1.8rem;
    }

    .quote-mark {
        font-size: 2.8rem;
    }


}

/* ----------------------------------------------------------------------our value */
/* ----------------------------------------------------------------------our value */


/* Base Styles */
.values-section {
    margin-top: 4rem;
    padding: 40px 20px;
    position: relative;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%); */
    background-color: white;
    overflow: hidden;
    isolation: isolate;
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle at 50% 50%, rgba(74, 107, 255, 0.1) 0%, transparent 70%); */
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: #2a3a6b;
    position: relative;
    z-index: 3;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.sparkle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

/* Values Container */
.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 2rem auto;
}

/* Value Card */
.value-card {
    /* text-align: justify; */
    position: relative;
    width: 350px;
    padding: 40px 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.value-card:nth-child(1) {
    animation-delay: 0.4s;
}

.value-card:nth-child(2) {
    animation-delay: 0.6s;
}

.value-card:nth-child(3) {
    animation-delay: 0.8s;
}

.value-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(74, 107, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%); */
    background: linear-gradient(135deg, rgba(74, 107, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* Featured Card */
.value-card.featured {
    background: linear-gradient(135deg, #006400d4 0%, #006400ca 100%);
    color: white;
}

.value-card.featured .value-content h3,
.value-card.featured .value-content p {
    color: white;
}

.value-card.featured .value-icon {
    fill: white;
}

/* Icon Container */
.icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.value-icon {
    width: 50px;
    height: 50px;
    fill: #006400;
    z-index: 3;
    transition: all 0.3s ease;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(74, 107, 255, 0.2);
    animation: pulse 3s infinite;
    z-index: 1;
}

/* Value Content */
.value-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.value-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: black;
    font-weight: 700;
    transition: all 0.3s ease;
}

.value-content p {
    /* text-align: justify; */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6a6f8c;
    margin: 0;
    transition: all 0.3s ease;
}

/* Highlight Effect */
.value-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0064007d, #00640090);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.value-card:hover .value-highlight {
    transform: scaleX(1);
}

/* Sparkle Elements */
.sparkle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    animation: float 5s infinite ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .values-container {
        gap: 25px;
    }

    .value-card {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
        margin-bottom: 60px;
    }

    .values-container {
        gap: 20px;
    }

    .value-card {
        width: 280px;
        padding: 30px 20px;
    }

    .icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .value-icon {
        width: 45px;
        height: 45px;
    }

    .value-content h3 {
        font-size: 1.3rem;
    }

    .value-content p {
        font-size: 1rem;
        white-space: pre-line;
        text-align: center;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .value-highlight {
        transform: scaleX(1) !important;
    }

    .values-section {
        padding: 40px 20px;
        margin: 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .values-container {
        flex-direction: column;
        align-items: center;
    }

    .value-card {
        width: 100%;
        max-width: 400px;
        padding: 35px 25px;

    }

    
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
    }

    .value-content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}

/* ---------------------------------------------------------------------------FEATURES */
.features-section {
    max-width: 2500px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #000;
    margin-bottom: 35px;
}

.section-header p {
    font-size: clamp(1rem, 1.5vw, 2.3rem);
    color: #000;
    max-width: 750px;
    margin: 0 auto;
}

.features-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #e0e0e0;
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background-color: #006400;
    z-index: 2;
    transition: height 0.5s ease-out;
}

.feature-row {
    display: flex;
    position: relative;
    z-index: 3;
    align-items: center;
    /* This ensures vertical alignment */
    min-height: 200px;
    /* Add a minimum height for each row */
    margin-bottom: 40px;
    /* Add some space between rows */
    opacity: 0.3;
    transform: translateY(30px);
    transition: all 0.6s ease;
}


.feature-row.active {
    opacity: 1;
    transform: translateY(0);
}

.feature-content {
    flex: 1;
    padding: 30px;
    box-sizing: border-box;
    width: auto;
}

.feature-image {
    flex: 1;
    text-align: center;
    /* padding: 30px; */
    box-sizing: border-box;
    padding: 0 20px;

}

/* Update the content and image containers */
.feature-content,
.feature-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* This centers content vertically */
    align-items: center;
    /* This centers horizontally */
    height: 100%;
    /* Take full height of parent */
}

.feature-image img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;

}

.feature-image img:hover {
    transform: scale(1.03);
}

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 4px solid #e0e0e0;
    z-index: 4;
    transition: all 0.3s ease;
}

.feature-row.active .timeline-dot {
    border-color: #006400;
    background-color: #006400;
    box-shadow: 0 0 0 4px #00640028;
}


.feature-content h3 {
    font-size: clamp(1rem, 1.5vw, 2rem);
    color: #000;
    margin: 0;
    line-height: 1.4;
    /* Add this to ensure consistent vertical alignment */
    align-self: center;
}


/* Alternating layout */
.feature-row:nth-child(odd) .feature-content {
    order: 1;
    text-align: right;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}


.feature-row:nth-child(1) .feature-content {
    padding-right: 500px !important;
}

.feature-row:nth-child(odd) .feature-image {
    order: 2;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: flex-start; */
}

.feature-row:nth-child(even) .feature-content {
    order: 2;
    text-align: left;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left align for even rows */

}

.feature-row:nth-child(even) .feature-image {
    order: 1;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}


/* Responsive adjustments */
@media (max-width: 992px) {

    .feature-content,
    .feature-image {
        padding: 8px !important;
    }

    .feature-row:nth-child(odd) .feature-content {
        padding-right: 40px;
    }

    .feature-row:nth-child(odd) .feature-image {
        padding-left: 40px;
    }

    .feature-row:nth-child(even) .feature-content {
        padding-left: 40px;
    }

    .feature-row:nth-child(even) .feature-image {
        padding-right: 40px;
    }
}

@media (max-width: 768px) {



    .features-section {
        padding: 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        margin-bottom: 20px;
    }

    

    .features-timeline {
        padding: 0;
    }

   
    .feature-content,
    .feature-image {
        width: 100%;
        padding: 8px !important;
        text-align: center !important;
        order: initial !important;
    }

    .feature-content {
        padding-top: 0 !important;
    }

    .feature-content h3 {
        margin-top: 15px !important;
    }

    /* .feature-image {
        padding-bottom: 0 !important;
    } */

    .timeline-dot {
        top: 0;
        transform: translate(-50%, -50%);
    }
}

@media (min-width: 2000px) {
    .features-section {
        padding: 100px 10%;
    }

    .feature-content h3 {
        font-size: 2rem;
    }
}

/*--------------------------------------------------------------new cta */
/* Base Container Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Work Process Section - Initially Hidden */
.work-process-section {
    background-color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    min-height: 75vh;
    /* Ensure section takes full viewport height */
}

/* Section Visibility Class */
.work-process-section.visible {
    opacity: 1;
}

/* Initially Hidden Animated Elements */
.section-title,
.section-subtitle,
.process-step,
.process-center-circle {
    opacity: 0;
}

/* Title Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 3rem;
    transform: translateY(30px);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-top: 5px;
    transform: translateY(30px);
}

/* Process Container */
.process-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 0;
}

/* Process Step - Base Styles */
.process-step {
    width: calc(33.333% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: translateY(50px);
    z-index: 2;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #006400;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #006400;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.step-icon i {
    transition: all 0.3s ease;
}

.step-connector {
    position: absolute;
    height: 35px;
    width: 2px;
    background-color: #006400;
    bottom: -35px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.step-content {
    text-align: center;
    margin-top: 30px;
    padding: 0 10px;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Center Circle - Initially Hidden */
.process-center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    z-index: 0;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
}

.circle-inner {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
}

.circle-inner span {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
}

/* Animation Classes */
.animated {
    animation-fill-mode: forwards !important;
}

.section-title.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-subtitle.animated {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.process-step.animated {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: calc(var(--order) * 0.15s);
}

.process-center-circle.animated {
    animation: scaleIn 0.8s ease-out 0.6s forwards;
}

/* Hover Effects */
.process-step:hover .step-number {
    background-color: #2c3e50;
    transform: scale(1.1);
}

.process-step:hover .step-icon {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    color: #2c3e50;
}

.process-step:hover .step-icon i {
    transform: scale(1.1);
}

.process-step:hover .step-connector {
    opacity: 0.8;
    height: 35px;
}

.process-step:hover .step-content h3 {
    color: #006400;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .process-step {
        width: calc(50% - 30px);
    }

    .process-center-circle {
        width: 180px;
        height: 180px;
    }

    .circle-inner span {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .work-process-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .process-container {
        padding: 0px 0;
        gap: 20px;
    }

    .process-step {
        max-width: 350px;
        margin-bottom: 20px;
    }

    .step-connector {
        display: none;
    }

    .process-center-circle {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 40px auto;
        width: 160px;
        height: 160px;
        animation: scaleIn 0.8s ease-out 0.8s forwards;
    }

    .circle-inner span {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .work-process-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 25px;
    }

    .step-content h3 {
        font-size: 1rem;
        height: 50px;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .process-center-circle {
        width: 140px;
        height: 140px;
    }
}

/*------------------------------------- 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;
}

.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 */

    .contact-separator {
        display: none !important;
    }
    footer {
        padding: 1.5rem 1rem 0;
    }
    
    .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;
}



/* ----------------------------------------------------NEW FEATURES  */

/* ----------------------------------------------------NEW FEATURES  */
.cheatsheet-section {
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #eff3ef;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.highlight-green {
    color: #22c55e;
}

.highlight-purple {
    color: #22c55e;
}

.cheatsheet-section {
    max-width: 1200px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
}

.card {
    --card-color: var(--bg);
    border-radius: 16px;
    padding: 2.5rem 1rem 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    background: var(--card-color);
    height: 300px;
    transform: rotate(var(--rotate));
    transition: all 0.3s ease;
}

.grid .card:nth-child(3n+1) {
    --rotate: -4deg;
}

.grid .card:nth-child(3n+2) {
    --rotate: 2deg;
}

.grid .card:nth-child(3n+3) {
    --rotate: -2.5deg;
}

/* Realistic SVG push pin */
.pin {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 36px;
    border-radius: 12px 12px 50% 50%;
    background: radial-gradient(circle at 50% 30%, #eee, #aaa);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

/* Font Awesome icon styling */
.new-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    /* background: #fff; */
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-logo i {
    font-size: 2rem;
    color: var(--card-color);
    filter: brightness(0.6);
}

.number {
    margin-top: 2rem;
    font-weight: bold;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.4;
}

/* Responsive grid */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .card {
        transform: rotate(var(--mobile-rotate)) !important;
        width: 90%;
        margin: 0 auto;
    }

    .grid .card:nth-child(odd) {
        --mobile-rotate: -3deg;
    }

    .grid .card:nth-child(even) {
        --mobile-rotate: 3deg;
    }
}




/* 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;
    }
}