/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    color: white;
    overflow-x: hidden;
}

/* ================= NAVIGATION ================= */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
}

.glass-nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    opacity: 0.8;
    transition: 0.3s;
}

.glass-nav a:hover {
    opacity: 1;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, #1e3c72, #0f0f0f 60%);
    z-index: -1;
}

/* Slides */
.hero-slide {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    padding: 0 20px;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
}


/* ================= CATEGORIES ================= */
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 50px 0;
    padding: 0 15px;
}

.categories button {
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.categories button:hover,
.categories .active {
    background: rgba(255,255,255,0.1);
}


/* ================= PRODUCTS ================= */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 0 80px 80px;
}

.product-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 20px;
    text-align: center;
    transition: 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
}

.product-card img {
    width: 100%;
    border-radius: 20px;
}

.product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.product-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
}

.product-slide.active {
    opacity: 1;
}

.product-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
}

.product-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: transform 0.3s ease, background 0.3s ease;
}

.product-dot.active {
    background: #00f7ff;
    transform: scale(1.25);
}

/* ================= CONTACT ================= */
.glass-card {
    margin: 80px auto;
    width: 80%;
    padding: 50px;
    border-radius: 30px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    text-align: center;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 20px;
    opacity: 0.5;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .glass-nav {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .glass-nav nav {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(20px);
    }

    .glass-nav nav.active {
        display: flex;
    }

    .glass-nav nav a {
        margin: 15px 0;
        font-size: 18px;
    }

    .hero {
        height: 75vh;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }

    .primary-btn {
        width: 100%;
        max-width: 280px;
    }

    .categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 15px;
    }

    .categories button {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .products {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }

    .product-card {
        padding: 15px;
    }

    .product-card h3 {
        font-size: 18px;
    }

    .product-card p {
        font-size: 14px;
        opacity: 0.7;
    }

    .glass-card {
        width: 95%;
        padding: 30px 20px;
        border-radius: 20px;
    }
    .header-number{
        display: none;
    }
}



/* ================= MOBILE STATIC MODE ================= */
@media (max-width: 768px) {

    .hero {
        height: 75vh;
    }

    .hero-slide {
        position: relative;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-slide:not(:first-child) {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }
}
.glossy-btn {
    position: relative;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    margin-top:10px;
    background: linear-gradient(135deg, #0071e3, #00c6ff);
    box-shadow:
        0 10px 25px rgba(0, 113, 227, 0.4),
        inset 0 2px 4px rgba(255,255,255,0.3);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Lift */
.glossy-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 35px rgba(0, 113, 227, 0.6),
        inset 0 2px 4px rgba(255,255,255,0.4);
}

/* Press Effect */
.glossy-btn:active {
    transform: translateY(1px);
}

/* Infinite Gloss Animation */
.glossy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0.1) 100%
    );

    transform: skewX(-25deg);
    animation: shine 3s linear infinite;
}
.hero .glossy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        rgba(255,225,225,0.1) 0%,
        rgba(255,123,786,0.6) 50%,
        rgba(225,255,225,0.1) 100%
    );

    transform: skewX(-25deg);
    animation: shine 3s linear infinite;
}
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

/* Keyframes */

.header-number {
    position: relative;
    display: inline;
    margin-right: 30px;
    padding:5px;
    padding-left:10px;
    padding-right:10px;
    margin-bottom: 0;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    z-index: 1;
    overflow: hidden;
}

/* RGB Border Layer */
.header-number::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 35px;
    background: linear-gradient(
        45deg,
        red,
        orange,
        yellow,
        green,
        cyan,
        blue,
        violet,
        red
    );
    background-size: 400%;
    animation: rgbBorder 10s linear infinite;
    z-index: -2;
}

/* Inner Background Layer */
.header-number::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: #0f0f0f;
    border-radius: 28px;
    z-index: -1;
}

/* RGB Moving Animation */
@keyframes rgbBorder {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 400% 50%;
    }
}
@media (max-width: 768px) {
    .header-number{
        display: none;
    }
}
.contact {
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.contact-item i {
    font-size: 20px;
    color: #00f7ff;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #00f7ff;
}

/* Social Media */

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        inset 0 2px 5px rgba(255,255,255,0.3),
        0 4px 15px rgba(0,0,0,0.4);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gloss Shine Effect */
.social-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.6s;
}

.social-icon:hover::before {
    transform: translateX(100%);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Brand Colors */
.facebook:hover { background: #1877f2; }
.instagram:hover { background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); }
.linkedin:hover { background: #0077b5; }
.whatsapp:hover { background: #25d366; }
.youtube:hover {background: red;}
/* Responsive */
@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
    }
}
.logo{
   max-height: 50px; 
}
.testimonials {
    position: relative;
    padding: 140px 20px;
    overflow: hidden;
    text-align: center;
    color: white;
}

/* Background Canvas */
#particles-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Heading */
.testimonials h2 {
    font-size: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Slider */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: auto;
    z-index: 2;
}

/* Card */
.testimonial-card {
    position: absolute;
    width: 100%;
    padding: 60px;
    border-radius: 40px;
    backdrop-filter: blur(30px);
    background: rgba(255,255,255,0.05);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.6),
        inset 0 2px 10px rgba(255,255,255,0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    animation: floatCard 6s ease-in-out infinite;
    overflow: hidden;
}

/* 3D Glass Depth */
.testimonial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.1),
        transparent 40%
    );
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* Floating animation */


/* Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

/* Blob Avatar */
.avatar-blob {
    width: 160px;
    height: 160px;
    animation: blobMorph 4s infinite ease-in-out;
}

.avatar-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: blobMorph 4s infinite ease-in-out;
}

@keyframes blobMorph {
    0% { border-radius: 42% 58% 65% 35% / 40% 45% 55% 60%; }
    25% { border-radius: 60% 40% 30% 70% / 55% 60% 40% 45%; }
    50% { border-radius: 50% 50% 60% 40% / 35% 65% 45% 55%; }
    75% { border-radius: 35% 65% 55% 45% / 60% 40% 60% 40%; }
    100% { border-radius: 42% 58% 65% 35% / 40% 45% 55% 60%; }
}

/* Client Details */
.client-details h4 { font-size: 24px; margin: 0; }
.client-details span { color: #bbb; }
.stars { color: gold; margin-top: 8px; }

/* Quote */
.quote-wrapper {
    position: relative;
    text-align: left;
    padding-left: 80px;
}

.big-quote {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 140px;
    color: rgba(255,255,255,0.05);
}

.quote-text {
    font-size: 19px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card { padding: 40px; }
    .testimonial-header { flex-direction: column; align-items: flex-start; }
    .avatar-blob { width: 130px; height: 130px; }
}
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Slider Wrapper */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 6%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* LEFT */
.hero-left {
    flex: 1;
}

.hero-left img {
    width: 100%;
    height:80%px;
    margin-top:30px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* RIGHT */
.hero-right {
    flex: 1;
    padding-left: 60px;
    color: white;
    max-width: 600px;
}

/* Quote */
.hero-quote {
    font-size: 22px;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 20px;
}

/* Title */
.hero-right h1 {
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Description */
.hero-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #ddd;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 14px 30px;
    background: #00f7ff;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: white;
}

.btn-outline {
    padding: 14px 30px;
    border: 1px solid #00f7ff;
    color: #00f7ff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #00f7ff;
    color: black;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-right {
        padding-left: 0;
        margin-top: 40px;
    }

    .hero-left img {
        height: 350px;
    }

    .hero-right h1 {
        font-size: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }
}
