/* HERO SECTION */

.itr-hero{
    background:
    linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.7)
    ),
    url("../images/itr-banner.jpg");

    background-size: cover;
    background-position: center;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 20px;

    color: white;
}

.itr-overlay{
    max-width: 900px;
}

.itr-badge{
    display: inline-block;

    background: #00b894;

    padding: 10px 20px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 25px;
}

.itr-hero h1{
    font-size: 60px;
    line-height: 1.3;

    margin-bottom: 20px;
}

.itr-hero p{
    font-size: 20px;
    line-height: 1.8;

    margin-bottom: 40px;

    color: #ddd;
}

/* BUTTONS */

.itr-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 50px;
}

.secondary-btn{
    background: transparent;
    border: 2px solid white;
    color: white;

    padding: 14px 35px;

    border-radius: 8px;

    cursor: pointer;

    transition: 0.3s;
}

.secondary-btn:hover{
    background: white;
    color: black;
}

/* TRUST CARDS */

.itr-trust{
    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(200px,1fr));

    gap: 25px;
}

.trust-card{
    background: rgba(255,255,255,0.1);

    padding: 30px;

    border-radius: 15px;

    backdrop-filter: blur(10px);
}

.trust-card h2{
    font-size: 35px;
    margin-bottom: 10px;

    color: #00b894;
}

/* PREMIUM SERVICES */

.premium-services{
    padding: 100px 8%;
    background: #f8f9fc;

    text-align: center;
}

.premium-services h1{
    font-size: 45px;
    margin-bottom: 15px;
}

.service-subtitle{
    color: #666;
    margin-bottom: 60px;
}

.premium-service-grid{
    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap: 30px;
}

.premium-service-card{
    background: white;

    padding: 40px 30px;

    border-radius: 20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.premium-service-card:hover{
    transform: translateY(-10px);
}

.service-icon{
    font-size: 50px;
    margin-bottom: 20px;
}

.premium-service-card h2{
    margin-bottom: 15px;
}

.premium-service-card p{
    color: #666;
    line-height: 1.8;

    margin-bottom: 25px;
}

.premium-service-card button{
    background: #00b894;
    color: white;

    border: none;

    padding: 12px 25px;

    border-radius: 8px;

    cursor: pointer;
}

/* PROCESS SECTION */

.itr-process{
    padding: 100px 8%;

    text-align: center;
}

.itr-process h1{
    font-size: 45px;
    margin-bottom: 15px;
}

.process-subtitle{
    color: #666;
    margin-bottom: 60px;
}

.process-grid{
    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap: 30px;
}

.process-card{
    background: white;

    padding: 40px 30px;

    border-radius: 20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.process-card:hover{
    transform: translateY(-10px);
}

.process-number{
    width: 70px;
    height: 70px;

    background: #00b894;
    color: white;

    margin: auto;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: bold;

    margin-bottom: 25px;
}

/* FAQ */

.faq-answer{
    max-height: 0;
    overflow: hidden;

    transition: 0.4s ease;
}

/* REVIEW */

.review-track{
    display: flex;
    gap: 25px;

    animation:
    scrollReviews 25s linear infinite;
}

.review-card{
    min-width: 320px;

    background: white;

    padding: 30px;

    border-radius: 15px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

@keyframes scrollReviews{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}

/* MOBILE */

@media(max-width:768px){

    .itr-hero h1{
        font-size: 38px;
    }

    .itr-hero p{
        font-size: 17px;
    }

    .premium-services h1,
    .itr-process h1{
        font-size: 34px;
    }

}
/* ===========================
   PREMIUM ITR HERO
=========================== */

.itr-hero{

    min-height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.75)
    ),

    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1600");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;
}

.itr-overlay{

    max-width:1000px;

    color:white;
}

.itr-badge{

    display:inline-block;

    background:#00df9a;

    color:black;

    padding:12px 24px;

    border-radius:50px;

    font-weight:bold;

    margin-bottom:25px;
}

.itr-overlay h1{

    font-size:75px;

    line-height:1.2;

    margin-bottom:25px;
}

.itr-overlay p{

    font-size:24px;

    color:#ddd;

    line-height:1.8;

    margin-bottom:45px;
}

.itr-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;
}

.primary-btn,
.secondary-btn{

    padding:18px 38px;

    border:none;

    border-radius:12px;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

.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);
}

.itr-trust{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;
}

.trust-card{

    background:rgba(255,255,255,0.1);

    backdrop-filter:blur(12px);

    padding:25px;

    border-radius:20px;

    width:200px;
}

.trust-card h2{

    font-size:40px;

    color:#00df9a;

    margin-bottom:10px;
}

.trust-card p{

    font-size:18px;

    color:white;
}

@media(max-width:768px){

    .itr-overlay h1{

        font-size:42px;
    }

    .itr-overlay p{

        font-size:18px;
    }

}


/* ===========================
   PREMIUM SERVICES
=========================== */

.premium-services{

    padding:100px 8%;

    background:#f4f7fc;

    text-align:center;
}

.premium-services h1{

    font-size:55px;

    color:#0d1b2a;

    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:25px;

    position:relative;

    overflow:hidden;

    transition:0.4s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

/* TOP GLOW */

.premium-service-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
    90deg,
    #00df9a,
    #00bfff
    );
}

/* HOVER */

.premium-service-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.15);
}

/* ICON */

.service-icon{

    font-size:55px;

    margin-bottom:25px;
}

/* TITLE */

.premium-service-card h2{

    font-size:30px;

    color:#0d1b2a;

    margin-bottom:20px;
}

/* TEXT */

.premium-service-card p{

    color:#555;

    line-height:1.9;

    font-size:18px;

    margin-bottom:30px;
}

/* BUTTON */

.premium-service-card button{

    padding:15px 28px;

    border:none;

    border-radius:12px;

    background:#00df9a;

    color:black;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

/* BUTTON HOVER */

.premium-service-card button:hover{

    transform:scale(1.05);

    background:#00c78c;
}
/* ===========================
   ITR PROCESS SECTION
=========================== */

.itr-process{

    padding:100px 8%;

    background:
    linear-gradient(
    135deg,
    #02111f,
    #062742,
    #003566
    );

    text-align:center;

    color:white;
}

.itr-process h1{

    font-size:55px;

    margin-bottom:20px;
}

.process-subtitle{

    font-size:22px;

    color:#dbeafe;

    margin-bottom:70px;
}

/* GRID */

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

/* CARD */

.process-card{

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,0.1);

    padding:45px 30px;

    border-radius:25px;

    transition:0.4s;
}

/* HOVER */

.process-card:hover{

    transform:
    translateY(-12px);

    background:
    rgba(255,255,255,0.12);
}

/* NUMBER */

.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:bold;

    margin-bottom:30px;
}

/* TITLE */

.process-card h2{

    font-size:28px;

    margin-bottom:20px;
}

/* TEXT */

.process-card p{

    color:#dbeafe;

    line-height:1.9;

    font-size:18px;
}

/* =========================================
   LUXURY PREMIUM ITR PRICING 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%;
    background:
    radial-gradient(circle at top left,#001d3d 0%,transparent 35%),
    radial-gradient(circle at bottom right,#001233 0%,transparent 35%),
    #020617;
    position:relative;
    overflow:hidden;
}

/* GLOW EFFECT */

.pricing-section::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#00e5ff22,transparent 70%);
    top:-250px;
    left:-250px;
}

.pricing-section::after{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#0047ff22,transparent 70%);
    bottom:-250px;
    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;
    text-shadow:0 0 20px rgba(255,255,255,0.1);
}

.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:850px;
    margin:25px auto;
    line-height:1.7;
}

.title-line{
    width:180px;
    height:4px;
    margin:30px auto;
    border-radius:50px;
    background:linear-gradient(to right,#00ffff,#0051ff);
    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.92);
    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);
}

/* TOP SHINE */

.pricing-card::before{
    content:'';
    position:absolute;
    top:-120px;
    left:-50%;
    width:200%;
    height:250px;
    background:linear-gradient(
    180deg,
    rgba(255,255,255,0.12),
    transparent
    );
    transform:rotate(5deg);
}

/* HOVER */

.pricing-card:hover{
    transform:translateY(-18px) scale(1.02);
    border-color:#00ffff;

    box-shadow:
    0 0 25px #00ffff55,
    0 0 80px #0051ff33;
}

/* PREMIUM CARD */

.premium-card{
    border:2px solid #00ffff;

    box-shadow:
    0 0 30px #00ffff55,
    0 0 100px #0051ff33;
}

/* =========================================
   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);

    box-shadow:
    inset 0 0 12px rgba(0,255,255,0.12),
    0 0 18px rgba(0,255,255,0.12);
}

/* =========================================
   ICON
========================================= */

.icon-circle{
    width:115px;
    height:115px;
    border-radius:50%;
    border:2px solid rgba(0,255,255,0.25);

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 35px;

    font-size:52px;
    color:#00ffff;

    background:rgba(0,255,255,0.04);

    box-shadow:
    0 0 25px rgba(0,255,255,0.18),
    inset 0 0 18px rgba(255,255,255,0.03);
}

/* =========================================
   HEADINGS
========================================= */

.pricing-card h2{
    color:#fff;
    text-align:center;
    font-size:42px;
    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;

    text-shadow:0 0 25px rgba(0,255,255,0.3);
}

/* =========================================
   FEATURES
========================================= */

.pricing-card ul{
    list-style:none;
    margin-bottom:42px;
}

.pricing-card ul li{
    color:#e2e8f0;
    font-size:26px;
    margin-bottom:20px;
    line-height:1.5;
    position:relative;
    padding-left:10px;
}

/* =========================================
   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;
}

/* =========================================
   MOST POPULAR 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:32px;
    }

    .pricing-card h3{
        font-size:65px;
    }

    .pricing-card ul li{
        font-size:20px;
    }

    .pricing-btn{
        font-size:22px;
    }
}

/* ===========================
   COUNTER SECTION
=========================== */

.counter-section{

    padding:100px 8%;

    background:#0d1b2a;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    text-align:center;
}

.counter-box{

    background:
    rgba(255,255,255,0.05);

    padding:45px 25px;

    border-radius:25px;

    backdrop-filter:blur(10px);

    transition:0.3s;
}

.counter-box:hover{

    transform:translateY(-10px);
}

.counter-box h1{

    font-size:65px;

    color:#00df9a;

    margin-bottom:15px;
}

.counter-box p{

    color:white;

    font-size:22px;
}
/* =========================
   PREMIUM FAQ SECTION
========================= */

.faq-section{

    padding:100px 8%;

    background:#ffffff;
}

.faq-section h1{

    text-align:center;

    font-size:55px;

    color:#0d1b2a;

    margin-bottom:60px;
}

/* CONTAINER */

.faq-container{

    max-width:950px;

    margin:auto;
}

/* ITEM */

.faq-item{

    margin-bottom:25px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

/* QUESTION */

.faq-question{

    width:100%;

    padding:28px;

    border:none;

    background:
    linear-gradient(
    135deg,
    #02111f,
    #003566
    );

    color:white;

    text-align:left;

    font-size:22px;

    cursor:pointer;

    transition:0.3s;
}

.faq-question:hover{

    background:
    linear-gradient(
    135deg,
    #003566,
    #00b894
    );
}

/* ANSWER */

.faq-answer{

    background:#f4f7fc;

    max-height:0;

    overflow:hidden;

    transition:max-height 0.5s ease;
}

.faq-answer p{

    padding:30px;

    font-size:18px;

    color:#555;

    line-height:1.9;
}
/* =========================
   CLIENT REVIEWS SLIDER
========================= */

.review-section{

    padding:100px 8%;

    background:#eef5f9;

    text-align:center;

    overflow:hidden;
}

/* HEADING */

.review-section h1{

    font-size:55px;

    color:#0d1b2a;

    margin-bottom:60px;
}

/* SLIDER */

.review-slider{

    width:100%;

    overflow:hidden;

    position:relative;
}

/* TRACK */

.review-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:slideReviews 20s linear infinite;
}

/* CARD */

.review-card{

    min-width:350px;

    background:white;

    padding:40px 30px;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    transition:0.4s;
}

/* HOVER */

.review-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.15);
}

/* STARS */

.review-card h2{

    font-size:30px;

    margin-bottom:20px;
}

/* TEXT */

.review-card p{

    color:#555;

    line-height:1.9;

    margin-bottom:20px;

    font-size:18px;
}

/* NAME */

.review-card h3{

    color:#00b894;

    font-size:22px;
}

/* ANIMATION */

@keyframes slideReviews{

    0%{

        transform:translateX(0);
    }

    100%{

        transform:translateX(-50%);
    }

}

/* MOBILE */

@media(max-width:768px){

    .review-card{

        min-width:280px;
    }

    .review-section h1{

        font-size:38px;
    }

}
body{

    background:
    linear-gradient(
    135deg,
    #eef4ff,
    #f8fbff
    );

    overflow-x:hidden;

    font-family:'Poppins',sans-serif;

    position:relative;
}

/* FLOATING BLUR */

body::before{

    content:"";

    position:fixed;

    width:500px;
    height:500px;

    background:
    rgba(0,223,154,0.12);

    border-radius:50%;

    top:-120px;
    left:-120px;

    filter:blur(90px);

    z-index:-1;

    animation:floatGlow 8s infinite alternate;
}

body::after{

    content:"";

    position:fixed;

    width:450px;
    height:450px;

    background:
    rgba(0,119,255,0.12);

    border-radius:50%;

    bottom:-120px;
    right:-120px;

    filter:blur(90px);

    z-index:-1;

    animation:floatGlow2 10s infinite alternate;
}

@keyframes floatGlow{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(80px,50px);
    }
}

@keyframes floatGlow2{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(-70px,-40px);
    }
}
.gst-main{

    width:92%;

    margin:100px auto;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    align-items:start;
}

/* LEFT */

.gst-text{

    background:
    rgba(255,255,255,0.75);

    backdrop-filter:blur(18px);

    padding:55px;

    border-radius:35px;

    border:
    1px solid rgba(255,255,255,0.5);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    position:relative;

    overflow:hidden;
}

.gst-text::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:
    rgba(0,223,154,0.08);

    border-radius:50%;

    top:-80px;
    right:-80px;

    filter:blur(40px);
}

.gst-text h2{

    font-size:38px;

    margin-bottom:25px;

    color:#071a2f;
}

.gst-text p{

    font-size:19px;

    line-height:2;

    color:#555;

    margin-bottom:30px;
}

.gst-text ul{

    padding-left:20px;
}

.gst-text ul li{

    margin-bottom:18px;

    font-size:18px;

    color:#333;

    line-height:1.9;
}
.gst-side-form{

    background:
    linear-gradient(
    135deg,
    rgba(2,17,31,0.95),
    rgba(0,53,102,0.95)
    );

    backdrop-filter:blur(20px);

    padding:45px 35px;

    border-radius:35px;

    position:sticky;

    top:120px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);

    border:
    1px solid rgba(255,255,255,0.08);
}

.gst-side-form h2{

    color:white;

    text-align:center;

    font-size:36px;

    margin-bottom:30px;
}

.gst-side-form form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.gst-side-form input,
.gst-side-form select,
.gst-side-form textarea{

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.08);

    padding:18px;

    border-radius:18px;

    color:white;

    outline:none;

    font-size:16px;

    backdrop-filter:blur(10px);
}

.gst-side-form input::placeholder,
.gst-side-form textarea::placeholder{

    color:#cbd5e1;
}

.gst-side-form button{

    background:
    linear-gradient(
    135deg,
    #00df9a,
    #00bfff
    );

    border:none;

    padding:18px;

    border-radius:18px;

    color:black;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s;
}

.gst-side-form button:hover{

    transform:
    translateY(-5px)
    scale(1.02);

    box-shadow:
    0 15px 35px rgba(0,223,154,0.35);
}
.feature-box{

    background:
    rgba(255,255,255,0.7);

    backdrop-filter:blur(18px);

    padding:45px 35px;

    border-radius:30px;

    transition:0.4s;

    border:
    1px solid rgba(255,255,255,0.5);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    position:relative;

    overflow:hidden;
}

.feature-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(0,223,154,0.08),
    rgba(0,119,255,0.08)
    );

    opacity:0;

    transition:0.4s;
}

.feature-box:hover::before{

    opacity:1;
}

.feature-box:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 55px rgba(0,0,0,0.12);
}

.feature-box h2{

    position:relative;

    z-index:2;

    font-size:28px;

    margin-bottom:18px;

    color:#071a2f;
}

.feature-box p{

    position:relative;

    z-index:2;

    line-height:1.9;

    color:#555;
}
header{

    position:relative;

    z-index:99999;
}

.navbar{

    position:relative;

    z-index:99999;
}
/* =========================
   ITR MAIN WRAPPER
========================= */

.itr-main-wrapper{

    width:92%;

    margin:100px auto;

    position:relative;
}

/* =========================
   TOP GRID
========================= */

.itr-top-grid{

    display:grid;

    grid-template-columns:1.5fr 0.9fr;

    gap:40px;

    align-items:start;
}

/* =========================
   LEFT CONTENT
========================= */

.itr-left-content{

    display:flex;

    flex-direction:column;

    gap:35px;
}

/* =========================
   INFO CARD
========================= */

.itr-info-card{

    background:
    rgba(255,255,255,0.75);

    backdrop-filter:blur(20px);

    padding:50px;

    border-radius:35px;

    border:
    1px solid rgba(255,255,255,0.6);

    position:relative;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    transition:0.4s;
}

/* TOP GLOW */

.itr-info-card::before{

    content:"";

    position:absolute;

    width:240px;
    height:240px;

    background:
    rgba(0,223,154,0.12);

    border-radius:50%;

    top:-80px;
    right:-80px;

    filter:blur(45px);
}

/* HOVER */

.itr-info-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 30px 60px rgba(0,0,0,0.12);
}

/* HEADING */

.itr-info-card h2{

    font-size:38px;

    color:#071a2f;

    margin-bottom:28px;

    position:relative;

    z-index:2;
}

/* PARAGRAPH */

.itr-info-card p{

    font-size:18px;

    line-height:2;

    color:#555;

    margin-bottom:20px;

    position:relative;

    z-index:2;
}

/* LIST */

.itr-info-card ul{

    padding-left:20px;

    position:relative;

    z-index:2;
}

.itr-info-card ul li{

    font-size:18px;

    color:#333;

    line-height:2.1;

    margin-bottom:12px;
}

/* =========================
   CONSULTATION FORM
========================= */

.itr-form-box{

    background:
    linear-gradient(
    135deg,
    rgba(2,17,31,0.98),
    rgba(0,53,102,0.95)
    );

    backdrop-filter:blur(25px);

    padding:45px 35px;

    border-radius:35px;

    position:sticky;

    top:120px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.25);

    border:
    1px solid rgba(255,255,255,0.08);
}

/* FORM GLOW */

.itr-form-box::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:
    rgba(0,223,154,0.15);

    border-radius:50%;

    top:-100px;
    right:-100px;

    filter:blur(55px);
}

/* FORM TITLE */

.itr-form-box h2{

    font-size:38px;

    text-align:center;

    color:white;

    margin-bottom:35px;

    position:relative;

    z-index:2;
}

/* FORM */

.itr-form-box form{

    display:flex;

    flex-direction:column;

    gap:20px;

    position:relative;

    z-index:2;
}

/* INPUTS */

.itr-form-box input,
.itr-form-box select,
.itr-form-box textarea{

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.08);

    padding:18px;

    border-radius:18px;

    color:white;

    font-size:16px;

    outline:none;

    backdrop-filter:blur(12px);

    transition:0.3s;
}

/* PLACEHOLDER */

.itr-form-box input::placeholder,
.itr-form-box textarea::placeholder{

    color:#cbd5e1;
}

/* FOCUS */

.itr-form-box input:focus,
.itr-form-box select:focus,
.itr-form-box textarea:focus{

    border:
    1px solid #00df9a;

    box-shadow:
    0 0 15px rgba(0,223,154,0.25);
}

/* BUTTON */

.itr-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;
}

/* BUTTON HOVER */

.itr-form-box button:hover{

    transform:
    translateY(-5px)
    scale(1.02);

    box-shadow:
    0 15px 35px rgba(0,223,154,0.35);
}

/* =========================
   BOTTOM GRID
========================= */

.itr-bottom-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/* =========================
   BOTTOM CARDS
========================= */

.itr-bottom-card{

    background:
    rgba(255,255,255,0.75);

    backdrop-filter:blur(18px);

    padding:40px 35px;

    border-radius:30px;

    border:
    1px solid rgba(255,255,255,0.6);

    position:relative;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:0.4s;
}

/* GLOW */

.itr-bottom-card::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:
    rgba(0,191,255,0.12);

    border-radius:50%;

    bottom:-70px;
    right:-70px;

    filter:blur(40px);
}

/* HOVER */

.itr-bottom-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 55px rgba(0,0,0,0.12);
}

/* TITLE */

.itr-bottom-card h2{

    font-size:30px;

    color:#071a2f;

    margin-bottom:25px;

    position:relative;

    z-index:2;
}

/* LIST */

.itr-bottom-card ul{

    padding-left:20px;

    position:relative;

    z-index:2;
}

.itr-bottom-card ul li{

    font-size:17px;

    color:#444;

    line-height:2;

    margin-bottom:10px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

    .itr-top-grid{

        grid-template-columns:1fr;
    }

    .itr-bottom-grid{

        grid-template-columns:1fr;
    }

    .itr-form-box{

        position:relative;

        top:0;
    }
}

@media(max-width:700px){

    .itr-info-card,
    .itr-form-box,
    .itr-bottom-card{

        padding:35px 25px;
    }

    .itr-info-card h2,
    .itr-form-box h2,
    .itr-bottom-card h2{

        font-size:28px;
    }

}

/* SELECT SERVICE FIX */

.itr-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;
}

/* DROPDOWN OPTIONS */

.itr-form-box select option{

    background: #0b1f33;

    color: white;
}
/* =========================
   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;
}