.section-title {
    font-size: 46px;
    font-weight: 700;
    color: #111;
}
.section-title span {
    color: #880019;
}
.bt-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #ffffff21;
    color: #880019;
    font-weight: 700;
    border-radius: 40px;
    letter-spacing: .5px;
}
/*==============================================================
Website Development Hero
Part 1
==============================================================*/
.webdev-hero{
    position:relative;
    overflow:hidden;
    background:#070707;
    padding:170px 0 120px;
}
/*==========================
Background
==========================*/
.webdev-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    z-index:1;
    background:
    radial-gradient(circle at 15% 20%,rgba(136,0,25,.25),transparent 28%),
    radial-gradient(circle at 85% 80%,rgba(136,0,25,.18),transparent 35%),
    linear-gradient(180deg,#050505,#111111);
}
.webdev-bg::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
    background-size:70px 70px;
    animation:gridMove 18s linear infinite;
}
.webdev-bg::after{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:#880019;
    filter:blur(180px);
    opacity:.18;
    right:-180px;
    top:-150px;
    border-radius:50%;
}
@keyframes gridMove{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(70px);
    }
}
/*==========================
Container
==========================*/
.webdev-hero .container{
    position:relative;
    z-index:5;
}
/*==========================
Left Content
==========================*/
.webdev-content{
    position:relative;
}
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:13px 26px;
    border-radius:50px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    color:#ffffff;
    margin-bottom:30px;
    font-size:15px;
    font-weight:600;
}
.hero-badge i{
    color:#880019;
    font-size:18px;
}
.webdev-content h1{
    color:#ffffff;
    font-size:58px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:28px;
}
.webdev-content h1 span{
    background:linear-gradient(
    90deg,
    #880019,
    #ff436c,
    #ffffff,
    #880019);
    background-size:300%;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:textGradient 6s linear infinite;
}
@keyframes textGradient{
    100%{
        background-position:300%;
    }
}
.webdev-content p{
    color:#bcbcbc;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
    max-width:580px;
}
/*==========================
Buttons
==========================*/
.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:45px;
}
.hero-buttons .thm-btn{
    background:#880019;
    color:#fff;
    padding:17px 36px;
    border-radius:50px;
    transition:.4s;
    box-shadow:0 12px 35px rgba(136,0,25,.30);
}
.hero-buttons .thm-btn:hover{
    background:#a40022;
    transform:translateY(-5px);
    box-shadow:0 18px 45px rgba(136,0,25,.50);
}
.outline-btn{
    padding:17px 36px;
    color:#ffffff;
    border-radius:50px;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    transition:.4s;
}
.outline-btn:hover{
    background:#ffffff;
    color:#111111;
}
/*==========================
Floating Code Text
==========================*/
.code{
    position:absolute;
    color:rgba(255,255,255,.07);
    font-weight:700;
    user-select:none;
    animation:codeFloat 10s ease-in-out infinite;
}
.code1{
    font-size:70px;
    top:12%;
    left:30%;
}
.code2{
    font-size:55px;
    top:28%;
    right:25%;
    animation-delay:2s;
}
.code3{
    font-size:45px;
    left:60%;
    bottom:29%;
    animation-delay:4s;
}
.code4{
    font-size:50px;
    left:20%;
    bottom:28%;
    animation-delay:6s;
}
.code5{
    font-size:48px;
    right:14%;
    bottom: 32%;
    animation-delay:8s;
}
@keyframes codeFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-22px);
    }
    100%{
        transform:translateY(0);
    }
}
/*==============================================================
Website Development Hero
Part 2
Laptop + Mobile Mockup
==============================================================*/
/*==========================
Device Wrapper
==========================*/
.device-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:650px;
}
.laptop-image{
    position:relative;
    width:100%;
    max-width:650px;
    margin:auto;
    animation:laptopFloat 6s ease-in-out infinite;
}
.laptop-image>img{
    width:100%;
    display:block;
}
.screen-content{
    position:absolute;
    left:12%;
    top:6.3%;
    width:76%;
    height:74%;
    overflow:hidden;
    border-radius:8px;
}
.screen-content img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.mobile-image{
    position:absolute;
    width:170px;
    left:-30px;
    bottom:-15px;
    animation:mobileFloat 5s ease-in-out infinite;
}
.mobile-image>img{
    width:100%;
}
.mobile-content{
    position:absolute;
    top:3.5%;
    left:8.5%;
    width:83%;
    height:93%;
    overflow:hidden;
    border-radius:22px;
}
.mobile-content img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/*==========================
Floating UI Cards
==========================*/
.ui-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 20px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
    z-index:10;
    animation:uiFloat 7s ease-in-out infinite;
}
.ui-card i{
    width:50px;
    height:50px;
    line-height:50px;
    text-align:center;
    border-radius:14px;
    background:#880019;
    color:#ffffff;
    font-size:20px;
}
.ui-card strong{
    display:block;
    color:#ffffff;
    font-size:16px;
}
.ui-card small{
    color:#c7c7c7;
}
/*==========================
UI Positions
==========================*/
.ui-one{
    top:50px;
    right:-40px;
}
.ui-two{
    bottom:120px;
    right:-30px;
    animation-delay:2s;
}
.ui-three{
    left:-80px;
    top:180px;
    animation-delay:4s;
}
@keyframes uiFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0);
    }
}
/*==========================
Glow Behind Laptop
==========================*/
.device-wrapper::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#880019;
    filter:blur(140px);
    opacity:.20;
    border-radius:50%;
    z-index:0;
}
.device-wrapper::after{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border:1px solid rgba(255,255,255,.04);
    border-radius:50%;
    animation:rotateCircle 25s linear infinite;
}
@keyframes rotateCircle{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
/*==============================================================
Website Development Hero
Part 3
Bottom Services + Responsive
==============================================================*/
/*=========================================
Bottom Service Types
=========================================*/
.service-types{
    margin-top:90px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}
.service-types div{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:22px;
    text-align:center;
    padding:28px 18px;
    transition:.4s;
    cursor:pointer;
}
.service-types div:hover{
    transform:translateY(-10px);
    background:#880019;
    box-shadow:0 20px 40px rgba(136,0,25,.35);
}
.service-types i{
    width:65px;
    height:65px;
    line-height:65px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:26px;
    margin-bottom:18px;
    transition:.4s;
}
.service-types div:hover i{
    background:#ffffff;
    color:#880019;
}
.service-types h5{
    color:#fff;
    font-size:18px;
    margin:0;
    font-weight:600;
}
/*=========================================
Scrollbar
=========================================*/
.webdev-hero::-webkit-scrollbar{
    width:8px;
}
.webdev-hero::-webkit-scrollbar-thumb{
    background:#880019;
}
/*=========================================
Selection
=========================================*/
.webdev-hero ::selection{
    background:#880019;
    color:#fff;
}
/*=========================================
Smooth Transition
=========================================*/
.webdev-hero a,
.webdev-hero div,
.webdev-hero span,
.webdev-hero i{
    transition:.35s;
}
/*=========================================
Tablet
=========================================*/
@media(max-width:1199px){
    .webdev-content h1{
        font-size:48px;
    }
    .service-types{
        grid-template-columns:repeat(3,1fr);
    }
    .floating-card{
        transform:scale(.88);
    }
}
/*=========================================
991px
=========================================*/
@media(max-width:991px){
    .webdev-hero{
        padding:130px 0 80px;
        text-align:center;
    }
    .webdev-content{
        margin-bottom:70px;
    }
    .webdev-content p{
        max-width:100%;
    }
    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }
   
    .device-wrapper{
        min-height:auto;
    }
    .mobile-device{
        left:0;
        bottom:-10px;
        transform:scale(.9);
    }
    .ui-one{
        right:0;
    }
    .ui-two{
        right:10px;
    }
    .ui-three{
        left:10px;
    }
    .service-types{
        grid-template-columns:repeat(3,1fr);
        margin-top:70px;
    }
    .floating-card{
        transform:scale(.75);
    }
}
/*=========================================
767px
=========================================*/
@media(max-width:767px){
    .webdev-hero{
        padding: 155px 0 60px;
    }
    .mobile-image {
   
    width: 126px;
}
    .webdev-content h1{
        font-size:34px;
        line-height:1.3;
    }
    .webdev-content p{
        font-size:15px;
        line-height:1.8;
    }
    .hero-badge{
        font-size:13px;
        padding:10px 18px;
    }
    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }
    .hero-buttons a{
        width:230px;
        text-align:center;
    }
    
    /* Laptop */
    .laptop{
        max-width:100%;
    }
    .browser-content{
        padding:18px;
    }
    .hero-banner{
        height:110px;
    }
    .website-grid{
        gap:10px;
    }
    .website-grid span{
        height:65px;
    }
    .website-boxes{
        gap:10px;
    }
    .website-boxes div{
        height:80px;
    }
    /* Mobile */
    .mobile-device{
        width:130px;
        height:270px;
        left:-5px;
        bottom:-20px;
    }
    /* Floating UI */
    .ui-card{
        transform:scale(.80);
    }
    .ui-one{
        top:-20px;
        right:0;
    }
    .ui-two{
        bottom:60px;
        right:0;
    }
    .ui-three{
        left:0;
        top:150px;
    }
    /* Floating cards */
    .floating-card{
        display:none;
    }
    .code{
        opacity:.05;
    }
    .service-types{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }
}
/*=========================================
575px
=========================================*/
@media(max-width:575px){
    .webdev-content h1{
        font-size:30px;
    }
    .hero-buttons a{
        width:100%;
    }
    .service-types{
        grid-template-columns: repeat(2, 1fr);
    }
    .service-types div{
        padding:22px;
    }
    .device-wrapper{
        margin-top:20px;
    }
    .mobile-device{
        display:none;
    }
    .ui-card{
        display:none;
    }
   
}
/*=========================================
480px
=========================================*/
@media(max-width:480px){
    .webdev-content h1{
        font-size:28px;
    }
    .webdev-content p{
        font-size:14px;
    }
    .hero-badge{
        padding:8px 16px;
    }
    .browser-header{
        height:42px;
    }
    .browser-search{
        width:80%;
    }
    .browser-content{
        padding:12px;
    }
    .hero-banner{
        height:90px;
        border-radius:12px;
    }
    .website-grid{
        grid-template-columns:1fr;
    }
    .website-boxes{
        grid-template-columns:1fr;
    }
    .service-types h5{
        font-size:16px;
    }
    .device-wrapper::after{
        display:none;
    }
}
/*=========================================
Animation Delay
=========================================*/
.service-types div:nth-child(1){
    animation:floatCard 5s ease-in-out infinite;
}
.service-types div:nth-child(2){
    animation:floatCard 5s ease-in-out infinite;
    animation-delay:.3s;
}
.service-types div:nth-child(3){
    animation:floatCard 5s ease-in-out infinite;
    animation-delay:.6s;
}
.service-types div:nth-child(4){
    animation:floatCard 5s ease-in-out infinite;
    animation-delay:.9s;
}
.service-types div:nth-child(5){
    animation:floatCard 5s ease-in-out infinite;
    animation-delay:1.2s;
}
.service-types div:nth-child(6){
    animation:floatCard 5s ease-in-out infinite;
    animation-delay:1.5s;
}
/* 2nd  */
/*=====================================================
 Website Expertise Section - Part 1
======================================================*/
.expertise-section{
    position:relative;
    padding:66px 0;
   background: #f1f1f1;
    overflow:hidden;
}
/*==============================
Background Shapes
==============================*/
.expertise-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(136,0,25,.05);
    border-radius:50%;
    filter:blur(90px);
    top:-120px;
    left:-120px;
}
.expertise-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(136,0,25,.04);
    border-radius:50%;
    filter:blur(90px);
    right:-100px;
    bottom:-100px;
}
.expertise-section .container{
    position:relative;
    z-index:2;
}
/*==============================
Section Heading
==============================*/
.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border-radius:50px;
    background:#fff;
    color:#880019;
    font-weight:600;
    border:1px solid rgba(136,0,25,.10);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    margin-bottom:22px;
}
.section-tag i{
    color:#880019;
}
.expertise-section h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    line-height:1.2;
    margin-bottom:20px;
}
.expertise-section h2 span{
    color:#880019;
}
.expertise-section> .container> .row:first-child p,
.expertise-section .row.justify-content-center p{
    max-width:760px;
    margin:0 auto;
    color:#666;
    line-height:1.9;
    font-size:17px;
}
/*==============================
Experience Wrapper
==============================*/
.experience-wrapper{
    position:relative;
}
/*==============================
Main Experience Card
==============================*/
.experience-card{
    position:relative;
    background:#fff;
    border-radius:30px;
    padding:45px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.05);
    transition:.4s;
}
.experience-card:hover{
    transform:translateY(-8px);
    box-shadow:0 35px 70px rgba(0,0,0,.12);
}
.experience-card::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:#880019;
    border-radius:50%;
    filter:blur(90px);
    opacity:.10;
    right:-80px;
    top:-80px;
}
/*==============================
18+ Number
==============================*/
.experience-number{
    margin-bottom:25px;
}
.experience-number h1{
    font-size:90px;
    line-height:1;
    margin:0;
    font-weight:800;
    color:#880019;
}
.experience-number span{
    display:block;
    font-size:22px;
    font-weight:600;
    color:#111;
    margin-top:10px;
}
.experience-card p{
    color:#666;
    line-height:1.9;
    margin:0;
}
/*==============================
Mini Stats
==============================*/
.mini-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}
.stat-box{
    background:#fff;
    border-radius:20px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
    border:1px solid rgba(0,0,0,.05);
}
.stat-box:hover{
    transform:translateY(-8px);
    background:#880019;
}
.stat-box h3{
   font-size: 34px;
    color: #95001c;
    margin-bottom: 10px;
    font-weight: 600;
    transition: .35s;
}
.stat-box span{
    display:block;
    color:#666;
    font-size:15px;
    transition:.35s;
}
.stat-box:hover h3,
.stat-box:hover span{
    color:#fff;
}
/*==============================
Floating Animation
==============================*/
.experience-card{
    animation:cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}
.stat-box:nth-child(2){
    animation-delay:.3s;
}
.stat-box:nth-child(3){
    animation-delay:.6s;
}
.stat-box:nth-child(4){
    animation-delay:.9s;
}
/*==============================
Responsive
==============================*/
@media(max-width:991px){
    .expertise-section{
        padding:90px 0;
    }
    .expertise-section h2{
        font-size:38px;
    }
    .experience-wrapper{
        margin-bottom:50px;
    }
}
@media(max-width:767px){
    .expertise-section h2{
        font-size:30px;
    }
    .experience-card{
        padding:30px;
    }
    .experience-number h1{
        font-size:65px;
    }
    .experience-number span{
        font-size:18px;
    }
    .mini-stats{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:480px){
    .expertise-section{
        padding:70px 0;
    }
    .section-tag{
        font-size:13px;
    }
    .expertise-section h2{
        font-size:26px;
    }
    .experience-card{
        padding:25px;
    }
    .experience-number h1{
        font-size:55px;
    }
}
/*=====================================================
Website Expertise Section
Part 2
======================================================*/
/*==================================
Right Content
==================================*/
.expertise-content{
    padding-left:35px;
}
.expertise-content h3{
    font-size:36px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
    position:relative;
}
.expertise-content h3::after{
    content:"";
    width:70px;
    height:4px;
    background:#880019;
    border-radius:30px;
    display:block;
    margin-top:15px;
}
.expertise-content p{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:40px;
}
/*==================================
Skills
==================================*/
.skill-item{
    margin-bottom:28px;
}
.skill-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}
.skill-title span{
    color:#111;
    font-weight:600;
    font-size:16px;
}
.skill-title strong{
    color:#880019;
    font-size:16px;
}
.progress-line{
    width:100%;
    height:10px;
    border-radius:30px;
    background:#ececec;
    overflow:hidden;
    position:relative;
}
.progress-line span{
    display:block;
    height:100%;
    background:linear-gradient(90deg,#880019,#d81b42);
    border-radius:30px;
    position:relative;
    animation:progressFill 2.5s ease;
}
.progress-line span::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:18px;
    height:100%;
    background:rgba(255,255,255,.45);
    filter:blur(3px);
}
@keyframes progressFill{
    from{
        width:0 !important;
    }
}
/*==================================
Feature Cards
==================================*/
.feature-card{
    position:relative;
    background:#ffffff;
    border-radius:24px;
    padding:35px 28px;
    height:100%;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 18px 45px rgba(0,0,0,.05);
    transition:.4s;
}
.feature-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:#880019;
    border-radius:50%;
    filter:blur(80px);
    opacity:0;
    right:-70px;
    top:-70px;
    transition:.4s;
}
.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 28px 60px rgba(0,0,0,.12);
}
.feature-card:hover::before{
    opacity:.12;
}
.feature-card .icon{
    width:72px;
    height:72px;
    line-height:72px;
    text-align:center;
    border-radius:20px;
    background:#880019;
    color:#fff;
    font-size:28px;
    margin-bottom:22px;
    transition:.4s;
}
.feature-card:hover .icon{
    transform:rotate(8deg) scale(1.08);
    box-shadow:0 15px 35px rgba(136,0,25,.35);
}
.feature-card h4{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}
.feature-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}
/*==================================
Card Animation
==================================*/
.feature-card{
    animation:featureFloat 6s ease-in-out infinite;
}
.feature-card:nth-child(2){
    animation-delay:.3s;
}
.feature-card:nth-child(3){
    animation-delay:.6s;
}
.feature-card:nth-child(4){
    animation-delay:.9s;
}
.feature-card:nth-child(5){
    animation-delay:1.2s;
}
.feature-card:nth-child(6){
    animation-delay:1.5s;
}
@keyframes featureFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0);
    }
}
/*==================================
Responsive
==================================*/
@media(max-width:991px){
    .expertise-content{
        padding-left:0;
        margin-top:50px;
    }
    .expertise-content h3{
        font-size:30px;
    }
}
@media(max-width:767px){
    .expertise-content h3{
        font-size:26px;
    }
    .feature-card{
        padding:28px 22px;
    }
    .feature-card .icon{
        width:60px;
        height:60px;
        line-height:60px;
        font-size:22px;
    }
    .feature-card h4{
        font-size:20px;
    }
}
@media(max-width:480px){
    .skill-title{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }
    .feature-card{
        text-align:center;
    }
    .feature-card .icon{
        margin:0 auto 20px;
    }
}
/*==========================
Hover Border Animation
==========================*/
.feature-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:24px;
    border:2px solid transparent;
    transition:.4s;
}
.feature-card:hover::after{
    border-color:rgba(136,0,25,.18);
}
/*==========================
Icon Pulse
==========================*/
.feature-card .icon{
    animation:iconPulse 4s ease-in-out infinite;
}
@keyframes iconPulse{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
}
/*==========================
Section Pattern
==========================*/
.expertise-section{
    background-image:
    radial-gradient(rgba(136,0,25,.05) 1px,transparent 1px);
    background-size:28px 28px;
}
/*==========================
Smooth Animation
==========================*/
.feature-card,
.stat-box,
.experience-card,
.skill-item{
    transition:.4s ease;
}

/* 3rd */
/*==============================================================
Technology Stack Section
Part 1
==============================================================*/

.technology-section{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:#050505;
}

/*==========================
Background
==========================*/

.technology-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    background:
    radial-gradient(circle at 15% 20%,rgba(136,0,25,.28),transparent 30%),
    radial-gradient(circle at 85% 80%,rgba(136,0,25,.20),transparent 35%),
    linear-gradient(180deg,#050505,#0d0d0d);
}

.technology-bg::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:60px 60px;

    animation:techGrid 22s linear infinite;

}

@keyframes techGrid{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(60px);

    }

}

.technology-section .container{

    position:relative;

    z-index:5;

}

/*==========================
Floating Code
==========================*/

.code-icon{

    position:absolute;

    color:rgba(255,255,255,.06);

    font-weight:700;

    user-select:none;

    animation:codeFloat 10s ease-in-out infinite;

}

.code1{

    left:12%;

    top:18%;

    font-size:70px;

}

.code2{

    right:14%;

    top:25%;

    font-size:55px;

    animation-delay:2s;

}

.code3{

    left:22%;

    bottom:18%;

    font-size:48px;

    animation-delay:4s;

}

.code4{

    right:24%;

    bottom:20%;

    font-size:52px;

    animation-delay:6s;

}

.code5{

    left:50%;

    top:10%;

    font-size:60px;

    animation-delay:8s;

}

@keyframes codeFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==========================
Heading
==========================*/

.tech-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    color:#fff;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    margin-bottom:28px;

}

.tech-badge i{

    color:#880019;

}

.technology-section h2{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.technology-section h2 span{

    background:linear-gradient(90deg,#880019,#ff426d,#fff,#880019);

    background-size:300%;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:techText 6s linear infinite;

}

@keyframes techText{

    100%{

        background-position:300%;

    }

}

.technology-section p{

    color:#bdbdbd;

    max-width:760px;

    margin:auto;

    font-size:17px;

    line-height:1.9;

}

/*==========================
Technology Card
==========================*/

.technology-card{

    position:relative;

    text-align:center;

    padding:35px 20px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    overflow:hidden;

    transition:.4s;

    height:100%;

}

.technology-card::before{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    background:#880019;

    border-radius:50%;

    filter:blur(70px);

    opacity:0;

    right:-60px;

    top:-60px;

    transition:.4s;

}

.technology-card:hover::before{

    opacity:.18;

}

.technology-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,255,255,.15);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

/*==========================
Icon
==========================*/

.technology-card i{

    font-size:52px;

    margin-bottom:20px;

    color:#ffffff;

    transition:.45s;

}

.technology-card:hover i{

    transform:rotate(12deg) scale(1.15);

}

.technology-card h5{

    color:#ffffff;

    font-size:18px;

    font-weight:600;

    margin:0;

    /*==============================================================
Technology Stack Section
Part 2
Technology Colors + Hover + Animations
==============================================================*/

/*==================================
Floating Animation
==================================*/

.technology-card{
    animation:techFloat 6s ease-in-out infinite;
}

.technology-card:nth-child(2){animation-delay:.2s;}
.technology-card:nth-child(3){animation-delay:.4s;}
.technology-card:nth-child(4){animation-delay:.6s;}
.technology-card:nth-child(5){animation-delay:.8s;}
.technology-card:nth-child(6){animation-delay:1s;}
.technology-card:nth-child(7){animation-delay:1.2s;}
.technology-card:nth-child(8){animation-delay:1.4s;}
.technology-card:nth-child(9){animation-delay:1.6s;}
.technology-card:nth-child(10){animation-delay:1.8s;}
.technology-card:nth-child(11){animation-delay:2s;}
.technology-card:nth-child(12){animation-delay:2.2s;}
.technology-card:nth-child(13){animation-delay:2.4s;}
.technology-card:nth-child(14){animation-delay:2.6s;}
.technology-card:nth-child(15){animation-delay:2.8s;}
.technology-card:nth-child(16){animation-delay:3s;}
.technology-card:nth-child(17){animation-delay:3.2s;}
.technology-card:nth-child(18){animation-delay:3.4s;}

@keyframes techFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/*==================================
Brand Colors
==================================*/

.html i{color:#e44d26;}

.css i{color:#1572B6;}

.javascript i{color:#f7df1e;}

.jquery i{color:#0868ac;}

.bootstrap i{color:#7952B3;}

.tailwind i{color:#38BDF8;}

.react i{color:#61DAFB;}

.php i{color:#777BB4;}

.laravel i{color:#ff2d20;}

.node i{color:#68A063;}

.express i{color:#dcdcdc;}

.mysql i{color:#00758F;}

.mongodb i{color:#47A248;}

.wordpress i{color:#21759B;}

.shopify i{color:#95BF47;}

.magento i{color:#F26322;}

.wix i{color:#ffffff;}

.woocommerce i{color:#96588A;}

/*==================================
Hover Icon Color
==================================*/

.technology-card:hover i{
    color:#ffffff;
}

/*==================================
Hover Background Colors
==================================*/

.html:hover{
    background:#e44d26;
}

.css:hover{
    background:#1572B6;
}

.javascript:hover{
    background:#d6b400;
}

.jquery:hover{
    background:#0868ac;
}

.bootstrap:hover{
    background:#7952B3;
}

.tailwind:hover{
    background:#06b6d4;
}

.react:hover{
    background:#00b7ff;
}

.php:hover{
    background:#777BB4;
}

.laravel:hover{
    background:#ff2d20;
}

.node:hover{
    background:#68A063;
}

.express:hover{
    background:#444;
}

.mysql:hover{
    background:#00758F;
}

.mongodb:hover{
    background:#47A248;
}

.wordpress:hover{
    background:#21759B;
}

.shopify:hover{
    background:#95BF47;
}

.magento:hover{
    background:#F26322;
}

.wix:hover{
    background:#111;
}

.woocommerce:hover{
    background:#96588A;
}

/*==================================
Hover Text
==================================*/

.technology-card:hover h5{
    color:#fff;
}

/*==================================
Glow Effect
==================================*/

.technology-card:hover{
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.html:hover{
    box-shadow:0 20px 45px rgba(228,77,38,.45);
}

.css:hover{
    box-shadow:0 20px 45px rgba(21,114,182,.45);
}

.javascript:hover{
    box-shadow:0 20px 45px rgba(247,223,30,.35);
}

.bootstrap:hover{
    box-shadow:0 20px 45px rgba(121,82,179,.45);
}

.react:hover{
    box-shadow:0 20px 45px rgba(97,218,251,.45);
}

.laravel:hover{
    box-shadow:0 20px 45px rgba(255,45,32,.45);
}

.node:hover{
    box-shadow:0 20px 45px rgba(104,160,99,.45);
}

.wordpress:hover{
    box-shadow:0 20px 45px rgba(33,117,155,.45);
}

.shopify:hover{
    box-shadow:0 20px 45px rgba(149,191,71,.45);
}

.mongodb:hover{
    box-shadow:0 20px 45px rgba(71,162,72,.45);
}

/*==================================
Border Animation
==================================*/

.technology-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:24px;

    border:2px solid transparent;

    transition:.35s;

}

.technology-card:hover::after{

    border-color:rgba(255,255,255,.15);

}
}
/*==============================================================
Technology Stack Section
Part 3
Responsive + Final Effects
==============================================================*/

/*==========================
Smooth Transition
==========================*/

.technology-section *,
.technology-section *::before,
.technology-section *::after{
    transition:.35s ease;
}

/*==========================
Cursor Effect
==========================*/

.technology-card{
    cursor:pointer;
}

.technology-card:hover{
    transform:translateY(-12px) scale(1.03);
}

/*==========================
Gradient Shine
==========================*/

.technology-card{
    position:relative;
}

.technology-card .shine{
    display:none;
}

.technology-card::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-40%;

    width:60%;

    height:260%;

    background:linear-gradient(
        rgba(255,255,255,0),
        rgba(255,255,255,.18),
        rgba(255,255,255,0)
    );

    transform:rotate(25deg);

    opacity:0;

}

.technology-card:hover::after{

    animation:shineMove .9s linear;

}

@keyframes shineMove{

    0%{
        left:-60%;
        opacity:0;
    }

    20%{
        opacity:1;
    }

    100%{
        left:120%;
        opacity:0;
    }

}

/*==========================
Icon Pulse
==========================*/

.technology-card:hover i{
    animation:iconPulse .8s ease;
}

@keyframes iconPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.25) rotate(10deg);
    }

    100%{
        transform:scale(1.1);
    }

}

/*==========================
Desktop
==========================*/

@media(max-width:1199px){

    .technology-section h2{
        font-size:42px;
    }

    .technology-card{
        padding:30px 15px;
    }

}

/*==========================
Tablet
==========================*/

@media(max-width:991px){

    .technology-section{

        padding:90px 0;

    }

    .technology-section h2{

        font-size:38px;

    }

    .technology-section p{

        font-size:16px;

    }

    .technology-card{

        padding:28px 15px;

    }

    .technology-card i{

        font-size:46px;

    }

    .technology-card h5{

        font-size:17px;

    }

    .code-icon{

        opacity:.05;

    }

}

/*==========================
Mobile
==========================*/

@media(max-width:767px){

    .technology-section{

        padding:75px 0;

    }

    .technology-section h2{

        font-size:30px;

        line-height:1.3;

    }

    .technology-section p{

        font-size:15px;

        line-height:1.8;

    }

    .tech-badge{

        padding:10px 18px;

        font-size:13px;

    }

    .technology-card{

        padding:25px 12px;

        border-radius:18px;

    }

    .technology-card i{

        font-size:38px;

        margin-bottom:15px;

    }

    .technology-card h5{

        font-size:15px;

    }

    .code-icon{

        display:none;

    }

}

/*==========================
Small Mobile
==========================*/

@media(max-width:575px){

    .technology-section{

        padding:65px 0;

    }

    .technology-section h2{

        font-size:26px;

    }

    .technology-card{

        padding:22px 10px;

    }

    .technology-card i{

        font-size:34px;

    }

    .technology-card h5{

        font-size:14px;

    }

}

/*==========================
Extra Small
==========================*/

@media(max-width:480px){

    .technology-section h2{

        font-size:24px;

    }

    .technology-section p{

        font-size:14px;

    }

    .technology-card{

        border-radius:16px;

        padding:20px 10px;

    }

    .technology-card i{

        font-size:30px;

    }

    .technology-card h5{

        font-size:13px;

    }

}

/*==========================
Selection
==========================*/

.technology-section ::selection{

    background:#880019;

    color:#fff;

}

/*==========================
Scrollbar
==========================*/

.technology-section::-webkit-scrollbar{

    width:8px;

}

.technology-section::-webkit-scrollbar-thumb{

    background:#880019;

}

/*==========================
Final Glow
==========================*/

.technology-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#880019;

    filter:blur(180px);

    opacity:.12;

    left:-180px;

    bottom:-180px;

    border-radius:50%;

}

.technology-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#880019;

    filter:blur(180px);

    opacity:.10;

    right:-180px;

    top:-180px;

    border-radius:50%;

}

/*==============================================================
Website Development Services
Part 1
==============================================================*/

.wd-service-section{
    position:relative;
    padding:120px 0;
    background:#f8f9fc;
    overflow:hidden;
}

/*==========================
Background
==========================*/

.wd-service-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    z-index:0;
}

.wd-circle{
    position:absolute;
    border-radius:50%;
    background:rgba(136,0,25,.06);
    animation:wdFloat 10s ease-in-out infinite;
}

.wd-circle-1{
    width:320px;
    height:320px;
    top:-120px;
    left:-120px;
}

.wd-circle-2{
    width:220px;
    height:220px;
    right:8%;
    top:12%;
    animation-delay:2s;
}

.wd-circle-3{
    width:380px;
    height:380px;
    bottom:-180px;
    right:-120px;
    animation-delay:4s;
}

@keyframes wdFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }

    100%{
        transform:translateY(0);
    }

}

.wd-service-section .container{
    position:relative;
    z-index:5;
}

/*==========================
Left Content
==========================*/

.wd-service-left{
    position:sticky;
    top:120px;
}

.wd-service-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:40px;

    background:#fff;

    color:#880019;

    font-weight:600;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    margin-bottom:25px;

}

.wd-service-tag i{

    font-size:18px;

}

.wd-service-left h2{

    font-size:50px;

    font-weight:700;

    line-height:1.15;

    color:#111;

    margin-bottom:22px;

}

.wd-service-left h2 span{

    color:#880019;

}

.wd-service-left p{

    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}

.wd-service-counter{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:40px;

}

.wd-service-counter h3{

    font-size:54px;

    color:#880019;

    margin:0;

    line-height:1;

    font-weight:700;

}

.wd-service-counter span{

    color:#555;

    font-size:16px;

    line-height:1.6;

    max-width:150px;

}

/*==========================
Cards
==========================*/

.wd-service-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:20px;

    height:100%;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    border:1px solid #ececec;

}

.wd-service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:#880019;

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s;

}

.wd-service-card:hover::before{

    transform:scaleY(1);

}

.wd-service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.wd-service-card.active{

    background:#880019;

}

.wd-service-card.active h4,
.wd-service-card.active p,
.wd-service-card.active .wd-number{

    color:#fff;

}

.wd-service-card.active i{

    background:#fff;

    color:#880019;

}

/*==========================
Top
==========================*/

.wd-service-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:28px;

}

.wd-number{

    font-size:22px;

    font-weight:700;

    color:#880019;

    opacity:.25;

}

.wd-service-top i{

    width:70px;

    height:70px;

    line-height:70px;

    text-align:center;

    border-radius:20px;

    background:#88001910;

    color:#880019;

    font-size:28px;

    transition:.4s;

}

.wd-service-card:hover .wd-service-top i{

    background:#880019;

    color:#fff;

    transform:rotate(8deg);

}

.wd-service-card h4{

    font-size:24px;

    font-weight:700;

    color:#111;

    margin-bottom:18px;

}

.wd-service-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}
/*==============================================================
Website Development Services
Part 2
Premium Effects & Animations
==============================================================*/

/*==========================
Stagger Layout
==========================*/

.wd-service-card{
    animation:wdCardFloat 6s ease-in-out infinite;
}

.wd-service-card:nth-child(even){
    margin-top:35px;
}

.wd-service-card:nth-child(1){animation-delay:.2s;}
.wd-service-card:nth-child(2){animation-delay:.5s;}
.wd-service-card:nth-child(3){animation-delay:.8s;}
.wd-service-card:nth-child(4){animation-delay:1.1s;}
.wd-service-card:nth-child(5){animation-delay:1.4s;}
.wd-service-card:nth-child(6){animation-delay:1.7s;}
.wd-service-card:nth-child(7){animation-delay:2s;}
.wd-service-card:nth-child(8){animation-delay:2.3s;}

@keyframes wdCardFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

/*==========================
Glass Glow
==========================*/

.wd-service-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:#880019;

    filter:blur(90px);

    opacity:0;

    top:-120px;

    right:-100px;

    transition:.5s;

}

.wd-service-card:hover::after{

    opacity:.08;

}

/*==========================
Hover Icon
==========================*/

.wd-service-card:hover .wd-service-top i{

    transform:rotate(10deg) scale(1.08);

    box-shadow:0 15px 35px rgba(136,0,25,.30);

}

/*==========================
Heading Hover
==========================*/

.wd-service-card h4{

    transition:.35s;

}

.wd-service-card:hover h4{

    color:#880019;

}

.wd-service-card.active:hover h4{

    color:#fff;

}

/*==========================
Number Animation
==========================*/

.wd-number{

    transition:.35s;

}

.wd-service-card:hover .wd-number{

    opacity:1;

    transform:scale(1.1);

}

/*==========================
Button
==========================*/

.wd-service-left .thm-btn{

    padding:16px 34px;

    border-radius:50px;

    transition:.35s;

}

.wd-service-left .thm-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(136,0,25,.35);

}

/*==========================
Counter
==========================*/

.wd-service-counter h3{

    position:relative;

}


/*==========================
Card Shine
==========================*/

.wd-service-card{

    overflow:hidden;

}

.wd-service-card .shine{

    display:none;

}

.wd-service-card:hover{

    overflow:hidden;

}

.wd-service-card:hover:before{

    transform:scaleY(1);

}

.wd-service-card:hover{

    transition:.4s;

}

.wd-service-card:hover::selection{

    background:#880019;

}

/* Moving Shine */

.wd-service-card span.shine{

    display:none;

}

.wd-service-card::selection{

    background:#880019;

}

.wd-service-card{

    position:relative;

}

.wd-service-card:hover{

    cursor:pointer;

}

.wd-service-card::after{

    pointer-events:none;

}

.wd-service-card::after{

    transition:.4s;

}

.wd-service-card:hover{

    border-color:#88001920;

}

/*==========================
Top Border Glow
==========================*/

.wd-service-card{

    border-top:4px solid transparent;

}

.wd-service-card:hover{

    border-top-color:#880019;

}

/*==========================
Image Style Ready
(If you add images later)
==========================*/

.wd-service-thumb{

    overflow:hidden;

    border-radius:18px;

}

.wd-service-thumb img{

    width:100%;

    transition:.5s;

}

.wd-service-card:hover .wd-service-thumb img{

    transform:scale(1.08);

}

/*==========================
Shadow Depth
==========================*/

.wd-service-card{

    box-shadow:
    0 10px 25px rgba(0,0,0,.05),
    0 25px 60px rgba(0,0,0,.06);

}

.wd-service-card:hover{

    box-shadow:
    0 20px 45px rgba(0,0,0,.10),
    0 40px 80px rgba(136,0,25,.10);

}

/*==========================
Background Accent
==========================*/

.wd-service-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#880019;

    filter:blur(160px);

    opacity:.05;

    left:-180px;

    top:-150px;

}

.wd-service-section::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:#880019;

    filter:blur(140px);

    opacity:.04;

    right:-120px;

    bottom:-120px;

}
/*==============================================================
Website Development Services
Part 3
Responsive + Final Polish
==============================================================*/

/*==========================
Desktop Large
==========================*/

@media (max-width:1199px){

    .wd-service-left h2{
        font-size:42px;
    }

    .wd-service-card{
        padding:30px;
    }

}

/*==========================
Tablet
==========================*/

@media (max-width:991px){

    .wd-service-section{
        padding:90px 0;
    }

    .wd-service-left{
        position:relative;
        top:0;
        margin-bottom:60px;
        text-align:center;
    }

    .wd-service-left p{
        max-width:700px;
        margin:0 auto 35px;
    }

    .wd-service-counter{
        justify-content:center;
    }

    .wd-service-left .thm-btn{
        margin:auto;
    }

    .wd-service-card:nth-child(even){
        margin-top:0;
    }

}

/*==========================
Mobile
==========================*/

@media (max-width:767px){

    .wd-service-section{
        padding:70px 0;
    }

    .wd-service-left h2{
        font-size:34px;
    }

    .wd-service-left p{
        font-size:15px;
        line-height:1.8;
    }

    .wd-service-tag{
        font-size:13px;
        padding:10px 18px;
    }

    .wd-service-counter{
        flex-direction:column;
        gap:8px;
    }

    .wd-service-counter span{
        max-width:100%;
    }

    .wd-service-card{
        padding:25px;
    }

    .wd-service-top i{
        width:60px;
        height:60px;
        line-height:60px;
        font-size:24px;
    }

    .wd-service-card h4{
        font-size:21px;
    }

}

/*==========================
Small Mobile
==========================*/

@media (max-width:575px){

    .wd-service-left h2{
        font-size:28px;
    }

    .wd-service-left .thm-btn{
        width:100%;
        text-align:center;
    }

    .wd-service-card{
        padding:22px;
    }

    .wd-service-card h4{
        font-size:20px;
    }

    .wd-service-top{
        margin-bottom:18px;
    }

    .wd-service-top i{
        width:55px;
        height:55px;
        line-height:55px;
        font-size:22px;
    }

}

/*==========================
Extra Small
==========================*/

@media (max-width:480px){

    .wd-service-section{
        padding:60px 0;
    }

    .wd-service-left h2{
        font-size:25px;
    }

    .wd-service-left p{
        font-size:14px;
    }

    .wd-service-counter h3{
        font-size:42px;
    }

    .wd-service-card{
        border-radius:18px;
    }

}

/*==========================
Selection
==========================*/

.wd-service-section ::selection{

    background:#880019;
    color:#fff;

}

/*==========================
Smooth Transition
==========================*/

.wd-service-section *{
    transition:.35s;
}

/* 5th */
/*==============================================================
Why Choose Section
Part 1
==============================================================*/

.wc-why-section{
    position:relative;
    padding:120px 0;
    background:#050505;
    overflow:hidden;
}

/*==========================
Background
==========================*/

.wc-why-bg{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 20%, rgba(136,0,25,.25), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(136,0,25,.18), transparent 40%),
    linear-gradient(180deg,#050505,#0b0b0b);
}

/* glowing blobs */

.wc-why-bg::before,
.wc-why-bg::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(160px);
    opacity:.18;
}

.wc-why-bg::before{
    width:400px;
    height:400px;
    background:#880019;
    top:-120px;
    left:-120px;
}

.wc-why-bg::after{
    width:450px;
    height:450px;
    background:#ff2d55;
    bottom:-150px;
    right:-150px;
}

/* container */

.wc-why-section .container{
    position:relative;
    z-index:5;
}

/*==========================
Left Content
==========================*/

.wc-why-left{
    position:relative;
}

.wc-why-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    margin-bottom:25px;

    backdrop-filter:blur(15px);

}

.wc-why-badge i{
    color:#880019;
}

/* heading */

.wc-why-left h2{

    font-size:48px;
    font-weight:700;
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;

}

.wc-why-left h2 span{
    background:linear-gradient(90deg,#880019,#ff4d73,#fff,#880019);
    background-size:300%;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:wcText 6s linear infinite;
}

@keyframes wcText{
    100%{background-position:300%;}
}

.wc-why-left p{

    color:#bdbdbd;
    font-size:17px;
    line-height:1.9;
    margin-bottom:30px;

}
/*==============================================================
Why Choose Section
Part 2 (Refined Premium Version)
==============================================================*/

/*==========================
Stats Row (Premium Upgrade)
==========================*/

.wc-why-stats{
    display:flex;
    gap:30px;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.wc-why-stats div{
    padding:10px 0;
    position:relative;
}

.wc-why-stats div::before{
    content:"";
    position:absolute;
    width:1px;
    height:100%;
    right:-15px;
    top:0;
    background:rgba(255,255,255,.08);
}

.wc-why-stats div:last-child::before{
    display:none;
}

.wc-why-stats h3{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin:0;
    position:relative;
}

.wc-why-stats h3::after{
    content:"+";
    color:#880019;
    font-size:24px;
    position:absolute;
    top:0;
    right:-20px;
}

.wc-why-stats small{
    color:#a9a9a9;
    font-size:13px;
    letter-spacing:.5px;
}

/*==========================
CTA Button (Glow Upgrade)
==========================*/

.wc-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 38px;

    border-radius:50px;

    background:linear-gradient(135deg,#880019,#ff2d55);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 10px 30px rgba(136,0,25,.25);
}

/* Shine effect */

.wc-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.25),transparent);
    transition:.6s;
}

.wc-btn:hover::before{
    left:120%;
}

.wc-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(136,0,25,.45);
}

/*==========================
Grid (Better spacing)
==========================*/

.wc-why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

/*==========================
Cards (Ultra Premium Glass)
==========================*/

.wc-why-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    padding:32px;

    border-radius:24px;

    color:#fff;

    position:relative;

    overflow:hidden;

    transition:.4s;

    transform:translateZ(0);
}

/* glowing orb inside card */

.wc-why-card::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:radial-gradient(circle,#880019,transparent 70%);
    top:-120px;
    right:-120px;
    opacity:.15;
    transition:.5s;
}

/* hover lift */

.wc-why-card:hover{
    transform:translateY(-12px);
    border-color:rgba(136,0,25,.5);
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.wc-why-card:hover::before{
    opacity:.25;
}

/* icon */

.wc-why-card i{
    font-size:42px;
    color:#880019;
    margin-bottom:15px;
    display:inline-block;
    transition:.35s;
}

/* icon animation */

.wc-why-card:hover i{
    transform:rotate(12deg) scale(1.15);
    color:#ff2d55;
}

/* heading */

.wc-why-card h4{
    font-size:20px;
    color:white;
    margin-bottom:10px;
    font-weight:600;
    transition:.3s;
}

/* paragraph */

.wc-why-card p{
    color:#bdbdbd;
    font-size:14px;
    line-height:1.7;
}

/* active card */

.wc-why-card.active{
    background:linear-gradient(135deg,#880019,#ff2d55);
    border-color:transparent;
}

.wc-why-card.active i,
.wc-why-card.active p,
.wc-why-card.active h4{
    color:#fff;
}
/*==============================================================
Why Choose Section
Part 3 (Responsive + Final Polish)
==============================================================*/

/*==========================
Tablet (992px)
==========================*/

@media(max-width:991px){

    .wc-why-section{
        padding:90px 0;
        text-align:center;
    }

    .wc-why-left{
        margin-bottom:50px;
    }

    .wc-why-left p{
        max-width:650px;
        margin:0 auto 30px;
    }

    .wc-why-stats{
        justify-content:center;
    }

    .wc-why-grid{
        grid-template-columns:1fr;
    }

}

/*==========================
Mobile (767px)
==========================*/

@media(max-width:767px){

    .wc-why-left h2{
        font-size:32px;
        line-height:1.3;
    }

    .wc-why-left p{
        font-size:15px;
        line-height:1.8;
    }

    .wc-why-stats{
        flex-direction:column;
        gap:18px;
        align-items:center;
    }

    .wc-why-stats div::before{
        display:none;
    }

    .wc-btn{
        width:230px;
        padding:14px 20px;
    }

    .wc-why-card{
        padding:24px;
    }

    .wc-why-card i{
        font-size:36px;
    }

}

/*==========================
Small Mobile (575px)
==========================*/

@media(max-width:575px){

    .wc-why-section{
        padding:70px 0;
    }

    .wc-why-left h2{
        font-size:26px;
    }

    .wc-why-left p{
        font-size:14px;
    }

    .wc-btn{
        width:100%;
    }

    .wc-why-card h4{
        font-size:18px;
    }

}

/*==========================
Extra Small (480px)
==========================*/

@media(max-width:480px){

    .wc-why-section{
        padding:60px 0;
    }

    .wc-why-left h2{
        font-size:24px;
    }

    .wc-why-card{
        padding:20px;
    }

    .wc-why-card i{
        font-size:32px;
    }

}

/*==========================
Smooth Global Transitions
==========================*/

.wc-why-section *{
    transition:all .35s ease;
}

/*==========================
Selection Color
==========================*/

.wc-why-section ::selection{
    background:#880019;
    color:#fff;
}

/*==============================================================
Why Website Matters Section (Full Final CSS)
==============================================================*/

.wc-why-web-section{
    position:relative;
    padding:100px 0;
    background:#ffffff;
    overflow:hidden;
}

/*==========================
GRID BACKGROUND (TECH STYLE)
==========================*/

.wc-why-web-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.133) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.153) 1px, transparent 1px);
    background-size:60px 60px;
    opacity:.7;
    pointer-events:none;
    z-index:0;
}

.wc-why-web-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(circle,#88001912,transparent 70%);
    top:-180px;
    right:-180px;
    pointer-events:none;
    z-index:0;
}

/*==========================
CONTENT LAYER FIX
==========================*/

.wc-why-web-section .container{
    position:relative;
    z-index:2;
}

/*==========================
TAG
==========================*/

.wc-why-web-tag{
    display:inline-block;
    padding:6px 14px;
    background:#88001910;
    color:#880019;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

/*==========================
HEADING
==========================*/

.wc-why-web-content h2{
    font-size:38px;
    font-weight:700;
    color:#111;
    line-height:1.3;
    margin-bottom:15px;
}

.wc-why-web-content h2 span{
    color:#880019;
}

/*==========================
PARAGRAPH
==========================*/

.wc-why-web-content p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:12px;
    max-width:550px;
}

/*==========================
LIST
==========================*/

.wc-why-web-list{
    list-style:none;
    padding:0;
    margin:20px 0 25px;
}

.wc-why-web-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:10px;
    color:#333;
    font-size:14px;
}

.wc-why-web-list i{
    color:#880019;
    margin-top:3px;
    font-size:16px;
}

/*==========================
BUTTON
==========================*/

.wc-why-web-btn{
    display:inline-block;
    padding:12px 28px;
    background:#880019;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.wc-why-web-btn:hover{
    background:#a40022;
    color: white;
    transform:translateY(-2px);
}

/*==========================
IMAGE
==========================*/

.wc-why-web-image{
    text-align:center;
}

.wc-why-web-image img{
    width:100%;
    max-width:520px;
    border-radius:14px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.4s;
}

.wc-why-web-image img:hover{
    transform:scale(1.03);
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

    .wc-why-web-section{
        text-align:center;
    }

    .wc-why-web-content p{
        margin:0 auto 12px;
    }

    .wc-why-web-list li{
        justify-content:center;
    }

    .wc-why-web-image{
        margin-top:35px;
    }
}

@media(max-width:767px){

    .wc-why-web-section{
        padding:70px 0;
    }

    .wc-why-web-content h2{
        font-size:28px;
    }

    .wc-why-web-btn{
        width:220px;
        text-align:center;
    }
}

@media(max-width:480px){

    .wc-why-web-content h2{
        font-size:24px;
    }

    .wc-why-web-btn{
        width:100%;
    }
}