h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #faf9f7;
}

p {
    max-width: 700px;
    margin-bottom: 20px;
}

/* ===============================
   WEB INTRO SECTION
================================= */

.web_intro_section {
    padding: 100px 0;
    background: #19272B;
}

.web_intro_section .web_top_title span {
    display: inline-block;
    padding: 6px 20px;
    background: #43BAFF;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.web_intro_section .web_top_heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
}

.web_intro_image {
    text-align: center;
}

.web_intro_image img {
    width: 80%;
    max-width: 420px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    transition: 0.4s ease;
}

.web_intro_image img:hover {
    transform: translateY(-8px);
}

.web_intro_content p {
    font-size: 16px;
    line-height: 1.9;
    color: #ffffff;
    margin-bottom: 22px;
}

.web_intro_content .highlight {
    color: #43BAFF;
    font-weight: 600;
}

/* ===============================
   FEATURE CARD
================================= */

/* .web_box_new:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(79,70,229,0.2);
    border-color: #4f46e5;
} */

/* .web_icons {
    margin-bottom: 25px;
} */

/* .web_icons i {
    font-size: 48px;
    color: #43BAFF;
    background: linear-gradient(135deg,#eef2ff,#ffffff);
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    transition: 0.4s ease;
} */

/* .web_box_new:hover .web_icons i {
    background: #086AD8;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
} */

/* .web_middle_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
} */

/* .web_middle_text h4 {
    font-size: 21px;
    font-weight: 600;
    color: #43BAFF;
} */

/* .web_middle_text span {
    font-size: 60px;
    font-weight: 800;
    color: #a6abab;
    position: absolute;
    top: 15px;
    right: 25px;
} */

/* .web_box_para p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
} */

/* ===============================
   HERO SECTION
================================= */

/* .hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg,#0a1f44,#112b5f);
} */

/* .hero-buttons {
    margin-top: 30px;
} */

/* .btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    margin: 10px;
    display: inline-block;
    transition: 0.3s ease;
} */


/* .primary:hover {
    background: #fff;
} */

/* .secondary {
    border: 2px solid #f7f5f1;
    color: #f1f0ec;
} */

/* .secondary:hover {
    background: #f7f6f6;
    color: #0a1f44;
} */

/* ===============================
   service section
================================= */

.service-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.tech-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    text-align: center;
}

.tech-grid div,
.process-grid div {
    background: #112b5f;
    padding: 20px;
    border-radius: 8px;
}

.card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.card:hover {
    transform: translateY(-10px);
    border-color: #f8f8f6;
}

.card i {
    font-size: 30px;
    color: #19272b;
    margin-bottom: 15px;
}

/* ===============================
  technologoy
================================= */
.tech-card{
    background:#ffffffc4;
    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
    color: black;
}

.tech-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.tech-card i{
    margin:5px;
}

   /*===================================
   BENEFITS SECTION
   ===================================*/
    .benefits {
        /* background: linear-gradient(135deg, #0b1e36, #142d4c); */
        padding: 100px 0;
    }

    .benefits .section-title {
        color: #f7eed3;
    }

    /* Benefit Card */
    .benefit-item {
        background: #ffffff;
        padding: 35px 25px;
        border-radius: 15px;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    /* Gold Top Border */
    .benefit-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #9e9a8c;
    }

    /* Icon */
    .benefit-item i {
        font-size: 28px;
        color: #6d695a;
        margin-bottom: 15px;
    }

    /* Text */
    .benefit-item h6 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .benefit-item p {
        font-size: 14px;
        color: #555;
    }

    /* Hover Effect */
    .benefit-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }



/* ===============================
    WHY Choose Us
================================= */


.why ul {
    list-style: none;
}

.why li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cta {
    background: #112b5f;
    text-align: center;
}

/*===============
RESULTS
===================*/

   /*  */
.results{

text-align:center;
}

.metric{
padding:30px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.1);
transition:0.3s;
}

.metric:hover{
border-color:#ffffff;
transform:translateY(-5px);
}

.metric h3{
color:#d4af37;
font-weight:700;
}
.tech-card{
    background:#ffffff;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
    color: black;
}

.tech-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.tech-card i{
    margin:5px;
}



/*
============================
PROCESS
============================*/

/* PROCESS SECTION */
.process{
    /* background: linear-gradient(135deg, #0a1b2e, #102b4c); */
    padding: 10px 0;
    color: #ffffff;
}

/* Title */
.process h2{
    text-align: center;
    color: white;   /* Neon Accent */
    font-weight: 600;
    margin-bottom: 60px;
}

/* Grid Layout */
.process-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Step Box */
.process-grid div{
    background: #2a486e;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
    border: 1px solid rgba(0,224,255,0.15);
}

/* Step Number Auto Generate */
.process-grid div::before{
    content: counter(step);
    counter-increment: step;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 15px;
    background: #ffffff;
    color: #0a1b2e;
    border-radius: 50%;
    font-weight: 600;
}

.process-grid{
    counter-reset: step;
}

/* Hover Effect */
.process-grid div:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,224,255,0.2);
    border-color: #00e0ff;
}

/* Responsive Headings */
@media (max-width: 768px) {
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
}
