/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #dcdcdc;
    /* Light Grey fallback */
    overflow-x: hidden;
}

/* --- Sleefe Hero section --- */
.sleefe-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full Height */
    background-color: #dcdcdc;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Nav section */
.navbar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.50);
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-links sup {
    font-size: 0.6em;
    vertical-align: super;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 14px;
    width: 22px;
    cursor: pointer;
}

.menu-icon .bar {
    width: 100%;
    height: 2px;
    background-color: #000000;
    /* Black Bars */
    border-radius: 2px;
}

.video-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.award-badge {
    position: absolute;
    top: 100px;
    right: 40px;
    z-index: 50;
    width: 100px;
}

.award-badge img {
    width: 100%;
    height: auto;
    display: block;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* --- Hero Section  --- */
.hero-section {
    width: 100%;
    height: 100vh;
    background-image: url('https://www.proxgy.com/assets/products/sleefe/sleefe-cap.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Av section */
.content-overlay {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #3b407a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    max-width: 650px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.av-section {
    width: 100%;
    min-height: 100vh;
    /* Adjust based on viewport needs */
    background-color: #dcdcdc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.text-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;/
}

.heading-col {
    flex: 1;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.highlight {
    color: #ff6600;
}

.desc-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
}

.section-desc {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.8;
    text-align: right;
}

.image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.feature-img {
    width: 100%;
    max-width: 450px;
    /* Adjust scale to match image */
    height: auto;
    display: block;
    /* Optional: Entrance animation */
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Clip section */
.clip-section {
    width: 100%;
    min-height: 100vh;
    background-color: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    overflow: hidden;
}

.clip-container {
    width: 100%;
    max-width: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-center {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.clip-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    opacity: 0.6;
}

.text-left {
    position: absolute;
    bottom: 25%;
    left: 10%;
    max-width: 300px;
    z-index: 10;
    text-align: left;
}

.clip-desc {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.text-right {
    position: absolute;
    bottom: 25%;
    right: 10%;
    max-width: 300px;
    z-index: 10;
    text-align: right;
}

.clip-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.highlight {
    color: #ff6600;
}


/* Charging section */
.charging-section {
    width: 100%;
    min-height: 100vh;
    background-color: #dcdcdc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 20px;
}

.device-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    animation: fadeLeft 1s ease-out;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.text-block {
    text-align: right;
    margin-right: 50px;
    z-index: 10;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.highlight {
    color: #ff6600;
}

.section-desc {
    font-size: 16px;
    font-weight: 400;
    color: #555555;
}

.cable-wrapper {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
}

.cable-img {
    width: 100%;
    height: auto;
    display: block;
    animation: slideIn 1.5s ease-out forwards;
}

@keyframes slideIn {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Use Cases section */
.use-cases-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://www.proxgy.com/assets/products/sleefe/banner-usecase.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 100px 40px;
    flex: 1;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.use-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 320px;
    transition: transform 0.3s ease;
}

.use-card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.card-desc {
    font-size: 13.5px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
}

.cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.design-btn {
    background-color: #2e3b8f;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.design-btn:hover {
    background-color: #242f75;
}

.btn-icon {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

/* Use Cases section */
.footer-bar {
    background-color: #0d0d0d;
    padding: 25px 0;
    width: 100%;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright {
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.disclaimer {
    color: #aaaaaa;
    font-size: 10px;
    font-weight: 300;
}

.footer-center {
    display: flex;
    gap: 40px;
}

.footer-center a {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s;
}

.footer-center a:hover {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: #e6e6e6;
}