/* ===================
1. About Hero Section
====================== */
.about-hero-center {
    min-height: 70vh;
    padding: 90px 0 70px;
    background: linear-gradient(135deg, #d5f5ff, #eae2ff);
    color: #1b1b1b;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-center .highlight {
    color: #1bb1dc;
}

.about-hero-center .lead {
    max-width: 650px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Glassmorphism Button */
.about-hero-center .btn-hero {
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid #1bb1dc;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #413e66;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(27, 177, 220, 0.35);
}

.about-hero-center .btn-hero:hover {
    background: white;
    color: #1bb1dc;
    box-shadow: 0 8px 25px rgba(27, 177, 220, 0.6);
}

/* Floating Shapes */
.about-hero-center .floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: floatShape 14s ease-in-out infinite alternate;
}

.about-hero-center .shape1 {
    width: 120px;
    height: 120px;
    background: #1bb1dc55;
    top: 15%;
    left: 10%;
}

.about-hero-center .shape2 {
    width: 100px;
    height: 100px;
    background: #413e6655;
    top: 25%;
    right: 12%;
    animation-delay: 3s;
}

.about-hero-center .shape3 {
    width: 140px;
    height: 140px;
    background: #1bb1dc55;
    bottom: 15%;
    left: 25%;
    animation-delay: 6s;
}

.about-hero-center .shape4 {
    width: 80px;
    height: 80px;
    background: #413e6655;
    top: 50%;
    right: 20%;
    animation-delay: 9s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-15px) translateX(10px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Values Circle */
.about-hero-center .values-circle {
    position: relative;
    width: 360px;
    height: 360px;
}

/* Hub */
.about-hero-center .hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: rgba(27, 177, 220, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(27, 177, 220, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

/* Nodes */
.about-hero-center .node {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #413e66, #1bb1dc);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
}

.about-hero-center .node span {
    font-size: 11px;
    margin-top: 3px;
}

.about-hero-center .node:hover {
    transform: scale(1.15);
    background: #1bb1dc;
    box-shadow: 0 8px 22px rgba(27, 177, 220, 0.6);
}

/* Curved Lines */
.about-hero-center .connect-lines {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* Responsive */
@media (max-width:768px) {
    .about-hero-center .values-circle {
        width: 280px;
        height: 280px;
    }

    .about-hero-center .hub {
        width: 80px;
        height: 80px;
        font-size: 0.85rem;
    }

    .about-hero-center .node {
        width: 55px;
        height: 55px;
        font-size: 16px;
    }

    .about-hero-center {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .about-hero-center .btn-hero {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* ===================
2. Why Oxnames Exists Section
====================== */
.about-why {
    background: linear-gradient(180deg, #f4fbff, #eefdff);
    color: #1b1b1b;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Title */
.about-why .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #413e66;
    line-height: 1.3;
}

/* Lead */
.about-why .section-lead {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.9;
}

/* Why List */
.about-why .why-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.about-why .why-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.2rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(27, 177, 220, 0.15);
    box-shadow: 0 6px 20px rgba(65, 62, 102, 0.08);
    transition: all 0.35s ease;
}

.about-why .why-list li:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 24px rgba(65, 62, 102, 0.15);
}

.about-why .why-list .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(27, 177, 220, 0.15), rgba(65, 62, 102, 0.15));
    padding: 10px;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(27, 177, 220, 0.2);
}

/* Visual */
.about-why .why-oxnames-visual {
    position: relative;
    display: inline-block;
}

.about-why .main-visual {
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.about-why .main-visual:hover {
    transform: scale(1.05) rotate(2deg);
}

.about-why

/* Experience Badge */
.experience-card {
    top: -52px;
    right: -40px;

    background: linear-gradient(135deg, #1bb1dc, #138ba6);
    color: #fff;
    border-radius: 18px;
    width: 150px;
    text-align: center;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(10px);
    opacity: 0.96;
    box-shadow: 0 10px 25px rgba(27, 177, 220, 0.45);
    transition: transform 0.4s ease;
}

.about-why .experience-card h3 {
    font-size: 2rem;
    margin: 0;
}

.about-why .experience-card p {
    font-size: 0.9rem;
    margin: 0;
}

.about-why .experience-card:hover {
    transform: translateY(-10px) scale(1.07);
}

/* Floating Animation */
.about-why .floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Glow Ring */
.about-why .glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(27, 177, 220, 0.18) 0%, transparent 70%);
    z-index: 0;
    animation: pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Blobs */
.about-why .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    animation: blobMove 14s infinite ease-in-out;
    z-index: 1;
}

.about-why .blob1 {
    width: 240px;
    height: 240px;
    background: #1bb1dc;
    bottom: -40px;
    left: -60px;
}


@keyframes blobMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.15);
    }
}

.about-why .main-visual {
    max-width: 320px;
    height: auto;
}

@media (max-width: 991px) {
    .about-why .why-oxnames-visual {
        margin-top: 1.2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-why .section-title {
        font-size: 2.2rem;
    }

    .about-why .experience-card {
        width: 130px;
    }

    .about-why {
        padding: 55px 0;
    }

    .about-why .glow-ring {
        width: 320px;
        height: 320px;
    }

    .about-why .blob1 {
        width: 160px;
        height: 160px;
        bottom: -20px;
        left: -30px;
    }
}

@media (max-width: 480px) {
    .about-why .section-lead {
        font-size: 1rem;
    }

    .about-why .why-list li {
        font-size: 0.95rem;
    }

    .about-why .section-title {
        font-size: 1.8rem;
    }

    .about-why .experience-card {
        right: -10px;
    }

    .about-why .main-visual {
        max-width: 280px;
    }
}

/* ===================
3. Our Journey / Experience Years Section
====================== */
.our-journey-section {
    background: linear-gradient(135deg, #e0f7ff 0%, #d0e0ff 100%);
    position: relative;
    color: #1b1b1b;
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 50px;
}

.our-journey-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 177, 220, 0.08);
    pointer-events: none;
}


/* Header Gradient Text */
.our-journey-section .text-gradient-primary {
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Timeline */
.our-journey-section .timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Timeline line adjustments */
.our-journey-section .timeline-line {
    position: absolute;
    left: 50%;
    width: 4px;
    height: calc(100% - 100px);
    /* subtract the circle radius so it ends at last year */
    background: linear-gradient(180deg, #1bb1dc, #413e66);
    transform: translateX(-50%);
    z-index: 1;
}

/* Optional: hide the line under last item */
.our-journey-section .timeline-item:last-child~.timeline-line {
    display: none;
}

/* Timeline Items */
.our-journey-section .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.our-journey-section .timeline-item.left {
    left: 0;
    text-align: right;
}

.our-journey-section .timeline-item.right {
    left: 50%;
    text-align: left;
}

/* Year Circle */
.our-journey-section .timeline-year {
    display: inline-block;
    background: #1bb1dc;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(27, 177, 220, 0.35);
    position: absolute;
    top: 0;
    z-index: 2;
}

.our-journey-section .timeline-item.left .timeline-year {
    right: -30px;
}

.our-journey-section .timeline-item.right .timeline-year {
    left: -30px;
}

/* Content Box */
.our-journey-section .timeline-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(65, 62, 102, 0.08);
    display: inline-block;
    max-width: 85%;
}

/* Titles & Text */
.our-journey-section .timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1b1f3a;
    margin-bottom: 0.5rem;
}

.our-journey-section .timeline-content p {

    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .our-journey-section {
        padding-top: 55px;
        padding-bottom: 15px;
    }

    .our-journey-section .timeline-item {
        width: 100%;
        padding: 20px 30px;
        text-align: left !important;
    }

    .our-journey-section .timeline-item.left,
    .our-journey-section .timeline-item.right {
        left: 0;
    }

    .our-journey-section .timeline-year {
        left: 0 !important;
        right: auto !important;
        top: 0;
    }

    .our-journey-section .timeline-line {
        left: 30px;
    }

    .our-journey-section .timeline-content {
        max-width: 100%;
        margin-left: 50px;
    }

    .our-journey-section .timeline-content h3 {
        font-size: 1.2rem;
    }
}

/* ===================
4. Mission Vision Section
====================== */
.mission-vision-section {
    background: linear-gradient(135deg, #e6f9ff 0%, #f0e6ff 100%);
}

.mission-vision-section h3 {
    font-size: 2.5rem;
    color: #413e66;
}

.mission-vision-section p {
    color: #4a4a4a;
    font-size: 1.125rem;
    line-height: 2;
}

.mission-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #1b1f3a;
    font-weight: 600;
    transition: transform 0.3s;
}

.mission-list li i {
    font-size: 1.3rem;
    color: #1bb1dc;
}

.mission-list li:hover {
    transform: translateX(5px);
}

.mission-img {
    max-width: 100%;
    width: 430px;
    height: auto;
    position: relative;
    z-index: 2;
}

.vision-img {
    max-width: 100%;
    width: 370px;
    height: auto;
    position: relative;
    z-index: 2;
}

.mission-vision-section .shape-overlay {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #1bb1dc55, #413e6655);
    border-radius: 2rem;
    z-index: 1;
    transform: rotate(-6deg);
    transition: transform 0.5s ease;
}

.mission-img:hover+.shape-overlay {
    transform: rotate(-3deg) scale(1.05);
}

.mission-vision-section .section-divider {
    border: 0;
    height: 2px;
    background: #1bb1dc33;
    width: 60px;
    margin: 2rem auto;
    border-radius: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .mission-vision-section h3 {
        font-size: 2rem;
    }

    .mission-vision-section p {
        line-height: 1.7;
    }

    .mission-vision-section p,
    .mission-list li {
        font-size: 1rem;
    }

    .mission-vision-section .shape-overlay {
        top: 5%;
        left: 5%;
        width: 90%;
        height: 90%;
    }

    .mission-img {
        width: 240px;
    }

    .vision-img {
        width: 220px;
    }
}

@media (max-width: 576px) {


    .mission-vision-section p,
    .mission-list li {
        font-size: 0.95rem;
    }

    .mission-vision-section .shape-overlay {
        display: none;
    }
}

/* ===================
5. Our Values Section
====================== */
.our-values-section {
    background: linear-gradient(180deg, #eef7fb 0%, #d8f0fa 100%);
    position: relative;
}

/* Floating SVG shapes animation */
.our-values-section .bg-shape {
    position: absolute;
    animation: floatShape 15s infinite ease-in-out alternate;
}

@keyframes floatShape {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(15deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Gradient header text */
.our-values-section .text-gradient {
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Styles */
.our-values-section .value-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.our-values-section .value-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* Card blobs */
.our-values-section .card-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.our-values-section .blob-1 {
    width: 80px;
    height: 80px;
    background: #1bb1dc;
    top: -15px;
    right: -15px;
}

.our-values-section .blob-2 {
    width: 100px;
    height: 100px;
    background: #69d4ff;
    bottom: -37px;
    left: -32px;
}

.our-values-section .blob-3 {
    width: 80px;
    height: 80px;
    background: #1bb1dc;
    bottom: -15px;
    right: -15px;
}

/* Icon Styles */
.our-values-section .icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 20px 0 20px 0;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 6px 12px rgba(65, 62, 102, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-values-section .value-card:hover .icon-wrap {
    transform: rotate(10deg) scale(1.1);
}

/* H3 styles */
.our-values-section h3 {
    color: #1b1f3a;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .our-values-section .icon-wrap {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .our-values-section h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 576px) {
    .our-values-section .icon-wrap {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .our-values-section h3 {
        font-size: 1.25rem;
    }
}

/* ===================
5. Cta Section
====================== */
.cta-section .cta-box {
    background: linear-gradient(135deg, #0a1c2b, #00556d, #413e66);
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
}

.cta-section .cta-title {
    font-size: 2.8rem;
    font-weight: 700;
}

.cta-section .gradient-text {
    background: linear-gradient(90deg, #ffce00, #1bb1dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section .domain-hero-input-box input:focus {
    box-shadow: 0 0 10px rgba(27, 177, 220, 0.5);
}

.cta-section .btn-hero-search {
    transition: all 0.3s ease;
    color: white;
}

.cta-section .btn-hero-search:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-section .cta-box {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .cta-section .cta-title {
        font-size: 2.2rem;

    }
}