
/* HERO SECTION STARTS */

/* ================= ABOUT HERO ================= */

.about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 160px 60px 100px;
    position: relative;
    overflow: hidden;

    background: #ffffff;
}

/* 🔥 TOP RIGHT GLOW */
.about-hero::before {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;

    background: radial-gradient(circle, rgba(0,171,228,0.5) 0%, rgba(0,171,228,0.2) 30%, transparent 70%);
    
    top: -300px;
    right: -300px;

    filter: blur(150px);
    z-index: 0;
}

/* 🔥 LEFT SIDE SOFT GLOW */
.about-hero::after {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;

    background: radial-gradient(circle, rgba(0,171,228,0.4) 0%, rgba(0,171,228,0.15) 40%, transparent 75%);
    
    bottom: -400px;
    left: -400px;

    filter: blur(180px);
    z-index: 0;
}

/* TEXT */
.about-hero-text {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.about-hero-text h5 {
    color: #00abe4;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
}

.about-hero-text p {
    margin: 20px 0;
    font-size: 18px;
    color: #555;
}

/* IMAGE */
.about-hero-img {
    position: relative;
    z-index: 2;
}

.about-hero-img img {
    width: 420px;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0,171,228,0.25));
}

/* ================= BUTTONS (ABOUT HERO) ================= */

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* 🔥 PRIMARY BUTTON */
.btn-primary {
    background: linear-gradient(135deg, #00abe4, #00c6ff);
    color: white;

    padding: 14px 28px;
    border-radius: 50px;

    font-weight: 600;
    font-size: 15px;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 25px rgba(0,171,228,0.4);

    transition: all 0.3s ease;
}

/* HOVER */
.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,171,228,0.5);
}

/* CLICK */
.btn-primary:active {
    transform: scale(0.97);
}

/* 🔥 SECONDARY BUTTON */
.btn-secondary {
    background: transparent;
    color: #00abe4;

    padding: 14px 28px;
    border-radius: 50px;

    border: 2px solid #00abe4;

    font-weight: 600;
    font-size: 15px;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

/* HOVER */
.btn-secondary:hover {
    background: #00abe4;
    color: white;

    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,171,228,0.3);
}

/* CLICK */
.btn-secondary:active {
    transform: scale(0.97);
}

/* REMOVE GLASS EFFECT FROM HERO TEXT */
.about-hero-text.glass-card {
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

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

@media (max-width: 1024px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-text {
        max-width: 100%;
    }

    .about-hero-img img {
        width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 30px 80px;
    }

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

/* HERO SECTIONS ENDS */

/* ABOUT US FEAUTURES STARTS */

/* ================= ABOUT FEATURES ================= */

/* ================= ABOUT FEATURES ================= */

.about-features {
    padding: 100px 60px;
    position: relative;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}

/* 🔥 BACKGROUND GLOW */
.about-features::before {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;

    background: radial-gradient(circle, rgba(0,171,228,0.35) 0%, rgba(0,171,228,0.1) 40%, transparent 70%);
    
    top: -300px;
    right: -300px;

    filter: blur(150px);
    z-index: 0;
}

/* HEADER */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.section-header h5 {
    color: #00abe4;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* ================= PREMIUM CARD ================= */
.feature-card {
    position: relative;
    padding: 45px 25px;
    border-radius: 20px;

    /* 🔥 GLASS */
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border: 1px solid rgba(255,255,255,0.25);

    box-shadow: 0 10px 40px rgba(0,0,0,0.08);

    transition: all 0.4s ease;
    overflow: hidden;
}

/* 🔥 LIGHT REFLECTION EFFECT */
.feature-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    top: -100%;
    left: -100%;

    transform: rotate(25deg);
    transition: 0.6s;
}

/* 🔥 GLOW BORDER */
.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;

    background: linear-gradient(120deg, transparent, rgba(0,171,228,0.4), transparent);
    opacity: 0;
    transition: 0.4s;
}

/* 🔥 HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 25px 80px rgba(0,171,228,0.2);
}

/* LIGHT MOVE */
.feature-card:hover::before {
    top: 100%;
    left: 100%;
}

/* GLOW ACTIVE */
.feature-card:hover::after {
    opacity: 1;
}

/* ICON */
.feature-card i {
    font-size: 34px;
    color: #00abe4;
    margin-bottom: 20px;
}

/* TITLE */
.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXT */
.feature-card p {
    font-size: 14px;
    color: #555;
}

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

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-features {
        padding: 80px 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ABOUT US FEAUTURES END */

/* TEAM SECTION STARTS  */

/* ================= TEAM SECTION ================= */

/* ================= TEAM ================= */

/* ================= TEAM SECTION ================= */

.team {
    padding: 120px 60px;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: #ffffff;
}

/* 🔥 GRADIENT GLOW BACKGROUND */
.team::before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;

    background: radial-gradient(circle, rgba(0,171,228,0.4) 0%, rgba(0,171,228,0.1) 40%, transparent 70%);
    
    top: -400px;
    left: -300px;

    filter: blur(160px);
    z-index: 0;
}

.team::after {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;

    background: radial-gradient(circle, rgba(0,171,228,0.35) 0%, rgba(0,171,228,0.1) 40%, transparent 70%);
    
    bottom: -300px;
    right: -300px;

    filter: blur(160px);
    z-index: 0;
}

/* HEADER */
.section-header {
    position: relative;
    z-index: 2;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* CARD */
.team-card {
    perspective: 1000px;
}

/* INNER */
.card-inner {
    padding: 40px 20px;
    border-radius: 20px;
    position: relative;

    /* 🔥 GLASS */
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border: 1px solid rgba(255,255,255,0.3);

    box-shadow: 0 10px 40px rgba(0,0,0,0.1);

    transition: all 0.4s ease;
    overflow: hidden;
}

/* 🔥 LIGHT SWEEP */
.card-inner::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;

    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);

    top: -100%;
    left: -100%;

    transform: rotate(25deg);
    transition: 0.6s;
}

/* 🔥 GLOW BORDER */
.card-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;

    background: linear-gradient(120deg, transparent, rgba(0,171,228,0.4), transparent);
    opacity: 0;
    transition: 0.4s;
}

/* HOVER */
.team-card:hover .card-inner {
    transform: rotateY(8deg) rotateX(6deg) scale(1.06);
    box-shadow: 0 30px 90px rgba(0,171,228,0.25);
}

.team-card:hover .card-inner::before {
    top: 100%;
    left: 100%;
}

.team-card:hover .card-inner::after {
    opacity: 1;
}

/* IMAGE */
.team-img {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;

    border: 3px solid rgba(0,171,228,0.4);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.team-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 14px;
    color: #666;
}

/* SOCIAL */
.team-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 12px;

    opacity: 0;
    transform: translateY(15px);
    transition: 0.3s;
}

.team-social a {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(0,171,228,0.15);
    color: #00abe4;

    transition: 0.3s;
}

.team-social a:hover {
    background: #00abe4;
    color: white;
}

/* SHOW SOCIAL */
.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team {
        padding: 80px 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* TEAM SECTION ENDS  */



/* ACHIEVEMENT SECTION STARTS */

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

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

.stats {
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
}

/* 🔥 DOUBLE GLOW BACKGROUND */
.stats::before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;

    background: radial-gradient(circle, rgba(0,171,228,0.45) 0%, rgba(0,171,228,0.1) 40%, transparent 70%);
    
    top: -300px;
    left: -300px;

    filter: blur(160px);
    z-index: 0;
}

.stats::after {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;

    background: radial-gradient(circle, rgba(0,171,228,0.35) 0%, rgba(0,171,228,0.1) 40%, transparent 70%);
    
    bottom: -300px;
    right: -300px;

    filter: blur(160px);
    z-index: 0;
}

/* GRID */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* 🔥 CARD */
.stat-box {
    padding: 45px 20px;
    border-radius: 20px;
    position: relative;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(25px);

    border: 1px solid rgba(255,255,255,0.25);

    box-shadow: 0 10px 40px rgba(0,0,0,0.08);

    transition: all 0.4s ease;
    overflow: hidden;
}

/* 🔥 LIGHT SWEEP */
.stat-box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;

    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);

    top: -100%;
    left: -100%;

    transform: rotate(25deg);
    transition: 0.6s;
}

/* HOVER */
.stat-box:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0,171,228,0.25);
}

.stat-box:hover::before {
    top: 100%;
    left: 100%;
}

/* ICON */
.stat-box i {
    font-size: 28px;
    color: #00abe4;
    margin-bottom: 15px;
}

/* NUMBER */
.stat-box h2 {
    font-size: 42px;
    color: #00abe4;
    margin-bottom: 10px;
}

/* 🔥 LINE ANIMATION */
.stat-box .line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00abe4, #00c6ff);
    margin: 10px auto;
    border-radius: 10px;
    transition: 0.3s;
}

.stat-box:hover .line {
    width: 70px;
}

/* TEXT */
.stat-box p {
    font-size: 15px;
    color: #555;
}

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

@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 80px 30px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* ACHIEVEMENT SECTION ENDS */


/* CTA STARTS */

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

.cta {
    padding: 120px 60px;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: #ffffff;
}

/* 🔥 BACKGROUND GLOW */
.cta::before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;

    background: radial-gradient(circle, rgba(0,171,228,0.5) 0%, rgba(0,171,228,0.15) 40%, transparent 70%);
    
    top: -300px;
    left: -300px;

    filter: blur(160px);
    z-index: 0;
}

.cta::after {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;

    background: radial-gradient(circle, rgba(0,171,228,0.4) 0%, rgba(0,171,228,0.1) 40%, transparent 70%);
    
    bottom: -300px;
    right: -300px;

    filter: blur(160px);
    z-index: 0;
}

/* 🔥 GLASS CONTAINER */
.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 25px;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    border: 1px solid rgba(255,255,255,0.3);

    box-shadow: 0 20px 60px rgba(0,0,0,0.1);

    position: relative;
    z-index: 2;

    transition: 0.4s;
}

/* 🔥 HOVER LIFT */
.cta-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 90px rgba(0,171,228,0.25);
}

/* HEADING */
.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

/* TEXT */
.cta p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

@media (max-width: 768px) {
    .cta {
        padding: 80px 30px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta-container {
        padding: 40px 20px;
    }
}

/* CTA ENDS  */ 