@media (max-width: 768px) {
    .py-80 {
        padding: 55px 0;
    }
}

/* ===================
1. Contact Hero Section
====================== */

.contact-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0d23, #1b2a47, #1bb1dc);
    color: #fff;
    min-height: 60vh;
}

/* Overlay */
.contact-hero .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(27, 177, 220, 0.08), transparent 60%);
    z-index: 0;
}

/* Floating Orbs */
.contact-hero .hero-floating-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    z-index: 0;
}

.contact-hero .orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    background: #1bb1dc;
    animation: floatY 20s ease-in-out infinite;
}

.contact-hero .orb-2 {
    width: 250px;
    height: 250px;
    bottom: -10%;
    right: 5%;
    background: #00ffe0;
    animation: floatY 25s ease-in-out infinite;
}

.contact-hero .orb-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 50%;
    background: #413e66;
    animation: floatY 30s ease-in-out infinite;
}

/* Animated Lines */
.contact-hero .hero-lines .line {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, rgba(27, 177, 220, 0.25), rgba(0, 255, 224, 0.25));
    filter: blur(20px);
    opacity: 0.3;
    z-index: 0;
}

.contact-hero .line-1 {
    top: 20%;
    left: -50%;
    transform: rotate(25deg);
    animation: lineMove 30s linear infinite;
}

.contact-hero .line-2 {
    top: 50%;
    left: -50%;
    transform: rotate(-15deg);
    animation: lineMove 35s linear infinite;
}

.contact-hero .line-3 {
    top: 70%;
    left: -50%;
    transform: rotate(10deg);
    animation: lineMove 40s linear infinite;
}

/* Headline */
.contact-hero .hero-headline {
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(0, 255, 224, 0.25);
}

.contact-hero .hero-headline span {
    color: #00ffe0;
    text-shadow: 0 0 35px rgba(0, 255, 224, 0.8);
}

/* Subtext */
.contact-hero .hero-subtext {
    max-width: 480px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.contact-hero .btn-hero-cta {
    background: linear-gradient(135deg, #00ffe0, #1bb1dc);
    color: #0a0d23;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 255, 224, 0.35);
    transition: all 0.35s ease;
}

.contact-hero .btn-hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 255, 224, 0.5);
}

/* Hero Image */
.contact-hero .hero-image-wrapper {
    position: relative;
}

.contact-hero .hero-image {
    width: 70%;
    transition: transform 0.6s ease;
}

.contact-hero .hero-image-wrapper:hover .hero-image {
    transform: translateY(-10px) scale(1.03);
}

/* Animations */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes lineMove {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-hero .hero-subtext {
        margin: auto;
    }
}

@media(max-width:768px) {
    .contact-hero .btn-hero-cta {
        padding: 1rem 2rem;
    }
}

/* ===================
2. Contact Info Section
====================== */
.contact-info-flow {
    position: relative;
    overflow: hidden;
    background: #f0faff;
    z-index: 1;
}

/* Floating Orbs */
.contact-info-flow .floating-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    z-index: 0;
}

.contact-info-flow .orb-1 {
    width: 250px;
    height: 250px;
    top: 5%;
    left: -5%;
    background: #1bb1dc;
    animation: floatOrb1 20s ease-in-out infinite;
}

.contact-info-flow .orb-2 {
    width: 300px;
    height: 300px;
    top: 35%;
    right: -10%;
    background: #00ffe0;
    animation: floatOrb2 25s ease-in-out infinite;
}

.contact-info-flow .orb-3 {
    width: 200px;
    height: 200px;
    bottom: -5%;
    left: 30%;
    background: #413e66;
    animation: floatOrb3 30s ease-in-out infinite;
}

/* Gradient Flow Lines */
.contact-info-flow .gradient-lines .line {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, rgba(27, 177, 220, 0.25), rgba(0, 255, 224, 0.25));
    filter: blur(20px);
    opacity: 0.3;
    z-index: 0;
}

.contact-info-flow .line-1 {
    top: 20%;
    left: -50%;
    transform: rotate(25deg);
    animation: lineMove 30s linear infinite;
}

.contact-info-flow .line-2 {
    top: 50%;
    left: -50%;
    transform: rotate(-15deg);
    animation: lineMove 35s linear infinite;
}

.contact-info-flow .line-3 {
    top: 70%;
    left: -50%;
    transform: rotate(10deg);
    animation: lineMove 40s linear infinite;
}

/* Particle Trails */
.contact-info-flow .particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(27, 177, 220, 0.3);
    animation: particleMove 15s linear infinite;
    opacity: 0.6;
}

.contact-info-flow .particle-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.contact-info-flow .particle-2 {
    top: 30%;
    left: 60%;
    animation-delay: 2s;
}

.contact-info-flow .particle-3 {
    top: 50%;
    left: 40%;
    animation-delay: 4s;
}

.contact-info-flow .particle-4 {
    top: 70%;
    left: 15%;
    animation-delay: 6s;
}

.contact-info-flow .particle-5 {
    top: 80%;
    left: 70%;
    animation-delay: 8s;
}

/* Info Orbs */
.contact-info-flow .info-orb {
    position: relative;
    background: #ffffff;
    padding: 3rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(27, 177, 220, 0.12), 0 0 30px rgba(0, 255, 224, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-info-flow .info-orb:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 35px 80px rgba(27, 177, 220, 0.25), 0 0 40px rgba(0, 255, 224, 0.15);
}

/* Icon Circle */
.contact-info-flow .info-orb .icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #1bb1dc, #00ffe0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(27, 177, 220, 0.25);
    transition: transform 0.3s ease;
}

.contact-info-flow .info-orb:hover .icon-circle {
    transform: scale(1.2);
}

/* Headings & Text */
.contact-info-flow .info-orb h3 {
    color: #0a0d23;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 18px;
}

.contact-info-flow .info-orb p {
    color: #555;
    font-size: 0.95rem;
}

/* Floating Animations */
@keyframes floatOrb1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(15px) rotate(5deg);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(10px) rotate(3deg);
    }
}

/* Gradient Lines Animation */
@keyframes lineMove {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

/* Particle Animation */
@keyframes particleMove {
    0% {
        transform: translate(0, 0);
        opacity: 0.6;
    }

    25% {
        transform: translate(20px, -10px);
        opacity: 0.3;
    }

    50% {
        transform: translate(-15px, 15px);
        opacity: 0.5;
    }

    75% {
        transform: translate(10px, -20px);
        opacity: 0.4;
    }

    100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 992px) {

    .contact-info-flow .info-orb {
        padding: 2.5rem 1.2rem;
    }

    .contact-info-flow .info-orb .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {

    .contact-info-flow .info-orb {
        padding: 2rem 1rem;
    }
}


/* ===================
3. Contact Form Section
====================== */
.oxnames-contact-section {
    position: relative;
    background: #0a0d23;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Animated Gradient Layer */
.oxnames-contact-section .background-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1bb1dc, #413e66, #00ffe0, #1bb1dc);
    animation: gradientShift 25s ease infinite;
    opacity: 0.06;
    z-index: 0;

    width: 180%;
    height: 120%;

    background-size: 400% 400%;
    transform: rotate(-10deg) translate(-10%, -10%);
}

/* Floating Glows */
.oxnames-contact-section .floating-glows .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.14;
    z-index: 1;
}

.oxnames-contact-section .glow-1 {
    width: 320px;
    height: 320px;
    top: 8%;
    left: -6%;
    background: #00ffe0;
}

/* TEXT SECTION */
.oxnames-contact-section .headline {
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 5px 25px rgba(0, 255, 224, 0.25);
}

.oxnames-contact-section .headline span {
    color: #00ffe0;
    text-shadow: 0 0 30px rgba(0, 255, 224, 0.8);
}

.oxnames-contact-section .headline-divider {
    width: 100px;
    height: 3px;
    margin: 1.5rem 0 2rem 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #00ffe0, #1bb1dc);
}

.oxnames-contact-section .subtext {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 460px;
    width: 100%;
    margin: auto;
}

/* FORM CARD */
.oxnames-contact-section .form-card {
    position: relative;
    background: rgba(12, 15, 40, 0.95);
    border-left: 2px solid #0ae4de;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow:
        0 25px 60px rgba(27, 177, 220, 0.1),
        inset 0 0 15px rgba(0, 255, 224, 0.05);
    box-shadow: 0 25px 60px rgba(27, 177, 220, 0.15),
        0 0 40px rgba(0, 255, 224, 0.08),
        inset 0 0 15px rgba(0, 255, 224, 0.03);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.oxnames-contact-section .form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 35px 80px rgba(0, 255, 224, 0.25), 0 0 50px rgba(27, 177, 220, 0.15), inset 0 0 20px rgba(0, 255, 224, 0.05);
}

/* Inputs */
.oxnames-contact-section .form-group input,
.oxnames-contact-section .form-group textarea {
    width: 100%;
    padding: 1.3rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 1.25rem;
    background: rgba(10, 13, 35, 1);
    border: 1px solid rgba(0, 255, 224, 0.45);
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 3px 10px rgba(0, 255, 224, 0.1);
}

.oxnames-contact-section .form-group input:focus,
.oxnames-contact-section .form-group textarea:focus {
    border-color: #00ffe0;
    box-shadow:
        0 0 30px rgba(0, 255, 224, 0.45),
        inset 0 0 15px rgba(0, 255, 224, 0.1);
    outline: none;
}

/* Placeholder */
.oxnames-contact-section ::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

/* Button */
.oxnames-contact-section .btn-send {
    background: linear-gradient(135deg, #00ffe0, #1bb1dc);
    color: #0a0d23;
    font-weight: 700;
    padding: 1rem 3.2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 20px 50px rgba(0, 255, 224, 0.35);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.oxnames-contact-section .btn-send::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
}

.oxnames-contact-section .btn-send:hover::before {
    left: 100%;
}

.oxnames-contact-section .btn-send:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 30px 80px rgba(0, 255, 224, 0.5);
}

/* ANIMATIONS */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .oxnames-contact-section .headline {
        font-size: 2.5rem;
    }

    .oxnames-contact-section .form-card {
        padding: 2.5rem 2rem;
    }

    .oxnames-contact-section .headline-divider {
        margin: 1.5rem auto 2rem auto;
    }

    .oxnames-contact-section .form-card {
        border-right: 2px solid #0ae4de;
    }
}

@media (max-width: 576px) {
    .oxnames-contact-section .form-card {
        padding: 2rem 1.5rem;
    }
}


/* ===================
4. Map Section
====================== */

.oxnames-map-floating {
    background: #f9f9f9;
}

.oxnames-map-floating .gradient-text {
    background: linear-gradient(135deg, #1bb1dc, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.oxnames-map-floating .lead {
    max-width: 640px;
    margin: 0 auto;
}

/* Glass Panel */
.map-glass-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    /*Box Shadow */
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.05),
        0 0 40px rgba(27, 177, 220, 0.15),
        0 0 80px rgba(27, 177, 220, 0.08);
}

/* Hover effect */
.map-glass-panel:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 25px 70px rgba(0, 0, 0, 0.07),
        0 0 50px rgba(27, 177, 220, 0.22),
        0 0 100px rgba(27, 177, 220, 0.12);
}


/* Map Wrapper */
.map-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 177, 220, 0.08), rgba(0, 170, 255, 0.08));
    pointer-events: none;
    z-index: 1;
}

.oxnames-map-floating .location-info-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(20px);
    border: 2px solid #00aaff;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.18), 0 0 50px rgba(27, 177, 220, 0.35);
    min-width: 240px;
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.oxnames-map-floating .location-info-card h3 {
    font-weight: 700;
    color: #1bb1dc;
    margin-bottom: 0.5rem;
    font-size: 18px;
}

.oxnames-map-floating .location-info-card p {
    font-size: 0.9rem;
    color: #333;
    margin: 0.2rem 0;
}

.oxnames-map-floating .location-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.25), 0 0 60px rgba(27, 177, 220, 0.4);
}

/* Floating Animation */
@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 2rem;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
}

/* Neon Floating Pins */
.map-pin {
    position: absolute;
    font-size: 1.8rem;
    color: #1bb1dc;
    text-shadow: 0 0 12px rgba(27, 177, 220, 0.5), 0 0 20px rgba(27, 177, 220, 0.3);
    animation: floatPin 3s ease-in-out infinite, glowPin 2s ease-in-out infinite alternate;
}

.oxnames-map-floating .pin-1 {
    top: 20%;
    left: 15%;
}

.oxnames-map-floating .pin-2 {
    top: 50%;
    left: 60%;
    animation-delay: 1s;
}

.oxnames-map-floating .pin-3 {
    top: 75%;
    left: 35%;
    animation-delay: 2s;
}

@keyframes floatPin {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes glowPin {

    0%,
    100% {
        text-shadow: 0 0 12px rgba(27, 177, 220, 0.5), 0 0 20px rgba(27, 177, 220, 0.3);
    }

    50% {
        text-shadow: 0 0 18px rgba(27, 177, 220, 0.7), 0 0 28px rgba(27, 177, 220, 0.5);
    }
}

/* Background Shapes */
.map-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
}

.oxnames-map-floating .shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1bb1dc, transparent);
    top: -50px;
    left: -50px;
    animation: floatShape 15s infinite alternate;
}

.oxnames-map-floating .shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00aaff, transparent);
    bottom: -80px;
    right: -80px;
    animation: floatShape 18s infinite alternate-reverse;
}

@keyframes floatShape {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }

    .map-pin {
        font-size: 1.4rem;
    }

    .map-glass-panel {
        padding: 1.5rem;
    }

    .location-info-card {
        top: 10px;
        right: 10px;
        min-width: 180px;
        padding: 1rem;
        font-size: 0.85rem;
    }

    .oxnames-map-floating .lead {
        font-size: 1rem;
    }

    .oxnames-map-floating .location-info-card {
        position: static;
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 1rem auto 0 auto;
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(27, 177, 220, 0.2);
        animation: none;
        backdrop-filter: blur(15px);
        border-radius: 1.5rem;
        text-align: center;
        top: unset;
        right: unset;
    }

    .oxnames-map-floating .location-info-card h3 {
        font-size: 1.1rem;
    }

    .oxnames-map-floating .location-info-card p {
        font-size: 0.85rem;
        margin: 0.3rem 0;
    }

    .oxnames-map-floating .pin-3 {
        display: none;
    }
}


/* ===================
5. Oxnames Signature Section
====================== */

.oxnames-signature-section {
    background: radial-gradient(circle at center, #0a0d23 0%, #14183d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative Glow */
.oxnames-signature-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 15%;
    left: 5%;
    background: radial-gradient(circle, rgba(27, 177, 220, 0.2), transparent);
    filter: blur(120px);
    z-index: 0;
}

/* Overlay Glow */
.oxnames-signature-section .signature-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(27, 177, 220, 0.15), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(65, 62, 102, 0.25), transparent 60%);
    filter: blur(60px);
    z-index: 1;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #1bb1dc, #00ffe0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(27, 177, 220, 0.3);
}

/* Lead Paragraph */
.oxnames-signature-section .lead {
    color: #cde6ff;
    font-weight: 500;
}

/* Feature Boxes */
.oxnames-signature-section .feature-glow {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 2rem 1.2rem;
    backdrop-filter: blur(25px);
    box-shadow: 0 0 40px rgba(27, 177, 220, 0.08);
    transition: all 0.4s ease;
}

.oxnames-signature-section .feature-glow i {
    font-size: 2.2rem;
    color: #00ffe0;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(0, 255, 224, 0.6);
}

.oxnames-signature-section .feature-glow h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.oxnames-signature-section .feature-glow:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 224, 0.3);
}

.oxnames-signature-section .feature-glow:hover i {
    text-shadow: 0 0 30px rgba(0, 255, 224, 0.9);
}

/* Signature Line */
.oxnames-signature-section .signature-line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.oxnames-signature-section .signature-line p {
    color: #e0e0e0;
}

.oxnames-signature-section .signature-line .gradient-text {
    background: linear-gradient(135deg, #1bb1dc, #00ffe0, #00ffe0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(27, 177, 220, 0.4);
}

/* Letter spacing */
.oxnames-signature-section .tracking-wide {
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .oxnames-signature-section {
        padding: 60px 20px;
    }

    .oxnames-signature-section .feature-glow {
        padding: 1.8rem 1rem;
    }
}

@media (max-width: 768px) {
    .oxnames-signature-section .feature-glow {
        padding: 1.5rem 0.8rem;
    }

    .oxnames-signature-section .feature-glow i {
        font-size: 1.8rem;
    }

    .oxnames-signature-section .feature-glow h3 {
        font-size: 0.95rem;
    }

    .oxnames-signature-section .lead {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .oxnames-signature-section .feature-glow {
        padding: 1.2rem 0.5rem;
    }

    .oxnames-signature-section .feature-glow i {
        font-size: 1.6rem;
    }

    .oxnames-signature-section .feature-glow h3 {
        font-size: 0.9rem;
    }

}