﻿:root {
    --primary: #0B4F8A;
    --secondary: #2AAAE2;
    --accent: #00C2FF;
    --dark: #13293D;
    --text: #3A4755;
    --light: #F8FBFD;
    --white: #ffffff;
    --border: #E5EDF5;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(15,23,42,.08);
    --transition: .35s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

section {
    padding: 100px 0;
}

.container {
    max-width: 1240px;
}
/*=========================================
Global Paragraph
=========================================*/

p {
   
   
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #667085;
    letter-spacing: .2px;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Manrope',sans-serif;
    color: var(--dark);
    font-weight: 800;
}
.rd-section-title {
    margin-bottom: 20px;
}

    .rd-section-title span {
        color: var(--secondary);
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 14px;
    }

    .rd-section-title h2 {
        font-size: 46px;
        margin-top: 12px;
    }

    .rd-section-title p {
        margin-top: 20px;
        max-width: 700px;
    }
.rd-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 50px;
    transition: .3s;
    font-weight: 600;
}

.rd-btn-primary {
    background: var(--primary);
    color: #fff;
}

    .rd-btn-primary:hover {
        background: var(--dark);
        color: #fff;
    }

.rd-btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

    .rd-btn-outline:hover {
        background: var(--primary);
        color: #fff;
    }
/*=========================================
Header
=========================================*/

.rd-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: .35s ease;
    padding:15px 0px;
    
}

    .rd-header.sticky {
        background: #ffffff;
        box-shadow: 0 10px 40px rgba(0,0,0,.08);
        padding: 12px 0;
    }

.rd-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:40px;
}

.rd-logo img {
    height: 52px;
}

.rd-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rd-nav a {
    color: #13293D;
    font-weight: 600;
    position: relative;
    transition: .3s;
    font-size:16px;
}

    .rd-nav a:hover,
    .rd-nav a.active {
        color: var(--primary);
    }

    .rd-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: .35s;
    }

    .rd-nav a:hover::after,
    .rd-nav a.active::after {
        width: 100%;
    }

.rd-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rd-linkedin {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11,79,138,.15);
    background: #fff;
    color: #0A66C2;
    font-size: 22px;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

    .rd-linkedin:hover {
        background: #0A66C2;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(10,102,194,.25);
    }

.rd-menu-btn {
    width: 46px;
    height: 46px;
    border: none;
    display: none;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}



/*==================================
Footer
==================================*/

.rd-footer {
    background: #13293D;
    color: #fff;
    padding: 90px 0 0;
}

    .rd-footer img {
        height: 45px;
        margin-bottom: 25px;
    }

    .rd-footer p {
        color: rgba(255,255,255,.75);
        line-height: 1.8;
    }

    .rd-footer h5 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 20px;
    }

    .rd-footer ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .rd-footer li {
        margin-bottom: 15px;
    }

    .rd-footer a {
        color: rgba(255,255,255,.75);
        transition: .3s;
    }

        .rd-footer a:hover {
            color: #2AAAE2;
        }

.rd-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

    .rd-social a {
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        font-size: 18px;
    }

        .rd-social a:hover {
            background: #2AAAE2;
            color: #fff;
        }

.rd-contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.rd-contact-info i {
    color: #2AAAE2;
    margin-top: 4px;
}

.rd-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 60px;
    padding: 22px 0;
}

    .rd-footer-bottom p {
        margin: 0;
        font-size: 14px;
    }
/*=================================
Hero
=================================*/

/*=========================================
Hero Section
=========================================*/

.rd-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 120px;
    background: linear-gradient(rgba(255,255,255,.15),rgba(255,255,255,.15)), url("../../assets/images/websitebg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/*============================
Background Shapes
============================*/

.rd-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.shape-1 {
    width: 420px;
    height: 420px;
    background: #8fd9ff;
    left: -180px;
    top: -180px;
    opacity: .30;
}

.shape-2 {
    width: 360px;
    height: 360px;
    background: #b8ecff;
    right: -120px;
    bottom: -100px;
    opacity: .25;
}

/*============================
Content
============================*/

.rd-hero-content {
    position: relative;
    z-index: 2;
}

.rd-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #eef9ff;
    color: var(--primary);
    border: 1px solid #d7edf8;
    border-radius: 50px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 30px;
}

    .rd-badge span {
        width: 10px;
        height: 10px;
        background: #52d19b;
        border-radius: 50%;
    }

/*============================
Heading
============================*/

.rd-hero h1 {
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -2px;
    color: #13293D;
    margin-bottom: 20px;
    font-weight: 800;
}

    .rd-hero h1 span {
        color: #2AAAE2;
    }

/*============================
Paragraph
============================*/

.rd-hero p {
    max-width: 580px;
    font-size: 16px;
    line-height: 1.9;
    color: #5e6d7b;
}

/*============================
Buttons
============================*/

.rd-hero-btn {
    display: flex;
    gap: 18px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.rd-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.rd-hero .row {
    align-items: center;
    min-height: 85vh;
}
.rd-hero-image img {
    max-width: 550px;
    width: 100%;
}
    .rd-btn i {
        transition: .35s;
    }

    .rd-btn:hover i {
        transform: translateX(6px);
    }
/*=========================================
Hero Image
=========================================*/

.rd-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.rd-circle {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: linear-gradient(135deg,#E6F7FF,#CBEFFF);
    z-index: -1;
    animation: pulse 6s infinite;
}

.rd-hero-image img {
    max-width: 560px;
    width: 100%;
    position: relative;
    z-index: 2;
    animation: heroFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,.12));
}


/*=========================================
Feature Cards
=========================================*/

.rd-feature-card {
    background: #fff;
    border: 1px solid #E8EEF5;
    border-radius: 22px;
    padding: 28px;
    transition: .35s;
    height: 100%;
    box-shadow: 0 20px 50px rgba(15,23,42,.05);
}

    .rd-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 70px rgba(15,23,42,.10);
    }

.rd-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#0B4F8A,#2AAAE2);
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.rd-feature-card h5 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #13293D;
    font-weight: 700;
}

.rd-feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #667085;
    margin: 0;
}


/*=========================================
Scroll Indicator
=========================================*/

.rd-scroll-down {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.rd-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #0B4F8A;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.rd-wheel {
    width: 4px;
    height: 10px;
    background: #0B4F8A;
    border-radius: 20px;
    animation: scrollWheel 1.8s infinite;
}

.rd-scroll-down p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin: 0;
}

@keyframes scrollWheel {

    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/*=========================================
Animations
=========================================*/

@keyframes heroFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scrollMove {

    0% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}


/*=========================================
Extra Glow
=========================================*/

.rd-hero::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: #8ED8FF;
    border-radius: 50%;
    filter: blur(120px);
    top: 120px;
    right: 120px;
    opacity: .18;
}

.rd-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: #4CB9FF;
    border-radius: 50%;
    filter: blur(100px);
    left: 80px;
    bottom: 80px;
    opacity: .12;
}
/*=========================================
Mission
=========================================*/

.rd-mission {
    padding: 110px 0;
    background: #fff;
    position: relative;
}

.rd-mission-image {
    position: relative;
    padding-right:60px;
}

    .rd-mission-image img {
        border-radius: 24px;
        box-shadow: 0 30px 70px rgba(0,0,0,.08);
    }

.rd-exp-box {
    position: absolute;
    right: 20px;
    bottom: 40px;
    background: #0B4F8A;
    color: #fff;
    padding: 28px;
    border-radius: 20px;
    width: 240px;
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

    .rd-exp-box h3 {
        color: #fff;
        font-size: 42px;
        margin-bottom: 8px;
    }

    .rd-exp-box span {
        display: block;
        line-height: 1.6;
    }

.rd-mission-list {
    margin-top: 20px;
}

.rd-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

    .rd-item i {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #EAF8FF;
        color: #0B4F8A;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        flex-shrink: 0;
    }

    .rd-item h5 {
        margin-bottom: 8px;
        font-size: 22px;
    }

    .rd-item p {
        margin: 0;
    }
.rt-tech-section {
    padding: 100px 0;
    background: #ddf0f8;
}

.rt-container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

.rt-section-title {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

    .rt-section-title span {
        color: #0B6BFF;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .rt-section-title h2 {
        font-size: 46px;
        color: #071C35;
        margin: 15px 0;
        line-height: 1.2;
    }

    .rt-section-title p {
        font-size: 17px;
        color: #667085;
        line-height: 1.8;
    }

.rt-tech-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.rt-tech-card {
    background: #fff;
    border: 1px solid #E8EEF7;
    border-radius: 24px;
    padding: 40px 30px;
    transition: .35s;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

    .rt-tech-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(11,107,255,.12);
    }

.rt-tech-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg,#0B6BFF,#00D4FF);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.rt-tech-card h3 {
    font-size: 24px;
    color: #071C35;
    margin-bottom: 15px;
}

.rt-tech-card p {
    color: #667085;
    line-height: 1.8;
    font-size: 16px;
}
.rt-process-section {
    padding: 100px 0;
    background: #F8FBFF;
}

.rt-process {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
    margin-top: 60px;
    position: relative;
}

    .rt-process::before {
        content: "";
        position: absolute;
        left: 10%;
        right: 10%;
        top: 62px;
        height: 3px;
        background: linear-gradient(90deg,#0B6BFF,#00D4FF);
        z-index: 0;
    }

.rt-step {
    background: #fff;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    transition: .35s;
}

    .rt-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(11,107,255,.15);
    }

.rt-step-number {
    font-size: 14px;
    font-weight: 700;
    color: #0B6BFF;
    margin-bottom: 15px;
}

.rt-step-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg,#0B6BFF,#00D4FF);
    margin-bottom: 25px;
}

.rt-step h3 {
    font-size: 22px;
    color: #071C35;
    margin-bottom: 15px;
}

.rt-step p {
    color: #667085;
    line-height: 1.8;
    font-size: 15px;
}
.rt-app-section {
    padding: 100px 0;
    background: #ffffff;
}

.rt-app-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.rt-app-card {
    background: #fff;
    border: 1px solid #E6EEF8;
    border-radius: 24px;
    padding: 40px 30px;
    transition: .35s;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .rt-app-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(11,107,255,.12);
        border-color: #0B6BFF;
    }

.rt-app-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 20px;
    background: linear-gradient(135deg,#0B6BFF,#00D4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.rt-app-card h3 {
    font-size: 24px;
    color: #071C35;
    margin-bottom: 15px;
}

.rt-app-card p {
    font-size: 16px;
    color: #667085;
    line-height: 1.8;
}
.recon-leadership-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg,#061526,#071d35);
    overflow: hidden;
}


.recon-molecule-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,170,255,.25) 2px, transparent 3px);
    background-size: 80px 80px;
    opacity: .25;
}



/* Heading */

.recon-section-heading {
    text-align: center;
    max-width: 850px;
    margin: auto;
    position: relative;
    z-index: 2;
}


    .recon-section-heading span {
        color: #29b6ff;
        letter-spacing: 3px;
        font-size: 14px;
        font-weight: 600;
    }


    .recon-section-heading h2 {
        color: white;
        font-size: 48px;
        line-height: 1.2;
        margin: 20px 0;
    }


        .recon-section-heading h2 strong {
            display: block;
            background: linear-gradient(90deg,#00b7ff,#6ee7ff);
            -webkit-background-clip: text;
            color: transparent;
        }


    .recon-section-heading p {
        color: #b7c7d9;
        font-size: 18px;
    }



/* Team Wrapper */


.recon-team-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}



/* Cards */


.recon-team-card {
    width: 380px;
    padding: 45px 35px;
    text-align: center;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px;
    transition: .4s;
}


    .recon-team-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 0 45px rgba(0,170,255,.45);
        border-color: #00b7ff;
    }



/* Image */


.recon-profile-img {
    width: 160px;
    height: 160px;
    margin: auto;
    padding: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg,#00b7ff,#0066ff);
}


    .recon-profile-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }



/* Badge */


.recon-badge {
    display: inline-block;
    margin-top: 25px;
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    background: linear-gradient(90deg,#007cff,#00c6ff);
}



/* Text */


.recon-team-card h3 {
    color: white;
    font-size: 26px;
    margin: 25px 0 8px;
}


.recon-team-card h4 {
    color: #36c8ff;
    font-size: 16px;
}


.recon-team-card p {
    color: #c2d0dd;
    line-height: 1.7;
    margin: 20px 0 30px;
}



/* Linkedin */


.recon-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    background: rgba(0,170,255,.15);
    border: 1px solid rgba(0,170,255,.4);
    transition: .3s;
    margin-top:15px;
}


    .recon-linkedin:hover {
        background: #0077b5;
        box-shadow: 0 0 20px rgba(0,170,255,.6);
    }
.recon-partners-simple {
    padding: 90px 0;
    background: #fff;

}


.recon-partner-title {
    text-align: center;
    margin-bottom: 50px;

}


    .recon-partner-title span {
        color: #0B6BFF;
        letter-spacing: 3px;
        font-size: 14px;
        font-weight: 600;
    }


    .recon-partner-title h2 {
       
        font-size: 42px;
        margin: 15px 0;
    }


    .recon-partner-title p {
       
        font-size: 17px;
    }



.recon-logo-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
}



.recon-logo-card {
    width: 400px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 10px rgba(0,0,0,.35);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: .3s;
}



    .recon-logo-card img {
        max-width: 320px;
        max-height: 210px;
        object-fit: contain;
    }



    .recon-logo-card:hover {
        transform: translateY(-8px);
        border-color: #00bfff;
        box-shadow: 0 0 30px rgba(0,180,255,.35);
    }
.recon-insights-section {
    position: relative;
    padding: 100px 0;
    background: #ddf0f8;
    overflow: hidden;
}



.recon-insights-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient( circle, rgba(0,190,255,.25) 2px, transparent 3px );
    background-size: 90px 90px;
    opacity: .25;
}




/* Heading */

.recon-insights-heading {
    text-align: center;
    max-width: 850px;
    margin: auto;
    position: relative;
    z-index: 2;
}



    .recon-insights-heading span {
        color: #0B6BFF;
        letter-spacing: 3px;
        font-size: 14px;
        font-weight: 600;
    }



    .recon-insights-heading h2 {
       
        font-size: 46px;
        margin: 10px 0;
    }


    .recon-insights-heading strong {
        display: block;
        background: linear-gradient(90deg,#0B6BFF,#0B4F8A);
        -webkit-background-clip: text;
        color: transparent;
    }



    .recon-insights-heading p {
        font-size: 18px;
    }





/* Grid */


.recon-insights-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}





/* Card */


.recon-insight-card {
    background: #ffffff;
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 0 10px rgba(0,0,0,.4);
}



    .recon-insight-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 0 40px rgba(0,180,255,.4);
    }




/* Image */


.recon-insight-image {
    position: relative;
    height: 230px;
}



    .recon-insight-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



    .recon-insight-image span {
        position: absolute;
        bottom: 15px;
        left: 15px;
        padding: 7px 18px;
        background: linear-gradient(90deg,#0B6BFF,#0B4F8A);
        color: white;
        border-radius: 50px;
        font-size: 13px;
    }





/* Content */


.recon-insight-content {
    padding: 25px;
}



.date {
    color: #0B4F8A;
    font-size: 14px;
}


.recon-insight-content h3 {
    
    font-size: 22px;
    line-height: 1.4;
    margin: 15px 0;
}



.recon-insight-content p {
   
    line-height: 1.7;
}



.recon-insight-content a {
    display: inline-block;
    margin-top: 15px;
    color: #0B4F8A;
    text-decoration: none;
    font-weight: 600;
}
.recon-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg,#04131f,#071d35);
    position: relative;
    overflow: hidden;
}



.recon-contact-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #009cff;
    filter: blur(180px);
    opacity: .25;
    right: -150px;
    top: -100px;
}



.recon-contact-box {
    position: relative;
    z-index: 2;
}



.recon-contact-content {
    text-align: center;
    max-width: 800px;
    margin: auto;
}



    .recon-contact-content span {
        color: #00c6ff;
        letter-spacing: 3px;
        font-size: 14px;
    }



    .recon-contact-content h2 {
        color: white;
        font-size: 48px;
        margin: 20px 0;
    }



    .recon-contact-content strong {
        display: block;
        background: linear-gradient(90deg,#00c6ff,#9beaff);
        -webkit-background-clip: text;
        color: transparent;
    }



    .recon-contact-content p {
        color: #bdcddd;
        font-size: 18px;
        line-height: 1.7;
    }



.recon-contact-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    background: linear-gradient(90deg,#007cff,#00c6ff);
    color: white;
    text-decoration: none;
    font-weight: 600;
}




.recon-contact-options {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 70px;
}



.recon-contact-card {
    padding: 35px 25px;
    text-align: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    transition: .3s;
}



    .recon-contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 35px rgba(0,180,255,.4);
    }



    .recon-contact-card h4 {
        color: white;
        font-size: 20px;
        margin: 15px 0;
    }



    .recon-contact-card p {
        color: #b9cadb;
        line-height: 1.6;
    }