html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

:root {
    --brand-lime: #78BE20;
    --brand-lime-hover: #72A642;
    --charcoal-black: #262626;
    --charcoal-dark: #1a1a1a;
    --charcoal-light: #383838;
    --pure-white: #FFFFFF;
    --amber-highlight: #FFC107;
    --text-gray: #383838;
    --text-light: #FFFFFF;
}

/* Products Section */
.products-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #262626;
    border-radius: 20px;
    max-width: 1280px;
    margin: 0 auto 60px;
    box-shadow: 0 6px 20px rgba(120, 190, 32, 0.1);
    justify-content: center;
}
.title-section {
    text-align: center;
    padding: 20px 20px;
    background-color: #262626;
    border-radius: 20px;
    max-width: 1280px;
    margin: 0 auto 60px;
    box-shadow: 0 6px 20px rgba(120, 190, 32, 0.1);
    justify-content: center;
}

.section-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 3px solid var(--brand-lime);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

    .section-header img {
        width: 35px;
        height: 35px;
    }

.products-section p {
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
.title-section p {
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Product Cards Grid */
.product-cards {
    display: grid;
/*    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
*/    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

    .product-cards > .product-card:last-child {
        justify-self: center;
    }
/* Mobile – 1 per row */
@media (max-width: 600px) {
    .product-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Tablet / iPad / Medium devices – 2 per row */
@media (min-width: 601px) and (max-width: 1199px) {
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens – 4 per row */
@media (min-width: 1200px) {
    .product-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* Each Product Card */
.product-card {
    background: var(--pure-white);
    border: 2px solid #e6f2e6;
    border-top: 5px solid var(--brand-lime);
    border-radius: 15px;
    padding: 30px 25px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-top-color: #55b12e;
    }

    .product-card img {
        width: auto;
        height: 50px;
        margin-bottom: 15px;
    }

    .product-card h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: var(--charcoal-black);
    }

    .product-card p {
        font-size: 0.9rem;
        color: black;
        line-height: 1.5;
        text-align: center;
    }

/* Responsive */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 15px;
    }
    .title-section {
        padding: 60px 15px;
    }
    .section-header {
        font-size: 1.6rem;
    }
}

/* Body Content Sections */
.main-container,
.main-container2 {
    background-color: #daf5a1; /* soft lime shade */
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 6px 15px rgba(120, 190, 32, 0.1);
}

.box,
.service-card,
.option-card,
.feature-card {
    background-color: var(--pure-white);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(120, 190, 32, 0.12);
    padding: 30px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .box h2,
    .service-card h4,
    .option-card h4,
    .feature-card h4 {
        color: var(--charcoal-black);
        margin-bottom: 15px;
    }

    .box p,
    .service-card p,
    .option-card p,
    .feature-card p {
        color: var(--text-light);
        font-size: 1rem;
    }

    .box:hover,
    .service-card:hover,
    .option-card:hover,
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(120, 190, 32, 0.2);
    }

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

li {
    margin-bottom: 0rem;
}

/* Responsive for body content */
@media (max-width: 768px) {
    

    h1 {
        font-size: 2rem;
    }

    .main-container,
    .main-container2 {
        padding: 30px 20px;
    }
}
/* Typing effect styles - Fixed for mobile */
.typing-container {
    display: inline-block;
    position: relative;
    max-width: 100%;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    
    animation: blink-caret 1s step-end infinite;
}

/* Remove the separate cursor element styles */
.typing-cursor {
    display: none; /* Hide the separate cursor */
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: var(--brand-lime)
    }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .typing-text {
        white-space: normal;
        text-align: center;
        border-right: none; /* Remove cursor on mobile */
        animation: none; /* Remove blink animation on mobile */
    }

    .hero-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .typing-text {
        font-size: 1.8rem; /* Smaller font for very small screens */
    }
}

/* Ensure proper spacing on mobile */
.mobile-optimized-title {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .mobile-optimized-title {
        min-height: 60px;
    }
}

/*Added Css for Home Page Changes*/

/* By the Numbers Section */
.flag-icon {
    width: 20px;
    height: auto;
    vertical-align: middle;
}
.numbers-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.numbers-container {
    max-width: 1300px;
    margin: 0 auto;
    border: 1px solid #e5e5e5;
    border-radius:12px;
    padding: 60px 40px;
}

.numbers-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.number-card h3 {
    font-size: 50px;
    margin-bottom: 10px;
    color: #000;
}

.flip-number {
    display: inline-block;
    transform: rotateY(90deg);
    opacity: 0;
    transition: transform 3s ease, opacity 3s ease;
}

    .flip-number.flip {
        transform: rotateY(0deg);
        opacity: 1;
    }



.number-card p {
    font-size: 16px;
    color: #555;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }
}

@media (max-width: 576px) {
    .numbers-grid {
        grid-template-columns: 1fr;
    }
}

section {
    padding: 40px 20px;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

/* Industry */
.industry-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    border-bottom: 4px solid #78BE20;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s;
}
    .industry-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
       
    }

    .industry-card .icon {
        font-size: 28px;
    }

/* CTA */
.cta-section {
    text-align: center;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
}
.btn-border-reveal {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    text-decoration: none;
    background-color: transparent;
    color: #78BE20;
    border: 2px solid #78BE20;
    position: relative;
}

    .btn-border-reveal::after {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #78BE20;
        transition: width 0.3s ease;
        z-index: -1;
    }

    .btn-border-reveal:hover::after {
        width: 100%;
    }

    .btn-border-reveal:hover {
        color: white;
    }

/* About */
.about-content {
    max-width: 1300px;
    margin: auto;
    text-align:justify;
}

.about-image img {
    width: 100%;
    vertical-align:central;
    margin-top:150px;
    
}

/* Values */
.values-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.value-card span {
    font-size: 28px;
}

/* Responsive */
@media (max-width: 992px) {
    .industry-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .industry-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}


/* Our Solutions */
.solutions-section {
    padding: 40px 20px;
    background: #ffffff;
}

    .solutions-section h2 {
        text-align: center;
        font-size: 34px;
        margin-bottom: 10px;
    }

.solutions-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 16px;
}

/* Grid */
.solutions-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.solution-card {
    border: 1px solid #e5e5e5;
    background: #fff;
    border-bottom: 4px solid #78BE20;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .solution-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .solution-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

/* Content */
.solution-content {
    padding: 30px;
}

.solution-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

    .solution-title h4 {
        font-size: 20px;
        margin: 0;
    }

    .solution-title .icon {
        font-size: 22px;
    }

.solution-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Link */
.solution-link {
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .solution-link:hover {
        text-decoration: underline;
        color: #78BE20;
    }

/* Responsive */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('/images/Digital_Tranformation.jpeg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;


}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Content */
.hero-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
    z-index: 2;
}

    .hero-content h1 {
        font-size: 52px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 25px;
        font-family: "Georgia", serif;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 1.6;
        color: #e0e0e0;
        margin-bottom: 40px;
    }

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: #ffffff;
    color: #000;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 14px 36px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    font-weight: 600;
}

/* Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* heding */

.bp-type {
    color: #78BE20;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bp-underline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

    .bp-underline .line {
        height: 4px;
        background: #78BE20;
        border-radius: 4px;
    }



    .bp-underline .big {
        width: 120px;
    }

    .bp-underline .dot {
        width: 10px;
        height: 10px;
        background: #78BE20;
        border-radius: 50%;
    }

.cloud-outline {
    color: #4682b4; /* Steel Blue */
    font-size: 36px;
    display: inline-block;
    transform: scale(1.6);
}



