*{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }

.logo-m {
  width: 100px;
}


/* =========================
   PROBLEMS SECTION
========================= */

.problems-section {
    position: relative;
}

.problem-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.problem-card:hover {
    transform: translateY(-6px);
}

.problem-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    background: rgb(37, 99, 235);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.problem-icon i {
    font-size: 32px;
    color: #fff;
}

.problem-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    margin-bottom: 0;
    line-height: 1.8;
    color: #666;
}



/* =========================
   PERFORMANCE ENGINE
========================= */

.performance-engine {
    position: relative;
}

.engine-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.engine-card:hover {
    transform: translateY(-6px);
}

.engine-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgb(37, 99, 235);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.engine-icon i {
    font-size: 34px;
    color: #fff;
}

.engine-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.5;
}

/* =========================
   OUTCOMES SECTION
========================= */

.outcomes-section {
    background: #071f46;
    position: relative;
}

.outcomes-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.outcome-item i {
    color: #2563eb;
    font-size: 18px;
}

.outcome-item span {
    font-size: 16px;
}

.outcome-stat {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.outcome-stat:hover {
    transform: translateY(-6px);
}

.outcome-stat h2 {
    color: #2563eb;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
}

.outcome-stat p {
    color: #fff;
    margin-bottom: 0;
    line-height: 1.7;
}

.bg-light-image {
  background-image: url('../../assets/images/our-system.jpg');
  background-size: cover;
  background-position: center;
}

.bg-light-image .section-title-small {
  color: #fff;
  
}

.bg-light-image .section-title {
  color: #fff;
}

.bg-light-image .section-text {
  color: #fff;
  
}

.footer-logo {
  width: 100px;
  margin-bottom: 15px;
  border-radius: 10px;
}

    body{
        font-family:'Inter',sans-serif;
        background:#f7f9fc;
        color:#1f2937;
        overflow-x:hidden;
    }
    
    .form-control::placeholder {
  color: #f9f9f959 !important;
}

    a{
        text-decoration:none;
    }

    .navbar{
        background:#ffffff;
        padding:0px 0;
        box-shadow:0 2px 20px rgba(0,0,0,0.05);
    }

    .navbar-brand{
        font-size:28px;
        font-weight:800;
        color:#0f172a;
    }

    .navbar-nav .nav-link{
        color:#334155;
        font-weight:600;
        margin:0 10px;
    }

    .hero-section{
        position:relative;
        padding:120px 0 100px;
        background-image:url('../../assets/images/banner-image.jpg');
        overflow:hidden;
        background-position: center;
         background-size: cover;
    }

    .hero-section::before{
        content:'';
        position:absolute;
        width:500px;
        height:500px;
        background:rgba(255,255,255,0.04);
        border-radius:50%;
        top:-200px;
        right:-120px;
    }

    .hero-section::after{
        content:'';
        position:absolute;
        width:350px;
        height:350px;
        background:rgba(255,255,255,0.03);
        border-radius:50%;
        bottom:-150px;
        left:-100px;
    }

    .hero-content{
        position:relative;
        z-index:2;
    }

    .hero-badge{
        display:inline-block;
        background:rgba(255,255,255,0.12);
        border:1px solid rgba(255,255,255,0.1);
        color:#fff;
        padding:10px 18px;
        border-radius:50px;
        font-size:14px;
        margin-bottom:25px;
        backdrop-filter:blur(10px);
    }
    
   .form-select {
        color: #f9f9f99c;
    }

    .hero-title{
        font-size:64px;
        line-height:1.1;
        font-weight:800;
        color:#fff;
        margin-bottom:25px;
    }

    .hero-title span{
        color:#60a5fa;
    }

    .hero-text{
        font-size:18px;
        line-height:1.8;
        color:#dbeafe;
        margin-bottom:35px;
        max-width:650px;
    }

    .hero-btn{
        padding:15px 32px;
        border-radius:12px;
        font-weight:700;
        transition:0.3s ease;
        display:inline-block;
    }

    .btn-primary-custom{
        background:#2563eb;
        color:#fff;
    }

    .btn-primary-custom:hover{
        background:#1d4ed8;
        transform:translateY(-2px);
    }

    .btn-outline-custom{
        border:1px solid rgba(255,255,255,0.3);
        color:#fff;
        margin-left:15px;
    }

    .btn-outline-custom:hover{
        background:#fff;
        color:#0f172a;
    }

    .hero-card-wrap{
        position:relative;
        z-index:2;
    }

    .hero-card{
        background:#fff;
        border-radius:24px;
        padding:10px;
        box-shadow:0 25px 60px rgba(0,0,0,0.2);
    }

    .hero-card-item{
        display:flex;
        align-items:center;
        gap:15px;
        padding:18px 0;
        border-bottom:1px solid #e5e7eb;
    }

    .hero-card-item:last-child{
        border-bottom:none;
    }

    .hero-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

    .stats-section{
        margin-top:-45px;
        position:relative;
        z-index:5;
    }

    .stats-box{
        background:#fff;
        border-radius:22px;
        padding:35px;
        box-shadow:0 10px 40px rgba(0,0,0,0.08);
    }

    .stat-item h3{
        font-size:42px;
        font-weight:800;
        color:#0f172a;
    }

    .stat-item p{
        color:#64748b;
        margin:0;
    }

    .section-padding{
        padding:100px 0;
    }

    .section-title-small{
        color:#2563eb;
        font-weight:700;
        margin-bottom:15px;
        text-transform:uppercase;
        letter-spacing:1px;
    }

    .section-title{
        font-size:48px;
        font-weight:800;
        color:#0f172a;
        margin-bottom:20px;
    }

    .section-text{
        color:#64748b;
        line-height:1.9;
        font-size:17px;
    }

    .service-card{
        background:#fff;
        border-radius:24px;
        padding:40px;
        height:100%;
        transition:0.4s ease;
        border:1px solid #e2e8f0;
    }

    .service-card:hover{
        transform:translateY(-10px);
        box-shadow:0 25px 50px rgba(0,0,0,0.08);
    }

    .service-icon{
        width:75px;
        height:75px;
        border-radius:18px;
        background:#2563eb;
        display:flex;
        align-items:center;
        justify-content:center;
        color:#fff;
        font-size:32px;
        margin-bottom:25px;
    }

    .service-card h3{
        font-size:30px;
        font-weight:800;
        margin-bottom:18px;
        color:#0f172a;
    }

    .service-card p{
        color:#64748b;
        line-height:1.8;
        margin-bottom:25px;
    }

    .service-list{
        list-style:none;
        padding:0;
        margin:0;
    }

    .service-list li{
        padding:10px 0;
        color:#334155;
        font-weight:500;
    }

    .service-list li i{
        color:#2563eb;
        margin-right:10px;
    }

    .why-section{
        background:#0f172a;
    }

    .why-box{
        background:#111c34;
        border-radius:22px;
        padding:35px;
        border:1px solid rgba(255,255,255,0.08);
        height:100%;
    }

    .why-box h4{
        color:#fff;
        font-weight:700;
        margin-bottom:15px;
    }

    .why-box p{
        color:#cbd5e1;
        line-height:1.8;
        margin:0;
    }

    .cta-section{
        background:linear-gradient(135deg,#2563eb,#1e3a8a);
        border-radius:30px;
        padding:70px;
    }

    .cta-title{
        color:#fff;
        font-size:52px;
        font-weight:800;
        margin-bottom:20px;
    }

    .cta-text{
        color:#dbeafe;
        font-size:18px;
        line-height:1.8;
        margin-bottom:30px;
    }

    footer{
        background:#07152f;
        padding:80px 0 25px;
        color:#fff;
    }

    .footer-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #2563eb;
  background: #fff;
  width: max-content;
  padding: 20px;
  border-radius: 10px;
}

    .footer-text{
        color:#cbd5e1;
        line-height:1.8;
    }

    .footer-links{
        list-style:none;
        padding:0;
    }

    .footer-links li{
        margin-bottom:12px;
    }

    .footer-links li a{
        color:#cbd5e1;
        transition:0.3s ease;
    }

    .footer-links li a:hover{
        color:#60a5fa;
    }

    .copyright{
        border-top:1px solid rgba(255,255,255,0.08);
        margin-top:50px;
        padding-top:25px;
        color:#94a3b8;
    }

    @media(max-width:991px){
        .hero-title{
            font-size:42px;
        }

        .section-title{
            font-size:36px;
        }

        .cta-title{
            font-size:36px;
        }

        .cta-section{
            padding:40px;
        }
    }

    @media(max-width:767px){
        .hero-section{
            padding:90px 0 70px;
        }

        .hero-title{
            font-size:34px;
        }

        .btn-outline-custom{
            margin-left:0;
            margin-top:15px;
        }

        .section-padding{
            padding:70px 0;
        }

        .section-title{
            font-size:30px;
        }

        .cta-title{
            font-size:30px;
        }
    }
    
    
    /* =========================
   Contact Section CSS
========================= */

.contact-section {
    background: #f8f9fc;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.subtitle {
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-info-box,
.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 22px;
    margin-right: 20px;
}

.info-item h4 {
    margin-bottom: 8px;
    font-size: 20px;
    color: #111;
}

.info-item p,
.info-item a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #2563eb;
}

.theme-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.theme-btn:hover {
    background: #e65c00;
}

.py-80 {
    padding: 80px 0;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-25 {
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .contact-info-box {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}


/* =========================
   ABOUT PAGE CSS
========================= */

.about-hero {
    padding: 140px 0 100px;
    background: #022349;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    max-width: 750px;
}

.section-tag {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero h1 {
    font-size: 58px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
}


/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.9;
}

.about-points {
    margin-top: 30px;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.point i {
    color: #2563eb;
    font-size: 18px;
}

.point span {
    font-weight: 500;
}


/* =========================
   MISSION SECTION
========================= */

.mission-vision {
    padding: 100px 0;
    background: #f8f9fc;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 44px;
    line-height: 1.3;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.mission-box {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    transition: 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-5px);
}

.mission-box .icon {
    width: 75px;
    height: 75px;
    background: rgba(212,175,55,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
}

.mission-box .icon i {
    font-size: 30px;
    color: #2563eb;
}

.mission-box h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.mission-box p {
    color: #666;
    line-height: 1.8;
}


/* =========================
   VALUES SECTION
========================= */

.values-section {
    padding: 0px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.value-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 42px;
    color: #2563eb;
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}


/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.industry-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    transition: 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card i {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 22px;
}


/* =========================
   WHY US SECTION
========================= */

.why-us {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card i {
    font-size: 38px;
    color: #2563eb;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 22px;
    line-height: 1.5;
}


/* =========================
   CTA SECTION
========================= */

.about-cta {
    padding: 100px 0;
}

.cta-box {
    background: #022349;
    border-radius: 25px;
    padding: 80px 60px;
    text-align: center;
}

.cta-box h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 35px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .about-grid,
    .mission-grid,
    .values-grid,
    .industries-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero h1 {
        font-size: 46px;
    }

    .section-heading h2 {
        font-size: 38px;
    }
}


@media (max-width: 768px) {

    .about-grid,
    .mission-grid,
    .values-grid,
    .industries-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 120px 0 80px;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-content h2,
    .section-heading h2,
    .cta-box h2 {
        font-size: 32px;
    }

    .cta-box {
        padding: 60px 30px;
    }
}

/* =========================
   INNER PAGE BANNER
========================= */

.inner-banner {
    padding: 50px 0 40px;
    background: #022349;
    position: relative;
}

.inner-banner-content {
    text-align: center;
}

.inner-banner h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.breadcrumb a,
.breadcrumb p,
.breadcrumb span {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #2563eb;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px) {

    .inner-banner {
        padding: 50px 0 40px;
    }

    .inner-banner h1 {
        font-size: 38px;
    }
}


/* =========================
   SERVICES INTRO
========================= */

.services-intro {
    padding: 100px 0 50px;
}

.services-intro .section-heading {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.services-intro p {
    color: #666;
    line-height: 1.9;
    margin-top: 20px;
}


/* =========================
   SERVICE BLOCK
========================= */

.service-block {
    padding: 50px 0;
}

.alt-bg {
    background: #f8f9fc;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.service-grid.reverse {
    direction: rtl;
}

.service-grid.reverse .service-content {
    direction: ltr;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
}

.service-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.service-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-item i {
    color: #2563eb;
    font-size: 18px;
}

.service-item span {
    font-weight: 500;
}


/* =========================
   PROCESS SECTION
========================= */

.process-section {
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card span {
    display: inline-flex;
    width: 65px;
    height: 65px;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.15);
    color: #2563eb;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.process-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.process-card p {
    color: #666;
    line-height: 1.8;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .service-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-content h2 {
        font-size: 36px;
    }
}


@media (max-width: 768px) {

    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-grid.reverse {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 32px;
    }
}

/* =========================
   IMPACT INTRO
========================= */

.impact-intro {
    padding: 100px 0 50px;
}

.impact-intro .section-heading {
    max-width: 850px;
    margin: auto;
}

.impact-intro p {
    margin-top: 20px;
    color: #666;
    line-height: 1.9;
}


/* =========================
   STATS SECTION
========================= */

.impact-stats {
    padding: 50px 0 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.stat-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h2 {
    font-size: 56px;
    color: #2563eb;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.stat-card p {
    color: #666;
    line-height: 1.8;
}


/* =========================
   CASE STUDIES
========================= */

.case-study-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.case-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 35px;
    transition: 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-icon {
    width: 80px;
    height: 80px;
    background: rgba(212,175,55,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.case-icon i {
    color: #2563eb;
    font-size: 32px;
}

.case-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.case-card p {
    color: #666;
    line-height: 1.9;
}


/* =========================
   OUTCOMES SECTION
========================= */

.outcomes-section {
    padding: 100px 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.outcomes-image img {
    width: 100%;
    border-radius: 20px;
}

.outcomes-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
    color:#fff;
}

.outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.outcome-item i {
    color: #fff;
    font-size: 18px;
}

.outcome-item span {
    font-size: 17px;
    font-weight: 500;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .stats-grid,
    .case-grid,
    .outcomes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .outcomes-content h2 {
        font-size: 36px;
    }
}


@media (max-width: 768px) {

    .stats-grid,
    .case-grid,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .stat-card h2 {
        font-size: 42px;
    }

    .outcomes-content h2 {
        font-size: 32px;
    }
}

/* =========================
   VERIFICATION SECTION
========================= */

.verification-section {
    padding: 100px 0;
}

.verification-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 70px;
    align-items: center;
}

.verification-content h2 {
    font-size: 46px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.verification-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.verification-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: #2563eb;
    font-size: 18px;
}

.feature-item span {
    font-weight: 500;
}


/* =========================
   FORM BOX
========================= */

.verification-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-group input {
    width: 100%;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 20px;
    outline: none;
    font-size: 16px;
}

.form-group input:focus {
    border-color: #2563eb;
}

.verification-form .primary-btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

.or-divider {
    text-align: center;
    margin: 35px 0;
    position: relative;
}

.or-divider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #ddd;
    left: 0;
    top: 50%;
}

.or-divider span {
    background: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    color: #666;
}

.qr-box {
    text-align: center;
}

.qr-box img {
    width: 180px;
    margin-bottom: 20px;
}

.qr-box p {
    color: #666;
}


/* =========================
   PROCESS SECTION
========================= */

.verify-process {
    padding: 100px 0;
    background: #f8f9fc;
}

.verify-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.verify-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    transition: 0.3s ease;
}

.verify-card:hover {
    transform: translateY(-5px);
}

.verify-number {
    width: 75px;
    height: 75px;
    margin: auto auto 25px;
    background: rgba(212,175,55,0.15);
    color: #2563eb;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.verify-card p {
    color: #666;
    line-height: 1.8;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .verification-wrapper,
    .verify-grid {
        grid-template-columns: 1fr;
    }

    .verification-content h2 {
        font-size: 38px;
    }
}


@media (max-width: 768px) {

    .verification-section,
    .verify-process {
        padding: 80px 0;
    }

    .verification-form-box {
        padding: 35px 25px;
    }

    .verification-content h2 {
        font-size: 32px;
    }

    .verify-card h3 {
        font-size: 24px;
    }
}


.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
}

.social-icons a:hover {
  background: #ff6600;
  transform: translateY(-5px);
}

