/* =========================================================
   KOTI PRODUCTS - PREMIUM BLUE ABOUT SECTION
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.aboutweb {

    position: relative;

    width: 100%;
    min-height: 700px;

    padding: 30px 6%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(45, 140, 255, 0.22),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(0, 119, 255, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #061c30 0%,
            #082c49 50%,
            #06213a 100%
        );

    color: #ffffff;

    perspective: 1200px;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.aboutweb-bg {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

    z-index: 0;
}

.aboutweb-bg-one {

    width: 350px;
    height: 350px;

    top: -120px;
    left: -120px;

    background: rgba(0, 157, 255, 0.20);
}

.aboutweb-bg-two {

    width: 400px;
    height: 400px;

    right: -150px;
    bottom: -150px;

    background: rgba(31, 82, 255, 0.20);
}


/* =========================================================
   SUBTLE GRID
========================================================= */

.aboutweb-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 20%,
        black 80%,
        transparent
    );

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   CONTAINER
========================================================= */

.aboutweb-container {

    position: relative;

    z-index: 5;

    max-width: 1500px;

    margin: auto;

}


/* =========================================================
   ROW
========================================================= */

.aboutweb-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;

}


/* =========================================================
   LEFT CONTENT
========================================================= */

.aboutweb-content {

    width: 48%;

    position: relative;

    z-index: 5;

}


/* =========================================================
   LABEL
========================================================= */

.aboutweb-label {

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #ffffff;

    margin-bottom: 25px;

}


.aboutweb-label span {

    display: block;

    width: 48px;

    height: 4px;

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 0 15px rgba(255,255,255,0.5);

}


/* =========================================================
   HEADING
========================================================= */

.aboutweb-content h2 {

    font-family: "Poppins", sans-serif;

    font-size: 32px;

    line-height: 1.12;

    font-weight: 600;

    color: #ffffff;

    margin-bottom: 30px;

    letter-spacing: -1px;

}


.aboutweb-content h2 strong {

    display: block;

    color: #ffffff;

    font-weight: 800;

}


/* =========================================================
   TEXT
========================================================= */

.aboutweb-text {

    max-width: 690px;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    line-height: 1.95;

    color: rgba(255,255,255,0.88);

    margin-bottom: -1px;

}


/* =========================================================
   BUTTON
========================================================= */

.aboutweb-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-width: 185px;

    padding: 16px 28px;

    border-radius: 8px;

    background: #ffffff;

    color: #232A76;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 700;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.25);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        background .4s ease,
        color .4s ease;

}


.aboutweb-btn i {

    font-size: 17px;

    transition: transform .3s ease;

}


.aboutweb-btn:hover {

    transform: translateY(-6px);

    background: #232A76;

    color: #ffffff;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);

}


.aboutweb-btn:hover i {

    transform: translateX(7px);

}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.aboutweb-visual {

    position: relative;

    width: 52%;

    min-height: 550px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform-style: preserve-3d;

}


/* =========================================================
   BLUE GLOW BEHIND IMAGE
========================================================= */

.aboutweb-glow {

    position: absolute;

    width: 430px;

    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(74,161,255,0.32),
            rgba(0,100,255,0.12) 45%,
            transparent 70%
        );

    filter: blur(10px);

    z-index: 0;

}


/* =========================================================
   MAIN IMAGE
========================================================= */

.aboutweb-main-image {

    position: relative;

    width: min(520px, 90%);

    border-radius: 28px;

    overflow: hidden;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.25);

    box-shadow:
        0 35px 80px rgba(0,0,0,0.40),
        0 0 50px rgba(54,145,255,0.12);

    transform-style: preserve-3d;

    z-index: 3;

}


.aboutweb-main-image img {

    width: 100%;

    height: auto;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;

}


.aboutweb-main-image:hover img {

    transform: scale(1.04);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.aboutweb-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            transparent 45%
        );

    pointer-events: none;

}


/* =========================================================
   DECORATIVE RINGS
========================================================= */

.aboutweb-ring {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.18);

    pointer-events: none;

}


.aboutweb-ring-one {

    width: 560px;
    height: 560px;

    animation: ringRotate 20s linear infinite;

}


.aboutweb-ring-two {

    width: 650px;
    height: 650px;

    border-style: dashed;

    border-color: rgba(255,255,255,0.10);

    animation: ringRotateReverse 30s linear infinite;

}


@keyframes ringRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes ringRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   FLOATING IMAGE CARDS
========================================================= */

.aboutweb-card {

    position: absolute;

    width: 175px;

    padding: 10px;

    background: rgba(255,255,255,0.96);

    border-radius: 18px;

    box-shadow:
        0 25px 55px rgba(0,0,0,0.35);

    z-index: 6;

    transform-style: preserve-3d;

}


.aboutweb-card img {

    width: 100%;

    height: 110px;

    object-fit: cover;

    border-radius: 12px;

    display: block;

}


.aboutweb-card-text {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 5px 4px;

    color: #18265e;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 700;

}


.aboutweb-card-text i {

    color: #232A76;

}


/* =========================================================
   CARD ONE
========================================================= */

.aboutweb-card-one {

    top: 20px;

    left: 2%;

    transform: rotate(-7deg);

}


/* =========================================================
   CARD TWO
========================================================= */

.aboutweb-card-two {

    right: 0;

    bottom: 30px;

    transform: rotate(7deg);

}


/* =========================================================
   PRODUCT BADGE
========================================================= */

.aboutweb-badge {

    position: absolute;

    left: 8%;

    bottom: 15px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px 20px;

    background: rgba(255,255,255,0.96);

    border-radius: 17px;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.30);

    z-index: 7;

}


.aboutweb-badge-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #232A76;

    color: #ffffff;

    font-size: 20px;

}


.aboutweb-badge strong {

    display: block;

    color: #172052;

    font-family: "Poppins", sans-serif;

    font-size: 23px;

    line-height: 1;

}


.aboutweb-badge span {

    display: block;

    margin-top: 5px;

    color: #777;

    font-size: 11px;

}


/* =========================================================
   FLOATING DOTS
========================================================= */

.aboutweb-dot {

    position: absolute;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 20px rgba(255,255,255,0.8);

    z-index: 5;

}


.aboutweb-dot-one {

    top: 70px;

    right: 10%;

}


.aboutweb-dot-two {

    top: 25%;

    left: 3%;

    width: 6px;

    height: 6px;

}


.aboutweb-dot-three {

    right: 5%;

    bottom: 25%;

    width: 7px;

    height: 7px;

}


.aboutweb-dot-four {

    left: 15%;

    bottom: 15%;

    width: 5px;

    height: 5px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .aboutweb {

        padding: 70px 5%;

    }

    .aboutweb-row {

        gap: 35px;

    }

    .aboutweb-content h2 {

        font-size: 42px;

    }

    .aboutweb-text {

        font-size: 15px;

    }

    .aboutweb-card {

        width: 145px;

    }

}


@media(max-width:900px) {

    .aboutweb {

        padding: 70px 25px;

    }

    .aboutweb-row {

        flex-direction: column;

    }

    .aboutweb-content,
    .aboutweb-visual {

        width: 100%;

    }

    .aboutweb-content {

        text-align: center;

    }

    .aboutweb-label {

        justify-content: center;

    }

    .aboutweb-text {

        max-width: 750px;

        margin-left: auto;
        margin-right: auto;

    }

    .aboutweb-visual {

        min-height: 550px;

    }

}


@media(max-width:600px) {

    .aboutweb {

        padding: 60px 18px;

    }

    .aboutweb-content h2 {

        font-size: 34px;

    }

    .aboutweb-text {

        font-size: 14px;

        line-height: 1.8;

    }

    .aboutweb-main-image {

        width: 88%;

    }

    .aboutweb-card {

        width: 115px;

        padding: 7px;

    }

    .aboutweb-card img {

        height: 75px;

    }

    .aboutweb-card-text {

        font-size: 9px;

    }

    .aboutweb-card-one {

        left: 0;

        top: 40px;

    }

    .aboutweb-card-two {

        right: 0;

        bottom: 55px;

    }

    .aboutweb-badge {

        left: 50%;

        transform: translateX(-50%);

        white-space: nowrap;

    }

    .aboutweb-ring-one {

        width: 400px;
        height: 400px;

    }

    .aboutweb-ring-two {

        width: 460px;
        height: 460px;

    }

}