﻿:root {
    --accent: #ff2c2c;
    --glass-bg: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.08);
    --card-dark: rgba(0,0,0,0.65);
    --glow-from: rgba(255,44,44,0.9);
    --glow-to: rgba(255,130,130,0.08);
    --section-padding: 70px;
    /* background image - replace with your image path */
    --bg-img: url("images/led-bg.jpg"); /* <-- change to your image (e.g. /assets/WhatsApp Image ...jpeg) */
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: linear-gradient(135deg, #e3f2ff, #f7e9ff);
    color: #222;
    overflow-x: hidden;
}

/* HERO SECTION WITH GRADIENT */
.hero-full {
    width: 100%;
    min-height: 100vh;
    padding: 100px 20px;
    background: linear-gradient(115deg, #1a73e8cc, #673ab7cc), url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1600') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
}

/* GLASS EFFECT PHOTO FRAME */
.glass-frame {
    width: 280px;
    height: 350px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
    margin: auto;
    transition: 0.3s ease;
}

    .glass-frame:hover {
        transform: scale(1.04);
    }

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 17px;
    object-fit: cover;
}

/* Cards */
.card-custom {
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .09);
    padding: 30px;
}

/* Timeline */
.timeline-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
}

    .timeline-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

footer {
    background: #0d0d0d;
    color: #bbb;
    padding: 35px 0;
    text-align: center;
}

/* Mobile */
@media(max-width: 576px) {
    .glass-frame {
        width: 220px;
        height: 280px;
    }
}

.hero {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

    /* Decorative background image with soft dark overlay */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--bg-img);
        background-size: cover;
        background-position: center;
        opacity: 0.18;
        filter: grayscale(.06) contrast(.9) saturate(.8);
        z-index: 0;
    }

/* Inline SVG circuit overlay (subtle) */
.svg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
    mix-blend-mode: overlay;
}

.container-overlay {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 38px;
    text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

/* Card grid */
.cards-row {
    display: flex;
    gap: 28px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.led-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
    width: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform .36s cubic-bezier(.2,.9,.2,1), box-shadow .36s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

    .led-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 50px rgba(0,0,0,0.6);
    }

/* image mask panels */
.card-media {
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
    min-height: 100%;
}

    .card-media.left {
        clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    }

    .card-media.right {
        clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    }

    /* overlay gradient on images for better contrast */
    .card-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.6));
        mix-blend-mode: multiply;
    }

/* Content area */
.card-content {
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.brand {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    
    color: #673ab7;
    
}

.subbrand {
    font-weight: 700;
    font-size: 18px;
    color: #0a7669;
    opacity: 1;
    margin-top: 4px;
}

.date {
    font-weight: 800;
    font-size: 22px;
    margin-top: 14px;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.venue {
    font-size: 14.5px;
    opacity: .9;
    margin-bottom: 12px;
}

.btn-visit {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), #ff7b7b);
    color: #fff;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(255,44,44,0.12);
    transition: transform .18s ease, box-shadow .18s ease;
    margin-top: 10px;
    width: max-content;
}

    .btn-visit:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(255,44,44,0.18);
    }

/* Animated gradient glowing separator line */
/* Centered glowing separator */
.glow-center {
    width: 8px;
    height: 60px;
    margin: 40px auto;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,44,44,0.15), rgba(255,44,44,0.55), rgba(255,160,160,0.08) );
    position: relative;
    overflow: hidden;
    animation: floatingGlow 4.5s linear infinite;
}

    /* internal glowing animation */
    .glow-center::before {
        content: "";
        position: absolute;
        inset: -40% -80%;
        background: linear-gradient(90deg, rgba(255,44,44,0), rgba(255,160,160,0.6), rgba(255,44,44,0) );
        filter: blur(20px);
        opacity: .9;
        animation: floatingGlow 4s linear infinite;
    }

/* glowing movement */
@keyframes floatingGlow {
    0% {
        transform: translateY(-40%);
    }

    50% {
        transform: translateY(35%);
    }

    100% {
        transform: translateY(-40%);
    }
}


/* Responsive tweaks */
@media (max-width: 991px) {
    .led-card {
        grid-template-columns: 1fr;
        min-height: 320px;
    }

    .card-media.left, .card-media.right {
        clip-path: none;
        height: 180px;
    }

    .glow-separator {
        display: none;
    }

    .cards-row {
        gap: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.35rem;
        padding: 0 12px;
    }

    .card-content {
        padding: 18px;
    }

    .btn-visit {
        padding: 9px 16px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .led-card {
        border-radius: 10px;
    }
}

.timeline-section {
    max-width: 100%;
    margin: 60px auto;
    padding: 0 20px;
}

.timeline-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #673ab7;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(#9fe2d9, #0a7669);
        transform: translateX(-50%);
    }

.timeline-item {
    width: 50%;
    padding: 20px 30px;
    position: relative;
    animation: fadeInUp 1s ease forwards;
}

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid #0a7669;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: -26px;
    font-size: 22px;
    color: #0a7669;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.timeline-icon1 img {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid #0a7669;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: -26px;
    font-size: 22px;
    color: #0a7669;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.timeline-item:nth-child(even) .timeline-icon {
    left: -26px;
    right: auto;
}
.timeline-item:nth-child(even) .timeline-icon1 img {
    left: -26px;
    right: auto;
}
.timeline-content {
    background: #e8f8f5;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border-left: 5px solid #0a7669;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 5px solid #0a7669;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-content h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #0a7669;
}

.timeline-content p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

/* -------------------------------------------------------------- */
/*   PERFECT MOBILE VIEW - ONE BY ONE VERTICAL - NO SCROLL        */
/* -------------------------------------------------------------- */
@media (max-width: 768px) {

    /* Remove center line */
    .timeline::before {
        left: 25px;
        transform: none;
    }

    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        text-align: left !important;
        padding: 20px 20px 40px 70px;
        box-sizing: border-box;
    }

    .timeline-icon {
        left: 0 !important;
        right: auto !important;
        top: 20px !important;
        margin: 0;
    }

    .timeline-content {
        width: 100%;
        border-left: 5px solid #0a7669 !important;
        border-right: none !important;
        margin-top: 20px;
    }
}



.section-wrapper {
    padding: 20px 20px;
    background: linear-gradient(135deg, #e9f8f3, #d4eae4);
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #673ab7;
}

.card-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.business-card {
    width: 45%;
    min-width: 300px;
    background: #f8fffd;
    padding: 40px 30px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .business-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

    /* Decorative top stripe */
    .business-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background: linear-gradient(90deg, #00a37e, #008060);
    }

.icon-box {
    font-size: 45px;
    margin-bottom: 15px;
    color: #00a37e;
}

.business-title {
    font-size: 24px;
    font-weight: 700;
    color: #004f41;
    margin-bottom: 15px;
}

.business-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.business-card ul {
    list-style: none;
    padding: 0;
}

    .business-card ul li {
        padding: 8px 0;
        color: #1a1a1a;
        font-size: 15px;
        position: relative;
        padding-left: 20px;
    }

        .business-card ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #00a37e;
            font-weight: 700;
        }

/* Responsive */
@media (max-width: 800px) {
    .business-card {
        width: 90%;
    }
}

.expertise-section {
    padding: 20px 20px;
   
}

.expertise-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #673ab7;
    text-align:center;
}

.expertise-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.expertise-box {
    width: 33%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.expertise-icon img {
    width: 60px;
    height: 60px;
}

.expertise-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}

.expertise-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .expertise-wrapper {
        flex-direction: column;
    }

    .expertise-box {
        width: 100%;
    }
}