:root {
    --primary: #2563eb;
    --secondary: #1e40af;
    --accent: #f59e0b;
    --light: #f8fafc;
    --dark: #1e293b;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #334155;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.gradient-bg {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.typewriter {
    overflow: hidden;
    border-right: .15em solid var(--primary);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--primary);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/*  Our Servce section CSS */


/* Images styling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.logo-wrapper {
    height: 80px;
}

.logo-img {
    height: 100%;
    width: auto;
    border-radius: 0;
    margin: 0;
    transition: transform 0.3s ease;
}
.logo-img--small {
  transform: scale(0.75);
}



/* Container for images */
.p-6 {
    padding: 1.5rem;
}

/* Max width for images to make them smaller */
.max-w-md {
    max-width: 28rem;
    /* 448px */
}

/* Animation styles */
.service-content-left.show,
.service-content-right.show {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.service-content-left,
.service-content-right {
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .lg\:flex-row {
        flex-direction: column;
    }

    .lg\:w-1\/2 {
        width: 100%;
    }

    .order-2,
    .order-1 {
        order: 0;
    }

    .text-4xl {
        font-size: 2.5rem;
    }

    .text-5xl {
        font-size: 3rem;
    }
}

/* Points section styling */
.border-l-4 {
    border-left-width: 4px;
}

.space-y-4>*+* {
    margin-top: 1rem;
}



/* Custom Animations */
@keyframes moveRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes moveLeft {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }
}

@keyframes checkAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkFinal {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}



.animate-move-left {
    animation: moveLeft 2s ease-in-out infinite;
}

.animate-check {
    animation: checkAnimation 1s ease-out forwards;
}

.animate-check-final {
    animation: checkFinal 2s ease-in-out infinite;
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Specific animations for left/right */
.animate-on-scroll[data-animation="fade-left"] {
    transform: translateX(-30px);
}

.animate-on-scroll[data-animation="fade-right"] {
    transform: translateX(30px);
}

.animate-on-scroll[data-animation="fade-left"].show {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="fade-right"].show {
    transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .md\:w-1\/2 {
        width: 100%;
    }

    .md\:pr-16,
    .md\:pl-16 {
        padding-right: 0;
        padding-left: 0;
    }

    .md\:text-right,
    .md\:text-left {
        text-align: center;
    }

    .flex-col>div {
        order: 0 !important;
    }
}

/* Service css  */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.group:hover .relative.z-10.w-20.h-20 {
    transform: rotateY(180deg) scale(1.1);
    transition: transform 0.6s ease;
}