* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #020024, #090979, #000);
    color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
}

.btn {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    cursor: pointer;
    border-radius: 5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

/* Logo Image */
.logo img {
    width: 300px;
    height: 90px;
    object-fit: contain;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 60px;
    height: 90px;   /* ✅ FIXED HEIGHT */

    background: transparent;
}

.logo img {
    height: 140px;   /* ✅ control height only */
    width: auto;    /* maintain ratio */
}

nav {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.left p {
    max-width: 450px;
    line-height: 1.6;
}

header {
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #00d4ff,
        transparent
    );
}
























/* ================= ABOUT SECTION ================= */
.about-page {
    padding: 80px 60px;
    text-align: center; /* ✅ CENTER EVERYTHING */
}

/* HEADINGS */
.about-page h1 {
    color: #00d4ff;
    margin-bottom: 20px;
}

.about-page p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ccc;
    line-height: 1.6;
}

/* ================= HIGHLIGHT BOXES ================= */
.highlight-boxes {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.box {
    width: 280px;
    padding: 25px;
    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,212,255,0.3);

    backdrop-filter: blur(10px);

    transition: 0.3s ease;
}

.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(0,212,255,0.4);
}

.box h3 {
    color: #00d4ff;
    margin-bottom: 10px;
}

/* ================= TEAM GRID ================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ 3 CARDS */
    gap: 25px;
    margin-top: 50px;
}

@media (max-width: 1000px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= TEAM CARD ================= */
.team-card {
    position: relative;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,212,255,0.2);

    transition: 0.3s ease;
}

/* FRONT */
.card-front {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* CENTER TEXT PERFECTLY */
.card-front h2 {
    font-size: 18px;
    text-align: center;
}

.card-front h4 {
    color: #00d4ff;
    font-size: 14px;
}

/* BACK */
.card-back {
    position: absolute;
    inset: 0;
    padding: 18px;

    /* ✅ SAME GLASS STYLE AS FRONT */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;

    /* TEXT */
    color: #ffffff;

    opacity: 0;
    transform: translateY(20px);

    transition: all 0.35s ease;
    overflow-y: auto;
}

.card-back p {
    font-size: 13px;
    line-height: 1.6;
    color: #e6faff;
}

.card-back ul li {
    color: #ccefff;
}



/* HOVER */
.team-card:hover .card-back {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover .card-front {
    opacity: 0.1;
    transform: scale(0.95);
}

.team-card:hover {
    box-shadow: 
        0 0 15px rgba(0,212,255,0.4),
        0 0 40px rgba(0,212,255,0.15);
}







.card-front h2 {
    font-size: 18px;
    margin-bottom: 6px;   /* ✅ small gap below name */
}

.card-front h4 {
    color: #00d4ff;
    font-size: 14px;
    margin-top: 12px;      /* ✅ avoids sticking */
    letter-spacing: 0.5px; /* 🔥 premium feel */
}

.card-back ul {
    padding-left: 0;          /* remove default ugly indent */
    margin-top: 10px;
    list-style: none;         /* remove default bullets */
}

.card-back li {
    position: relative;
    padding-left: 18px;       /* space for custom bullet */
    margin-bottom: 8px;

    font-size: 13px;
    line-height: 1.5;

    color: #ccefff;
    text-align: left;         /* ✅ FIX alignment */
}

/* Custom clean bullet */
.card-back li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;

    color: #00d4ff;
    font-size: 14px;
}

.card-back li {
    margin-bottom: 10px;
}


.wa-blue {
    width: 60px;
    height: 60px;
    background: #09ed55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-blue img {
    width: 30px;
    filter: brightness(0) invert(1); /* makes icon white */
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;   /* ✅ this pushes it to right */
    left: auto;    /* ✅ important (removes left alignment issue) */
    z-index: 9999;
}




/* FOOTER */
.footer {
    margin-top: 60px;
    padding: 20px 40px;

    text-align: center;

    background: rgba(0, 20, 60, 0.4);
    border-top: 1px solid rgba(0,212,255,0.3);

    backdrop-filter: blur(10px);
}

.footer-content p {
    margin: 5px 0;
    font-size: 13px;
    color: #aaa;
}

.footer-content p:first-child {
    color: #00d4ff;
    font-weight: 500;
}