body {
    background-color: #0b0f19;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.top-box {
    min-height: 100vh;
    background: radial-gradient(circle at 20% 30%, #141c2f 0%, #060911 100%);
    position: relative;
    padding: 20px 0;
}

.z-1 { z-index: 10; }

.lines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    margin: auto; width: 100%; height: 100%;
    pointer-events: none;
}
.lines .line {
    position: absolute;
    width: 1px; height: 100%;
    background: rgba(255, 255, 255, 0.03);
}

.lines .line:nth-child(1) { left: 10%; }
.lines .line:nth-child(2) { left: 20%; }
.lines .line:nth-child(3) { left: 30%; }
.lines .line:nth-child(4) { left: 40%; }
.lines .line:nth-child(5) { left: 50%; }
.lines .line:nth-child(6) { left: 60%; }
.lines .line:nth-child(7) { left: 70%; }
.lines .line:nth-child(8) { left: 80%; }
.lines .line:nth-child(9) { left: 90%; }

.logo-wrapper {
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    max-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.main-heading {
    font-weight: 800;
    font-style: italic;
    font-size: clamp(40px, 5vw, 145px);
    line-height: 0.85;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.main-heading span {
    display: inline-block;
    will-change: transform, opacity, filter;
    padding-right: 0.18em;
    margin-right: -0.18em;
}

.main-heading:not(.second) span {
    color: #ffffff;
    text-shadow: 
        2px 2px 0px #060911,
        -1px -1px 0px #060911,
        1px -1px 0px #060911,
        -1px 1px 0px #060911,
        0px 8px 15px rgba(0, 0, 0, 0.7);
}

.main-heading.second {
     font-size: clamp(40px, 5vw, 145px);
     display: inline-block !important;
    margin-top: 5px; 
    padding-right: 0.25em; /* Breathing space for italic slant bounds */
    filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.6));
}

/* Moves text clipping features to structural elements directly */
.main-heading.second span {
    background: linear-gradient(to bottom, #ffffff 0%, #ffbe3b 25%, #ff6a00 75%, #cc3300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 16px;
    letter-spacing: 2px;
    color: #a0aec0;
    font-weight: 600;
}

.tagline .highlight {
    color: #ff9f1c;
}
.divider {
    border-color: rgba(255, 166, 0, 0.2);
    opacity: 1;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.feature-item .extra {
    border: 1px solid #ff9f1c;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: grid;
    place-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover .extra {
    transform: translateY(-5px);
    box-shadow: 0 0 12px rgba(255, 159, 28, 0.4);
}
.feature-item i {
    color: #ff9f1c;
    font-size: 20px;
    text-shadow: 0 0 8px rgba(255, 159, 28, 0.4);
}
.feature-item span {
    font-size: 12px;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.web-btn {
    border: 1px solid #ff9f1c;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 159, 28, 0.05);
}
.web-btn:hover {
    background: #ff9f1c;
    color: #0b0f19;
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.4);
}

.info-footer {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 15px 20px;
}

.info-footer a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.2s ease;
}

.info-footer a:hover {
    color: #ff9f1c;
}

.info-footer .icon-circle {
    background: rgba(255, 159, 28, 0.15);
    border: 1px solid rgba(255, 159, 28, 0.3);
    color: #ff9f1c;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.info-footer small {
    display: block;
    font-size: 14px;
    color: #718096;
}

.info-footer strong {
    font-size: 16px;
    font-weight: 600;
}

.video-frame-container {
    position: relative;
    width: 100%;
    max-height: calc(100vh - 80px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background-color: #000000;
}

.main-video {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 160px);
    display: block;
    object-fit: cover;
}













/* ============ media query here ============= */

@media (max-width: 991.5px) {
    .main-heading {
        /* display: inline-block !important; */
        font-size: clamp(48px, 7.5vw, 90px);
    }
    
    .main-heading.second {
        font-size: clamp(48px, 8vw, 90px);
        margin-top: 0;
   
    }
}

@media (max-width: 767.98px) {
    .top-box { 
        padding: 10px 0; 
    }

    .logo-wrapper {
        max-width: 150px;
    }
    
    .main-heading { 
         font-size: clamp(38px, 7.5vw, 50px) !important;
    }
    .main-heading.second {
       font-size: clamp(38px, 7vw, 50px) !important;
        /* margin-left: 8px; */
    }
    
    .video-frame-container { 
        max-height: 400px; 
    }
    .main-video { 
        max-height: 400px; 
    }
}

@media (max-width: 576px) {

    .tagline{
        font-size: 14px;
    }
}








