* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #020024, #090979, #000);
    color: rgb(255, 254, 254);

    min-height: 100vh;   /* ðŸ”¥ allow content to grow */
    overflow-x: hidden;  /* only stop horizontal scroll */
}

/* 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: rgb(255, 255, 255);
}

.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
    );
}


.service-details {
    width: 40%;
    min-height: 250px;

    margin-left: 300px;   /* ðŸ”¥ move right side content more right */
}






























/* SECTION */
.services-page {
    padding: 80px 60px;
}

.services-page h1 {
    text-align: center;
    color: #00d4ff;
    margin-bottom: 70px;
}














/* CAROUSEL WRAPPER */
.carousel {
    position: relative;
    width: 500px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;              /* prevents shrinking */
}

/* CARD BASE */
.card {
    position: absolute;
    width: 200px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(10, 20, 80, 0.9); /* ðŸ”¥ solid dark */
    backdrop-filter: none;

    border: 1px solid rgba(0,212,255,0.25);

    color: #00d4ff;
    font-weight: 500;
    font-size: 15px;

    transition: 
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.6s ease,
        box-shadow 0.4s ease;
    cursor: pointer;
}

/* CENTER ACTIVE */
.card.active {
    transform: translateX(0) scale(1.15);
    z-index: 5;

    background: rgba(0, 180, 255, 0.12); /* ðŸ”¥ key fix */
    border: 1px solid #00d4ff;

    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.7),
        0 0 60px rgba(0, 212, 255, 0.25);
}

/* LEFT */
.card.left {
    transform: translateX(-220px) scale(0.9);
    opacity: 0.6;
}

/* RIGHT */
.card.right {
    transform: translateX(220px) scale(0.9);
    opacity: 0.6;
}

/* FAR LEFT */
.card.far-left {
    transform: translateX(-420px) scale(0.75);
    opacity: 0.3;
}

/* FAR RIGHT */
.card.far-right {
    transform: translateX(420px) scale(0.75);
    opacity: 0.3;
}






.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;   /* ðŸ”¥ THIS FIXES YOUR MAIN ISSUE */

    height: 350px;    /* FIXED HEIGHT */
}

/* RIGHT PANEL */
.service-details {
    width: 400px;
    height: 300px;
    overflow: hidden;
    text-align: left;
}

.service-details h2 {
    font-size: 28px;
    color: #00d4ff;
    margin-bottom: 20px;
}





#list li {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.4s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.controls {
    position: absolute;
    bottom: 100px;   /* ðŸ”¥ moves to bottom */
    left: 30%;
    transform: translateX(-50%);

    display: flex;
    gap: 15px;
}

.controls button {
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    padding: 10px 18px;
    margin: 6px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.controls button:hover {
    background: #00d4ff;
    color: #000;
}








.card {
    color: transparent;   /* hide all text by default */
}


.card.active {
    color: #00d4ff;   /* main visible */
}

.card.left,
.card.right {
    color: rgba(0, 212, 255, 0.5); /* slight visible */
}

.card {
    color: transparent;
}

.card.active {
    color: #00d4ff;
}









.card {
    text-align: center;
    padding: 10px;
    line-height: 1.3;

    display: flex;
    align-items: center;
    justify-content: center;

    word-break: break-word;   /* ðŸ”¥ fixes long text */
}






.card:hover {
    transform: translateY(-8px) scale(1.05);
}







.card.active {
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    from {
        box-shadow: 0 0 15px rgba(0,212,255,0.6);
    }
    to {
        box-shadow: 0 0 35px rgba(0,212,255,0.9);
    }
}



.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;
}


