.services{
padding:20px 0px 0px;
}


.services-section{
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* Card */

.service-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    display:flex;
    min-height:260px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* Image */

.service-image{
    flex:0 0 38%;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px 0px 0px 12px;
    transition:.6s ease;
}

.service-card:hover img{
    transform:scale(1.08);
}

/* Content */

.service-content{
    flex:1;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.service-content h3{
    font-size:1.4rem;
    color:#0f172a;
    margin-bottom:10px;
}

.service-content ul{
    list-style:none;
    margin-bottom:10px;
}

.service-content ul li{
    position:relative;
    padding-left:24px;
    margin-bottom:10px;
    color:#64748b;
    line-height:1.6;
}

.service-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#00b894;
    font-weight:bold;
}

.btn{
    width:max-content;
    text-decoration:none;
    background:linear-gradient(135deg,#0057ff,#00bfff);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateX(5px);
}

/* Tablet */

@media(max-width:1024px){

    .services-section{
        grid-template-columns:1fr;
    }
}

/* Mobile */

@media(max-width:768px){

    .service-card{
        flex-direction:column;
    }

    .service-image{
        height:220px;
    }

    .service-content{
        padding:25px;
    }

    .service-content h3{
        font-size:1.4rem;
    }
}

.section-header {text-align: center;}

        .services .section-desc{color:white;}

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 16px;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--text-light), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

/* Product Cards */
.products-grid {
    background-color:#1f3a7a;
    padding: 40px 0px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    width: 100%;
    place-items: center;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: cardFadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.section-header .pro_desc{color:white !important;}

.product-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
        }

.card-accent-border {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            border-bottom: 3px solid;
        }

/* ============================================
           LOGO CONTAINER
           ============================================ */
        .card-logo-container {
            position: relative;
            width: 100%;
            height: 180px;
            margin-bottom: 24px;
            border-radius: 12px;
            overflow: hidden;
            background: #f1f5f9;
        }

        .card-logo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .product-card:hover .card-logo-container img {
            transform: scale(1.1);
        }

        /* ============================================
           CARD CONTENT
           ============================================ */
        .card-content {
            flex: 1;
            margin-bottom: 24px;
        }

        .product-name {
            font-size: 24px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
            line-height: 1.3;
        }

        .product-description {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
            font-weight: 400;
        }

        /* ============================================
           CTA BUTTON
           ============================================ */
        .card-cta {
            margin-top: auto;
        }

        .card-cta a {
            text-decoration: none;
        }

        .btn-learn-more {
            width: 100%;
            padding: 12px 16px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            font-family: 'Sora', sans-serif;
        }

        .btn-learn-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-learn-more:active {
            transform: translateY(0);
        }

        .btn-arrow {
            display: inline-block;
            transition: transform 0.3s ease;
            font-size: 16px;
        }

        .btn-learn-more:hover .btn-arrow {
            transform: translateX(4px);
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes cardFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

/* ============================================
           RESPONSIVE DESIGN - TABLET (768px to 1024px)
           ============================================ */
        @media screen and (max-width: 1024px) {
            .products-section {
                padding: 60px 0;
            }

            .container {
                padding: 0 30px;
            }

            .products-grid {
                gap: 30px;
            }

            .section-title {
                font-size: 44px;
            }

            .product-card {
                padding: 28px;
            }

            .card-logo-container {
                height: 160px;
            }

            .product-name {
                font-size: 22px;
            }

            .product-description {
                font-size: 14px;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - SMALL TABLET (640px to 768px)
           ============================================ */
        @media screen and (max-width: 768px) {
            .products-section {
                padding: 60px 0;
            }

            .container {
                padding: 0 24px;
            }

            .section-header {
                margin-bottom: 10px;
            }

            .section-title {
                font-size: 36px;
                margin-bottom: 12px;
            }

            .section-subtitle {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 24px;
            }

            .product-card {
                padding: 24px;
                border-radius: 12px;
            }

            .card-logo-container {
                height: 150px;
                margin-bottom: 20px;
            }

            .card-content {
                margin-bottom: 20px;
            }

            .product-name {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .product-description {
                font-size: 14px;
            }

            .btn-learn-more {
                padding: 11px 14px;
                font-size: 14px;
            }

            .products-section::before {
                width: 300px;
                height: 300px;
                top: -150px;
                right: -150px;
            }

            .products-section::after {
                width: 280px;
                height: 280px;
                bottom: -80px;
                left: -100px;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE (480px to 640px)
           ============================================ */
        @media screen and (max-width: 640px) {
            .products-section {
                padding: 50px 0;
            }

            .container {
                padding: 0 16px;
            }

            .section-header {
                margin-bottom: 10px;
            }

            .section-title {
                font-size: 32px;
                letter-spacing: -0.5px;
            }

            .section-subtitle {
                font-size: 15px;
            }

            .decorative-line {
                width: 60px;
                height: 3px;
                margin-top: 16px;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .product-card {
                padding: 20px;
            }

            .card-accent-border {
                height: 2px;
            }

            .card-logo-container {
                height: 200px;
            }

            .product-name {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .product-description {
                font-size: 13px;
                line-height: 1.5;
            }

            .btn-learn-more {
                padding: 10px 12px;
                font-size: 13px;
                gap: 6px;
            }

            .btn-arrow {
                font-size: 14px;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - SMALL MOBILE (under 480px)
           ============================================ */
        @media screen and (max-width: 480px) {
            .products-section {
                padding: 40px 0;
            }

            .container {
                padding: 0 14px;
            }

            .section-header {
                margin-bottom: 10px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 14px;
                margin-bottom: 16px;
            }

            .products-grid {
                gap: 16px;
            }

            .product-card {
                padding: 18px;
                border-radius: 10px;
            }

            .card-logo-container {
                height: 180px;
                margin-bottom: 16px;
                border-radius: 10px;
            }

            .card-content {
                margin-bottom: 16px;
            }

            .product-name {
                font-size: 17px;
                margin-bottom: 8px;
            }

            .product-description {
                font-size: 13px;
            }

            .btn-learn-more {
                padding: 10px 12px;
                font-size: 13px;
            }

            .products-section::before {
                width: 200px;
                height: 200px;
                top: -100px;
                right: -100px;
                opacity: 0.5;
            }

            .products-section::after {
                width: 180px;
                height: 180px;
                bottom: -60px;
                left: -80px;
                opacity: 0.5;
            }
        }


        
.contact-card{
    background: linear-gradient(135deg,#0f172a,#2563eb);
    color:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(37,99,235,.25);
    max-width:420px;
}

.contact-card h3{
    margin-bottom:20px;
    font-size:32px;
    color:#fff;
}

.contact-item{
    margin-bottom:18px;
    line-height:1.7;
    font-size:17px;
}

.contact-item a{
    color:#fff;
    text-decoration:none;
}

.wht_btn{
    display:inline-block;
    margin-top:15px;
    background:#fff;
    color:#2563eb;
    padding:12px 24px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    border:0px;
    cursor:pointer;
}

.wht_btn:hover{
    transform:translateY(-3px);
}