 *{
            font-family: 'Inter', sans-serif;
        }

        body{
            background:#d9d9d9;
            overflow-x:hidden;
        }
        .nav-logo{
            height:20px;
            width:100px;
            margin:0px;
            
        }

        /* Background blob */
        .blob{
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float{
            0%{
                transform:translate(-50%,-50%) rotate(0deg);
            }
            50%{
                transform:translate(-50%,-48%) rotate(10deg);
            }
            100%{
                transform:translate(-50%,-50%) rotate(0deg);
            }
        }

        /* Hamburger Animation */
        .active .line1{
            transform: rotate(45deg) translateY(6px);
        }

        .active .line2{
            transform: rotate(-45deg) translateY(-6px);
        }

        .hamburger span{
            transition:.3s ease;
        }

        .gradient-text{
            background: linear-gradient(
                90deg,
                #b892ff,
                #dad5a7,
                #9b0202,
                #0393e7,
                #2c339c
            );
            -webkit-background-clip:text;
            -webkit-text-fill-color:transparent;
        }
        /* Logo Pill */
.logo-pill{
    position:relative;
    overflow:hidden;

    width:160px;
    height:105px;

    padding:0;
    margin:0;

    border-radius:999px;
    background:transparent;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* Logo Wrapper */
.logo-wrapper{
    position:relative;

    width:100%;
    height:100%;

    overflow:hidden;
}

/* Both Logos */
.logo{
    position:absolute;

    left:50%;
    top:0;

    width:100%;
    height:100%;

    object-fit:contain;

    transform:translateX(-50%);
    transition:all .5s ease;
}

/* Visible Logo */
.logo-top{
    top:0;
}

/* Hidden Logo */
.logo-bottom{
    top:100%;
}

/* Hover Animation */
.logo-pill:hover .logo-top{
    top:-100%;
}

.logo-pill:hover .logo-bottom{
    top:0;
}

/* .quote-btn{
    position: relative;
   ]left: 50%; 
    width: auto;
    height: 100px;
    overflow: hidden;
}*/
/* .quote-content{
    position: absolute;
    
    transform: translateX(-50%);
    width: auto;
    height: 40px;
    transition: all 0.5s ease;
}
.quote-top{
    top: 0;
}
.quote-bottom {
    top: 100%;
}
.quote-btn:hover .quote-top{
    top:100%;
}
.quote-btn:hover .quote-bottom{
    top:0;
} */ 

/* ROW LAYOUT */
.services-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTON BASE */
.services-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px;
    border-radius: 9999px;

    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(16px);

    overflow: hidden;
    cursor: pointer;
    text-decoration: none;

    min-width: 260px;
    height: 52px;
}

/* CONTENT */
.btn-content {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;

    color: white;
    font-size: 14px;
    font-weight: 500;

    transition: all 0.5s ease;
    transform: translateY(0);
}

/* TOP TEXT */
.btn-top {
    top: 0;
}

/* BOTTOM TEXT */
.btn-bottom {
    top: 100%;
}

.services-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* BUTTON BASE */
.services-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 50px 14px 24px; /* extra space for arrow */
    border-radius: 9999px;


    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(14px);

    color: white;
    text-decoration: none;
    overflow: hidden;

    transition: all 0.4s ease;
}

/* ICON */
.btn-icon {
    transition: transform 0.4s ease;
}

/* TEXT LAYERS */
.btn-text,
.btn-hover-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;

    transition: all 0.4s ease;
}

/* DEFAULT TEXT */
.btn-text {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* HOVER TEXT (hidden) */
.btn-hover-text {
    opacity: 0;
    transform: translate(-50%, 10px);
    filter: blur(6px);
}

/* HOVER EFFECT */
.services-btn:hover {
    background-color:black;
    border:5px solid;
}

/* text swap */
.services-btn:hover .btn-text {
    opacity: 0;
    transform: translate(-50%, -10px);
    filter: blur(6px);
}

.services-btn:hover .btn-hover-text {
    opacity: 1;
    transform: translate(-50%, 0);
    filter: blur(0);
}

/* icon animation */
.services-btn:hover .btn-icon {
    transform: rotate(20deg) scale(1.1);
}

.btn-arrow{
    position:absolute;
    right:12px;
    width:28px;
    height:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:rgba(255,255,255,.12);

    transition:.4s ease;
}

.services-btn:hover .btn-arrow{
    transform:translateX(5px) rotate(-45deg);
    background:white;
    color:black;
}

/* counter section */
.stats-strip{
    margin: 50px auto;
    width: 90%;
    max-width: 1200px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 40px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-item{
    flex:1;
    text-align:center;
}

.stat-item h2{
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;

    background: linear-gradient(
        90deg,
        black,
        #db1001,
        #eb5e01,
        #8EC5FF
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.stat-item span{
    color: rgba(5, 0, 0, 0.8);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.divider{
    width:1px;
    height:80px;
    background:rgba(255,255,255,.15);
}

@media(max-width:900px){

    .stats-strip{
        flex-direction:column;
        gap:30px;
    }

    .divider{
        width:80%;
        height:1px;
    }

    .stat-item h2{
        font-size:3rem;
    }
}
.stats-strip{
    position: relative;
}

.stats-strip::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:30px;

    background: linear-gradient(
        90deg,
        rgba(255,227,140,.2),
        rgba(255,183,213,.2),
        rgba(183,192,255,.2),
        rgba(142,197,255,.2)
    );

    filter: blur(25px);
    z-index:-1;
}

/* About section */
.about-section{
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    position: relative;
    margin-bottom: 0;
}

.about-container{
    max-width: 1100px;
    text-align: center;
}

.about-tag{
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.about-tag span{
    color: rgba(7, 0, 0, 0.8);
    font-size: 14px;
    letter-spacing: 2px;
}

.about-text{
    font-size: 20px;
    line-height: 1.50;
    font-weight: 100;

    /* Initial faded look */
    color: rgba(255,255,255,0.12);

    transition: color .2s linear;
}
.reveal-text{
    max-width:1100px;
    margin:auto;
    text-align:center;
    line-height:1.6;
    font-size:clamp(2rem,3vw,3rem);
}

.reveal-text span{
    color:rgba(5,0,0,0.15);
    transition:color .25s ease;
}

.about-image-section{
    position: relative;
    padding:0;
    margin-top: 0;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Huge Background Text */

.bg-text{
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    white-space: nowrap;

    font-size: clamp(5rem, 14vw, 14rem);
    font-weight: 700;

    color: rgba(8, 1, 1, 0.08);

    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* Main Image Card */

.image-card{
    position: relative;
    width: 700px;
    max-width: 90%;
    

    border-radius: 70px;
    

    overflow: hidden;

    z-index: 2;

    backdrop-filter: blur(10px);

    transition: all .5s ease;
}
.image-card::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    box-shadow:
        inset 0 50px 50px rgba(255, 255, 255, 0.945),
        inset 0 -2px 2px rgba(255,255,255,0.08),
        inset 0 0 40px rgba(255,255,255,0.12);

    pointer-events: none;
}

/* Glow */

.image-card::before{
    content: '';

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
    radial-gradient(
        circle at center,
        rgba(255,255,255,.15),
        transparent 70%
    );

    z-index: 1;
}

/* Image */

.image-card img{
    width: 100%;
    display: block;

    transition: transform .8s ease;
}

/* Hover Zoom */

.image-card:hover img{
    transform: scale(1.05);
}

/* Play Button */

.play-btn{
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: rgba(255,255,255,.2);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.3);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;
    color: white;

    z-index: 3;

    transition: .4s;
}
/* MARQUEE */

.marquee-wrapper{
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    overflow: hidden;

    /* transform: translateY(-50%); */
    z-index: 1;
}

.marquee-track{
    display: flex;
    width: max-content;

    animation: marqueeMove 30s linear infinite;
}

.marquee-track span{
    white-space: nowrap;

    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 1;

    color: rgba(117, 22, 22, 0.08);

    margin-right: 80px;
}

@keyframes marqueeMove{

    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(-50%);
    }
}

/* why choose us */
.why-choose-us{
    padding:120px 10%;
    position:relative;
}

.section-header{
    text-align:center;
    margin-bottom:80px;
}

.section-header h2{
    font-size:4rem;
    margin-bottom:20px;
}

.section-header p{
    max-width:700px;
    margin:auto;
}

.timeline-container{
    position:relative;
    max-width:1200px;
    margin:auto;
    padding:100px 0;
}

.timeline-line{
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:4px;
    height:100%;
    background:#d9d9d9;
    border-radius:50px;
}

.timeline-progress{
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:4px;
    height:0;

    background:linear-gradient(
        to bottom,
        #ffb347,
        #c52003,
        #e92b6a,
        #3b82f6
    );

    border-radius:50px;
    z-index:2;
}

.timeline-item{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    
    min-height:180px;
}
.timeline-item.left{
    padding-right:100px;
}

.timeline-item.right{
    margin-left:50%;
    padding-left:100px;
}

.card-content{
    background:#efefef;
    padding:40px;
    border-radius:40px;
    width:45%;
    opacity:0.4;
    transform:scale(0.95);

    transition:
        opacity .6s ease,
        transform .6s ease,
        box-shadow .6s ease,
        border-color .6s ease;

    box-shadow:
        0 10px 20px rgba(0,0,0,.05);

    border:2px solid transparent;
}

.card-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.card-content p{
    font-size:18px;
    line-height:1.6;
}

.timeline-item.active .icon-box{

    background: #3d3d3d;
    color:white;

    transform:translateY(-5px);

    box-shadow:
    0 15px 30px rgba(0,0,0,.15),
    0 0 25px rgba(183,192,255,.3);
}

.timeline-item.active .card-content{
    opacity:1;
    transform:scale(1);
    background:white;
    box-shadow:
        0 15px 40px rgba(0,0,0,.08),
        0 0 25px rgba(255,183,213,.25);
}


.timeline-item.active .step-number{

    background:white;

    color:#5d7cff;

    font-weight:700;
}


@media(max-width:768px){

    .timeline-line,
    .timeline-progress{
        left:30px;
    }

    .timeline-item{
        width:100%;
        padding-left:80px !important;
        padding-right:20px !important;
        margin-left:0 !important;
    }

}
.card{
    width:420px;

    padding:35px;

    border-radius:35px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    transition:.5s ease;

    opacity:.4;
    transform:scale(.92);
}

.left{
    margin-right:auto;
}

.right{
    margin-left:auto;
}

.dot{
    position:absolute;
    left:50%;
    transform:translateX(-50%);

    width:22px;
    height:22px;

    border-radius:50%;
    background:#ddd;

    z-index:5;
}

.side-block{
    width:45%;

    display:flex;
    align-items:center;
    gap:15px;
}

.left-block{
    justify-content:flex-end;
    padding-right:50px;

}

.right-block{
    justify-content:flex-start;
    padding-left:50px;
}

.icon-box{
    width:64px;
    height:64px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f4f4f4;

    font-size:22px;

    transition:.5s;
}
.step-number{
    width:36px;
    height:36px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f8f8f8;

    font-weight:600;
    font-size:14px;
}


.left-content{
    text-align:right;
    padding-right:50px;
    border: 1px solid black;
    border-radius: 20px;
}

.right-content{
    text-align:left;
    padding-left:50px;
    border: 1px solid black;
    border-radius: 20px;
}

.card-content h3{
    margin-bottom:10px;
    font-size:1.4rem;
}

.card-content p{
    color:#777;
    line-height:1.7;
}
.timeline-item.active .card-content{

    opacity:1;
    transform:scale(1);

    background:#fff;

    box-shadow:
        0 25px 60px rgba(0,0,0,.15),
        0 0 30px rgba(216,180,254,.4);
}

.timeline-item.active .dot{

    background:white;
    box-shadow:
    0 0 20px #B7C0FF,
    0 0 40px #d4045b;
}

.why-tag{
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.why-tag span{
    color: rgba(7, 0, 0, 0.8);
    font-size: 14px;
    letter-spacing: 2px;
}

/* Mission & Vision */
.mission-vision-section{
    padding: 0;
    margin: 0;
}

.mv-container{
    position:relative;
    max-width:1000px;
    margin:auto;
}

.mv-card{

    display:flex;
    align-items:center;

    background:#f4f4f4;

    border-radius:80px;

    overflow:hidden;

    min-height: 320px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

/* IMAGE */

.mv-image{
    position: relative;
    width:50%;
    height: 320px;
    overflow: visible;
    border-radius: 60px;
    box-shadow:
        0 0 30px rgba(255,255,255,.8),
        0 0 60px rgba(110, 110, 110, 0.6),
        0 0 100px rgba(253, 252, 252, 0.842);
    /* padding-left: 40px; */
}
/* Fog Effect */
.mv-image::before{
    content: "";

    position: absolute;
    inset: -40px;

    border-radius: 90px;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,.95) 0%,
        rgba(255,255,255,.5) 40%,
        transparent 80%
    );

    filter: blur(40px);

    z-index: 0;
}

.mv-image img{
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 60px;

    display: block;
}

/* CONTENT */

.mv-content{
    width:50%;
    padding: 40px;
}

.mv-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:#fff;

    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.mv-content h2{
    font-size: 2.2rem;
    margin: 15px 0;
    line-height:1.2;
}

.mv-content p{
    font-size: 16px;
    line-height: 1.6;
    color:#666;
}

/* STATS */

.mv-stats{
    display:flex;
    gap:60px;

    margin-top:60px;
}

.mv-stats h3{
    font-size:2rem;
    margin-bottom:5px;
}

/* ARROWS */

.nav-btn{

    position:absolute;
    top:50%;

    transform:translateY(-50%);

    width:65px;
    height:65px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    background:#111;
    color:white;

    font-size:22px;

    z-index:10;

    transition:.4s;
}

.nav-btn:hover{

    transform:
    translateY(-50%)
    scale(1.1);

    box-shadow:
    0 0 25px rgba(80,120,255,.4);
}

.prev-btn{
    left:-30px;
}

.next-btn{
    right:-30px;
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow {
    color: #000;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.back-btn:hover .arrow {
    transform: translateX(-8px);
}

/* SLIDE ANIMATION */

.mv-card.animate{

    animation:
    slideFade .7s ease;
}

@keyframes slideFade{

    0%{
        opacity:0;
        transform:translateY(30px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }
}

/* contact section */
.contact-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 0 100px rgba(255,255,255,0.35),
        inset 0 2px 10px rgba(255,255,255,0.4),
        0 30px 60px rgba(0,0,0,0.15);

    border: 1px solid rgba(255,255,255,0.2);
}

.contact-section{
    position: relative;
    min-height: 100vh;
    margin-top: 80px;
    padding: 50px 0;
    
}
.contact-wrapper{
    display:flex;
    justify-content:center;
    padding:0 30%;
}

.contact-input{
    width:100%;
    padding:14px 20px;
    border-radius:18px;

    background:rgba(51, 50, 50, 0.212);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.08);

    color:#fff;
    outline:none;

    transition:all .4s ease;
}

/* Placeholder */
.contact-input::placeholder{
    color:rgba(8, 8, 8, 0.65);
}

/* Hover Effect */
.contact-input:hover{
    transform:translateY(-3px);

    border-color:rgba(7, 7, 7, 0.35);

    background:rgba(255,255,255,.12);

    box-shadow:
        0 10px 30px rgba(255,255,255,.08),
        inset 0 1px 1px rgba(255,255,255,.25);
}

/* Focus Effect */
.contact-input:focus{
    transform:translateY(-3px);

    border-color:rgba(255,255,255,.6);

    background:rgba(255,255,255,.15);

    box-shadow:
        0 0 0 4px rgba(255,255,255,.08),
        0 15px 40px rgba(255,255,255,.15),
        inset 0 1px 1px rgba(255,255,255,.35);
}

/* footer section */

.footer-section{
    width:100vw;
    padding:50px 70px;
    background-color: black;
}

.footer-overlay{
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.6)
    );
}

.footer-content{
    position: relative;
    z-index: 2;
}

/* SOCIAL ROW */
.footer-social-row{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    
}

/* NAVIGATION ROW */
.footer-nav-row{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
}

/* DIVIDER */
.footer-divider{
    width:100%;
    height: 1px;
    background:rgba(255,255,255,.12);
    margin:20px 0;
}

/* SOCIAL LINKS */
.footer-social{
    display:flex;
    align-items:center;
    gap:12px;

    color:rgba(255,255,255,.85);

    transition:.4s ease;
}

.footer-social:hover{
    transform:translateY(-4px);
    color:white;
}

/* MENU LINKS */
.footer-link{
    color:rgba(255,255,255,.85);
    font-weight:500;

    transition:.3s ease;
}

.footer-link:hover{
    color:white;
}

/* LOGO */
/* Footer Main Layout */

.footer-main{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;

    margin-top:20px;
}

/* Left Side */

.footer-company{
    flex:1;
    padding: 0 !important;
}

.footer-logo img{
    width:140px;
    height:auto;
    
}

.footer-description{
    max-width:750px;

    padding:0 15px;
    margin-top: 0;

    color:rgba(255,255,255,.75);

    line-height:1.8;
    font-size:15px;
}

/* Right Side */

.footer-newsletter{
    width:420px;
}

.footer-newsletter h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-top: 35px;
}

.footer-newsletter p{
    color:rgba(255,255,255,.7);
    font-size: 14px;
    margin-bottom:10px;
    line-height:1.7;
}

/* Input + Button */

.newsletter-form{
    display:flex;
    align-items:center;

    overflow:hidden;

    border-radius:999px;

    background:#fff;
}

.newsletter-form input{
    flex:1;

    border:none;
    outline:none;

    padding:10px 10px;

    font-size:15px;
}

.newsletter-form button{

    border:none;
    cursor:pointer;

    padding:10px 10px;

    background:#720202;
    color:#fff;

    font-weight:600;

    transition:.3s;
}

.newsletter-form button:hover{
    background:#d92c1d;
}

/* Footer Bottom */

.footer-bottom{
    text-align:center;

    color:rgba(255,255,255,.65);

    font-size:14px;

    padding:20px 0 0;
    margin:0;

    border-top:1px solid rgba(255,255,255,.08);
}

/* Remove Extra Bottom Space */

.footer-section{
    padding-bottom:0 !important;
}

.footer-content{
    padding-bottom:0 !important;
    margin-bottom:0 !important;
}

/* MOBILE */
@media(max-width:992px){

    .footer-main{
        flex-direction:column;
        gap:50px;
    }

    .footer-newsletter{
        width:100%;
    }

    .newsletter-form{
        flex-direction:column;
        border-radius:20px;
        background:transparent;
    }

    .newsletter-form input{
        width:100%;
        border-radius:999px;
        margin-bottom:15px;
    }

    .newsletter-form button{
        width:100%;
        border-radius:999px;
    }
}

/* Services page sections */
.tech-services{
    padding:100px 8%;
    background:#a9a9a9;
    text-align:center;
}

.section-header{
    max-width:700px;
    margin:0 auto 80px;
}

.badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    font-size:12px;
    margin-bottom:20px;
}

.section-header h2{
    font-size:72px;
    font-weight:700;
    color:#111;
    line-height:1;
    margin-bottom:20px;
}

.section-header p{
    color:#666;
    font-size:18px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    position:relative;
    height:340px;
    
    border-radius:40px;
    background:
        linear-gradient(180deg,#2f2f2f,#111);
    overflow:hidden;

    border:1px solid rgba(255,255,255,.15);

    transition:.6s ease;
    opacity:0;
    transform:translateY(80px);
}

.service-card.show{
    opacity:1;
    transform:translateY(0);
}

.service-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    rgba(255,255,255,.15),
    transparent 60%);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 50px rgba(0,0,0,.3),
    0 0 40px rgba(255,255,255,.08);
}

.service-icon{
    width:110px;
    height:110px;
    margin:50px auto 25px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    #ffffff,
    #d9d9d9);

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 0 30px rgba(255,255,255,.4);
}

.service-icon i{
    font-size:42px;
    color:#000;
}

.service-card h3{
    color:#fff;
    font-size:22px;
    font-weight:600;
}
.service-card p{
    color: whitesmoke;
    padding-left: 20px;
    padding-right: 20px;
}

.service-card::after{
    content:'';
    position:absolute;
    inset:12px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.08);
}
@media(max-width:992px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:52px;
    }
}

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:42px;
    }
}