/* =========================
   MSME HERO
========================= */

.msme-hero{

    min-height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.78)
    ),

    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1600");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:40px;

    position:relative;

    overflow:hidden;
}

/* FLOATING GLOW */

.msme-hero::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(0,223,154,0.15);

    border-radius:50%;

    top:-100px;
    left:-100px;

    filter:blur(90px);

    animation:floatGlow 8s infinite alternate;
}

.msme-hero::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    background:
    rgba(0,191,255,0.12);

    border-radius:50%;

    bottom:-100px;
    right:-100px;

    filter:blur(90px);

    animation:floatGlow2 10s infinite alternate;
}

@keyframes floatGlow{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(70px,50px);
    }
}

@keyframes floatGlow2{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(-60px,-40px);
    }
}

/* OVERLAY */

.msme-overlay{

    max-width:1000px;

    color:white;

    position:relative;

    z-index:2;
}

/* BADGE */

.msme-badge{

    display:inline-block;

    padding:12px 24px;

    background:#00df9a;

    color:black;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;
}

/* TITLE */

.msme-overlay h1{

    font-size:78px;

    line-height:1.2;

    margin-bottom:25px;
}

/* TEXT */

.msme-overlay p{

    font-size:24px;

    color:#dbeafe;

    line-height:1.9;

    margin-bottom:45px;
}

/* BUTTONS */

.msme-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;
}

.primary-btn,
.secondary-btn{

    padding:18px 36px;

    border:none;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s;
}

.primary-btn{

    background:#00df9a;

    color:black;
}

.secondary-btn{

    background:transparent;

    border:2px solid white;

    color:white;
}

.primary-btn:hover,
.secondary-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.25);
}

/* TRUST */

.msme-trust{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;
}

.trust-card{

    width:220px;

    padding:28px;

    border-radius:25px;

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.08);
}

.trust-card h2{

    font-size:42px;

    color:#00df9a;

    margin-bottom:12px;
}

.trust-card p{

    color:white;

    font-size:18px;
}

/* =========================
   MAIN WRAPPER
========================= */

.msme-main-wrapper{

    width:92%;

    margin:100px auto;
}

/* TOP GRID */

.msme-top-grid{

    display:grid;

    grid-template-columns:1.5fr 0.9fr;

    gap:40px;
}

/* LEFT */

.msme-left-content{

    display:flex;

    flex-direction:column;

    gap:35px;
}

/* CARD */

.msme-info-card{

    background:
    rgba(255,255,255,0.8);

    backdrop-filter:blur(18px);

    padding:50px;

    border-radius:35px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    position:relative;

    overflow:hidden;

    transition:0.4s;
}

.msme-info-card::before{

    content:"";

    position:absolute;

    width:240px;
    height:240px;

    background:
    rgba(0,223,154,0.08);

    border-radius:50%;

    top:-80px;
    right:-80px;

    filter:blur(45px);
}

.msme-info-card:hover{

    transform:translateY(-8px);
}

.msme-info-card h2{

    font-size:38px;

    color:#071a2f;

    margin-bottom:25px;
}

.msme-info-card p{

    font-size:18px;

    line-height:2;

    color:#555;
}

.msme-info-card ul{

    padding-left:20px;
}

.msme-info-card ul li{

    font-size:18px;

    line-height:2;

    margin-bottom:10px;
}

/* FORM */

.msme-form-box{

    background:
    linear-gradient(
    135deg,
    #02111f,
    #003566
    );

    padding:45px 35px;

    border-radius:35px;

    position:sticky;

    top:120px;

    height:fit-content;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.25);
}

.msme-form-box h2{

    color:white;

    text-align:center;

    font-size:38px;

    margin-bottom:35px;
}

.msme-form-box form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.msme-form-box input,
.msme-form-box select,
.msme-form-box textarea{

    background:
    rgba(255,255,255,0.08);

    border:none;

    padding:18px;

    border-radius:18px;

    color:white;

    font-size:16px;

    outline:none;
}

.msme-form-box input::placeholder,
.msme-form-box textarea::placeholder{

    color:#cbd5e1;
}

.msme-form-box button{

    padding:18px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #00df9a,
    #00bfff
    );

    color:black;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s;
}

.msme-form-box button:hover{

    transform:
    translateY(-5px);
}

/* BOTTOM GRID */

.msme-bottom-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/* BOTTOM CARD */

.msme-bottom-card{

    background:white;

    padding:40px 35px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:0.4s;
}

.msme-bottom-card:hover{

    transform:translateY(-10px);
}

.msme-bottom-card h2{

    font-size:30px;

    color:#071a2f;

    margin-bottom:25px;
}

.msme-bottom-card ul{

    padding-left:20px;
}

.msme-bottom-card ul li{

    font-size:17px;

    line-height:2;

    margin-bottom:10px;
}

/* =========================
   PREMIUM SERVICES
========================= */

.premium-services{

    padding:100px 8%;

    text-align:center;
}

.premium-services h1{

    font-size:55px;

    color:#071a2f;

    margin-bottom:20px;
}

.service-subtitle{

    font-size:22px;

    color:#666;

    margin-bottom:60px;
}

/* GRID */

.premium-service-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

/* CARD */

.premium-service-card{

    background:white;

    padding:45px 35px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:0.4s;
}

.premium-service-card:hover{

    transform:
    translateY(-12px);
}

.service-icon{

    font-size:55px;

    margin-bottom:25px;
}

.premium-service-card h2{

    font-size:30px;

    margin-bottom:20px;
}

.premium-service-card p{

    line-height:1.9;

    color:#555;

    margin-bottom:25px;
}

.premium-service-card button{

    padding:14px 28px;

    border:none;

    border-radius:12px;

    background:#00df9a;

    color:black;

    font-weight:700;

    cursor:pointer;
}

/* =========================
   PROCESS
========================= */

.msme-process{

    padding:100px 8%;

    background:
    linear-gradient(
    135deg,
    #02111f,
    #003566
    );

    text-align:center;

    color:white;
}

.msme-process h1{

    font-size:55px;

    margin-bottom:20px;
}

.process-subtitle{

    font-size:22px;

    color:#dbeafe;

    margin-bottom:60px;
}

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

.process-card{

    background:
    rgba(255,255,255,0.08);

    padding:45px 30px;

    border-radius:30px;

    backdrop-filter:blur(18px);

    transition:0.4s;
}

.process-card:hover{

    transform:
    translateY(-10px);
}

.process-number{

    width:85px;
    height:85px;

    background:#00df9a;

    color:black;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:30px;

    font-weight:700;

    margin-bottom:25px;
}

/* REVIEW */

.review-section{

    padding:100px 8%;

    text-align:center;

    overflow:hidden;
}

.review-section h1{

    font-size:55px;

    margin-bottom:60px;
}

.review-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:slideReviews 20s linear infinite;
}

.review-card{

    min-width:340px;

    background:white;

    padding:40px 30px;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

.review-card h2{

    margin-bottom:20px;
}

.review-card p{

    line-height:1.9;

    margin-bottom:20px;

    color:#555;
}

.review-card h3{

    color:#00b894;
}

@keyframes slideReviews{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:1000px){

    .msme-top-grid{

        grid-template-columns:1fr;
    }

    .msme-bottom-grid{

        grid-template-columns:1fr;
    }

    .msme-form-box{

        position:relative;

        top:0;
    }
}

@media(max-width:768px){

    .msme-overlay h1{

        font-size:42px;
    }

    .msme-overlay p{

        font-size:18px;
    }

    .premium-services h1,
    .msme-process h1,
    .review-section h1{

        font-size:38px;
    }

    .review-card{

        min-width:280px;
    }
}/* =========================
   WHY CHOOSE SECTION
========================= */

.gst-features{

    padding:120px 8%;

    background:
    linear-gradient(
    135deg,
    #02111f,
    #062742,
    #0b3d66
    );

    position:relative;

    overflow:hidden;

    text-align:center;
}

/* BACKGROUND GLOW */

.gst-features::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(0,223,154,0.15);

    border-radius:50%;

    top:-150px;
    left:-150px;

    filter:blur(120px);

    animation:moveGlow 8s infinite alternate;
}

.gst-features::after{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(0,140,255,0.18);

    border-radius:50%;

    bottom:-150px;
    right:-150px;

    filter:blur(120px);

    animation:moveGlow2 10s infinite alternate;
}

/* HEADING */

.gst-features h1{

    font-size:60px;

    color:white;

    margin-bottom:70px;

    position:relative;

    z-index:2;

    line-height:1.3;
}

/* GRID */

.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

    position:relative;

    z-index:2;
}

/* CARD */

.feature-box{

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.1);

    padding:45px 35px;

    border-radius:30px;

    transition:0.4s;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25);
}

/* TOP LINE */

.feature-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
    90deg,
    #00df9a,
    #00bfff
    );
}

/* HOVER */

.feature-box:hover{

    transform:
    translateY(-15px)
    scale(1.03);

    background:
    rgba(255,255,255,0.12);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.4);
}

/* TITLE */

.feature-box h2{

    font-size:32px;

    color:white;

    margin-bottom:20px;

    line-height:1.4;
}

/* TEXT */

.feature-box p{

    font-size:18px;

    color:#dbeafe;

    line-height:1.9;
}

/* ANIMATION */

@keyframes moveGlow{

    0%{

        transform:
        translate(0,0);
    }

    100%{

        transform:
        translate(80px,60px);
    }
}

@keyframes moveGlow2{

    0%{

        transform:
        translate(0,0);
    }

    100%{

        transform:
        translate(-80px,-60px);
    }
}

/* MOBILE */

@media(max-width:768px){

    .gst-features{

        padding:90px 6%;
    }

    .gst-features h1{

        font-size:40px;
    }

    .feature-box{

        padding:35px 25px;
    }

    .feature-box h2{

        font-size:26px;
    }

}

/* SELECT DROPDOWN FIX */

.msme-form-box select{

    background: rgba(255,255,255,0.08) !important;

    color: white !important;

    border: 1px solid rgba(255,255,255,0.08);

    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;

    background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 18px center;

    padding-right: 50px;
}

/* SELECT FULL FIX */

.msme-form-box select{

    width:100%;

    background:#071a2f !important;

    color:white !important;

    border:none;

    padding:18px;

    border-radius:18px;

    font-size:16px;

    outline:none;

    cursor:pointer;

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;
}

/* OPTIONS */

.msme-form-box select option{

    background:#071a2f !important;

    color:white !important;
}
.dark-select{

    background:#071a2f !important;

    color:white !important;
}

.dark-select option{

    background:#071a2f !important;

    color:white !important;
}

/* =========================================
   LUXURY PREMIUM MSME DESIGN
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#020617;
}

/* =========================================
   SECTION
========================================= */

.pricing-section{
    width:100%;
    min-height:100vh;
    padding:120px 8%;
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at top left,#001a3d 0%,transparent 35%),
    radial-gradient(circle at bottom right,#001233 0%,transparent 35%),
    #020617;
}

/* GLOW EFFECTS */

.pricing-section::before{
    content:'';
    position:absolute;
    width:650px;
    height:650px;
    background:radial-gradient(circle,#00ffff22,transparent 70%);
    top:-300px;
    left:-250px;
}

.pricing-section::after{
    content:'';
    position:absolute;
    width:650px;
    height:650px;
    background:radial-gradient(circle,#0051ff22,transparent 70%);
    bottom:-300px;
    right:-250px;
}

/* =========================================
   TITLE
========================================= */

.pricing-title{
    text-align:center;
    margin-bottom:90px;
    position:relative;
    z-index:2;
}

.pricing-title h1{
    font-size:75px;
    font-weight:800;
    color:#fff;
    line-height:1.2;
}

.pricing-title h1 span{
    background:linear-gradient(to right,#00ffff,#00a2ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.pricing-title p{
    color:#cbd5e1;
    font-size:26px;
    max-width:900px;
    margin:25px auto;
    line-height:1.7;
}

.title-line{
    width:180px;
    height:4px;
    background:linear-gradient(to right,#00ffff,#0051ff);
    margin:30px auto;
    border-radius:50px;
    box-shadow:0 0 25px #00ffff;
}

/* =========================================
   CONTAINER
========================================= */

.pricing-container{
    display:flex;
    justify-content:center;
    gap:45px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}

/* =========================================
   CARD
========================================= */

.pricing-card{
    width:390px;
    background:rgba(5,12,30,0.94);
    border:1px solid rgba(0,255,255,0.18);
    border-radius:35px;
    padding:50px 38px;
    position:relative;
    overflow:hidden;
    transition:0.5s ease;
    backdrop-filter:blur(15px);

    box-shadow:
    0 0 25px rgba(0,255,255,0.08),
    inset 0 0 30px rgba(255,255,255,0.02);
}

/* SHINE EFFECT */

.pricing-card::before{
    content:'';
    position:absolute;
    top:-120px;
    left:-50%;
    width:200%;
    height:250px;
    background:linear-gradient(
    180deg,
    rgba(255,255,255,0.10),
    transparent
    );
    transform:rotate(5deg);
}

/* HOVER */

.pricing-card:hover{
    transform:translateY(-18px) scale(1.02);
    border-color:#00ffff;

    box-shadow:
    0 0 30px #00ffff55,
    0 0 90px #0051ff33;
}

/* PREMIUM CARD */

.premium-card{
    border:2px solid #00ffff;

    box-shadow:
    0 0 35px #00ffff55,
    0 0 100px #0051ff33;
}

/* BUSINESS CARD */

.business-card{
    border:2px solid #8b5cf6;
}

/* =========================================
   PLAN TAG
========================================= */

.plan-tag{
    display:inline-block;
    padding:12px 32px;
    border-radius:50px;
    border:2px solid rgba(0,255,255,0.35);

    color:#00ffff;
    font-size:22px;
    font-weight:600;

    margin-bottom:35px;

    background:rgba(0,255,255,0.06);
}

.premium-tag{
    color:#00a2ff;
    border-color:#00a2ff;
}

.business-tag{
    color:#c084fc;
    border-color:#c084fc;
}

/* =========================================
   ICON
========================================= */

.icon-circle{
    width:120px;
    height:120px;
    border-radius:50%;

    border:2px solid rgba(0,255,255,0.25);

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0 auto 35px;

    font-size:55px;

    background:rgba(0,255,255,0.05);

    box-shadow:
    0 0 25px rgba(0,255,255,0.18),
    inset 0 0 18px rgba(255,255,255,0.03);
}

.premium-icon{
    border-color:#00a2ff;
}

.business-icon{
    border-color:#c084fc;
}

/* =========================================
   HEADINGS
========================================= */

.pricing-card h2{
    color:#fff;
    text-align:center;
    font-size:40px;
    line-height:1.4;
    margin-bottom:15px;
    font-weight:700;
}

.small-line{
    width:85px;
    height:3px;
    background:#00ffff;
    margin:20px auto;
    border-radius:50px;
    box-shadow:0 0 18px #00ffff;
}

/* =========================================
   PRICE
========================================= */

.pricing-card h3{
    text-align:center;
    font-size:85px;
    margin-bottom:35px;
    font-weight:800;

    background:linear-gradient(to right,#00ffff,#00ffb3);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================================
   FEATURES
========================================= */

.pricing-card ul{
    list-style:none;
    margin-bottom:42px;
}

.pricing-card ul li{
    color:#e2e8f0;
    font-size:24px;
    margin-bottom:20px;
    line-height:1.6;
}

/* =========================================
   BUTTON
========================================= */

.pricing-btn{
    width:100%;
    height:78px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:20px;

    text-decoration:none;

    font-size:28px;
    font-weight:700;
    color:#fff;

    background:linear-gradient(to right,#12e7d8,#0f4dff);

    transition:0.4s ease;

    box-shadow:
    0 0 25px rgba(0,255,255,0.25);
}

.pricing-btn:hover{
    transform:scale(1.05);

    box-shadow:
    0 0 25px #00ffff,
    0 0 60px #0051ff;
}

/* =========================================
   BADGE
========================================= */

.popular-badge{
    position:absolute;
    top:0;
    right:0;

    background:linear-gradient(to bottom,#00ffff,#00ffb3);

    color:#000;

    padding:18px 24px;

    font-size:20px;
    font-weight:700;

    clip-path:polygon(0 0,100% 0,100% 100%,50% 82%,0 100%);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .pricing-card{
        width:100%;
        max-width:500px;
    }

    .pricing-title h1{
        font-size:55px;
    }
}

@media(max-width:768px){

    .pricing-section{
        padding:80px 5%;
    }

    .pricing-title h1{
        font-size:42px;
    }

    .pricing-title p{
        font-size:18px;
    }

    .pricing-card{
        padding:40px 25px;
    }

    .pricing-card h2{
        font-size:30px;
    }

    .pricing-card h3{
        font-size:65px;
    }

    .pricing-card ul li{
        font-size:20px;
    }

    .pricing-btn{
        font-size:22px;
    }
}

/* =========================
   CLIENT REVIEW SECTION
========================= */

.review-section{

    padding:120px 8%;

    background:
    linear-gradient(
    135deg,
    #f8fbff,
    #eef6ff,
    #ffffff
    );

    text-align:center;

    overflow:hidden;

    position:relative;
}

/* LIGHT GLOW */

.review-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(0,191,255,0.12);

    border-radius:50%;

    top:-200px;
    left:-150px;

    filter:blur(120px);
}

.review-section::after{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(0,223,154,0.10);

    border-radius:50%;

    bottom:-180px;
    right:-120px;

    filter:blur(120px);
}

/* HEADING */

.review-section h1{

    font-size:58px;

    color:#071a2f;

    margin-bottom:20px;

    position:relative;

    z-index:2;

    font-weight:800;
}

.review-section p{

    color:#5b6472;

    font-size:20px;

    margin-bottom:60px;

    position:relative;

    z-index:2;
}

/* REVIEW TRACK */

.review-track{

    display:flex;

    gap:35px;

    width:max-content;

    animation:slideReviews 20s linear infinite;

    position:relative;

    z-index:2;
}

/* REVIEW CARD */

.review-card{

    min-width:350px;

    background:
    rgba(255,255,255,0.82);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.5);

    padding:45px 35px;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    transition:0.4s;
}

/* HOVER */

.review-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,191,255,0.18);
}

/* CLIENT NAME */

.review-card h2{

    font-size:28px;

    margin-bottom:18px;

    color:#071a2f;
}

/* REVIEW TEXT */

.review-card p{

    line-height:1.9;

    margin-bottom:25px;

    color:#4b5563;

    font-size:17px;
}

/* CLIENT ROLE */

.review-card h3{

    color:#00b894;

    font-size:18px;

    font-weight:700;
}

/* STARS */

.review-stars{

    color:#fbbf24;

    font-size:22px;

    margin-bottom:18px;
}

/* ANIMATION */

@keyframes slideReviews{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* MOBILE */

@media(max-width:768px){

    .review-section h1{

        font-size:40px;
    }

    .review-card{

        min-width:280px;
    }
}

/* =========================
   LIGHT BLUE WEBSITE BACKGROUND
========================= */

body{

    background:
    linear-gradient(
    135deg,
    #e0f7ff,
    #d6f4ff,
    #eefcff,
    #d9f3ff
    );

    color:#071a2f;
}

/* SECTION COMMON BG */

section{

    background:transparent;
}

/* PREMIUM SERVICES */

.premium-services{

    background:
    linear-gradient(
    135deg,
    #ecfaff,
    #dff6ff
    );
}

/* REVIEW SECTION */

.review-section{

    background:
    linear-gradient(
    135deg,
    #f4fcff,
    #dff6ff
    );
}

/* CLIENT CARD */

.review-card{

    background:white;

    border:
    1px solid rgba(0,191,255,0.15);

    box-shadow:
    0 10px 30px rgba(0,191,255,0.08);
}

/* PROCESS SECTION */

.shop-process{

    background:
    linear-gradient(
    135deg,
    #dff6ff,
    #cfefff,
    #eaf9ff
    );

    color:#071a2f;
}

.shop-process h1,
.process-card h2{

    color:#071a2f;
}

.process-subtitle{

    color:#355070;
}

/* PROCESS CARDS */

.process-card{

    background:
    rgba(255,255,255,0.75);

    border:
    1px solid rgba(0,191,255,0.12);

    backdrop-filter:blur(12px);

    color:#071a2f;
}

/* WHY CHOOSE SECTION */

.gst-features{

    background:
    linear-gradient(
    135deg,
    #dff6ff,
    #cfefff,
    #ecfbff
    );
}

.gst-features h1{

    color:#071a2f;
}

.feature-box{

    background:
    rgba(255,255,255,0.75);

    border:
    1px solid rgba(0,191,255,0.12);
}

.feature-box h2{

    color:#071a2f;
}

.feature-box p{

    color:#355070;
}