/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html, body {
    height: 100%;
}  
  
body {
    display: table;
    width: 100%;
    height: 100%; 
    background-color: #171717;   
    color: #000; 
    line-height: 1.6;
    position: relative;
    font-family: sans-serif;
    overflow: auto;
}

/* Navigation */
.navbar.bg-dark {
    background: url('/assets/bg-mesh.webp') repeat-x  !important;
}
.btn-primary{background:#0744a1;border-color:#0b3f8c;font-weight: 600;}
.buy-now-btn {
    padding: 8px 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}



.rounded{border-radius:24px !important;}

@media screen and (max-width: 991px) {
    .buy-now-btn {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Dropdown hover functionality */
@media only screen and (min-width: 960px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .dropdown .dropdown-menu {
        display: none;
    }
    .dropdown:hover .dropdown-toggle::after {
        border-bottom: 0.3em solid;
        border-top: 0;
    }
}

@media screen and (max-width: 991px) {
    .dropdown-toggle.show::after {
        border-top: 0;
        border-bottom: 0.3em solid;
    }
}

/* Hero Sections */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-color: #050505;
    
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}



.hero-content {
    position: relative;
    z-index: 3;
    padding-top:120px;
}

.hero-content.dark-glass{
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top:150px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

@media screen and (max-width: 768px) {
    .hero-video {
        
        max-height: 300px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        
    }
    
    .hero-section {
        height: 20vh;
        min-height: 500px;
    }

    .hero-content {
        padding-top:6v0px;
    }
}


.watch-video-btn {
    border: 2px solid white;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
}

.watch-video-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Cards and Features */
.feature-card {
    background: #f3f4ff;
    border: 1px solid rgba(20, 20, 20, 0.1);
    height: 100%;
}

.feature-card .plus{position:absolute;bottom:10px;right:10px;z-index:1000;}
.feature-card .plus:hover{transform:scale(1.1);}

.backpanel{z-index:100;position: absolute;width: 100%;height:100%;opacity:0;}
.collapse{opacity:1;transition:opacity 0.4s;}
.collapsing {transition:opacity 0.25s ease;}

.card-img-overlay i{transition:transform 0.4s ease;}
.collapse.show ~ .card-img-overlay i{transform:rotate(45deg);}


.hop{transition: transform 0.3s ease;}
.hop:hover{transform: translateY(-5px);}

.product-card-frame{
    text-align: center;
}
.product-card{}



.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
}

.stat-card strong {
    font-size: 2.5rem;
    display: block;
    margin: 1rem 0;
}

.stat-card span {
    color: #28a745;
}

/* Feature Icons and Sections */
.feature-section {
    padding: 5rem 0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 2rem 2rem 0;

    float:left;
    border:1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    background:rgba(255, 255, 255, 0.1);
    padding:10px;
}

.size-guide {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
}




/* Section Styles */
.specs-section {
    background-color: rgba(33, 37, 41, 0.95);
}

.application-section {
    padding: 5rem 0;
}

/* Animated Line */
.line { 
    position: relative;
    width: 100%;
    height: 1px; 
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.line::after { 
    content: ""; 
    display: block; 
    position: absolute; 
    height: 100%;
    width: 15vw;
    top: 0;
    left: -50%; 
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
    animation: slide 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

@keyframes slide {
    0% {left: -50%;}
    100% {left: 110%;}
}

/* Table Styles */
.table-specs td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight {
    color: var(--bs-primary);
}

.btn:hover{
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #574ae2, 0 0 50px #574ae2, 0 0 75px #574ae2;
    transition: 0.5sease;
}

/* Size Selector */
.size-selector button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    cursor: pointer;
}

.size-selector button.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Footer Styles */
.footer-logo {
    height: 30px;
    filter: brightness(1) invert(1);
}

/* Sector Cards */
.sector-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
    height: 100%;
}

.sector-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.sector-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sector-card img.rounded{
    border-radius: 0 !important;
}

.sector-content {
    padding: 1.5rem;
}

.sector-content h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sector-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Video Modal Styles */
#videoModal .modal-content {
    background: rgba(0, 0, 0, 0);
}

#videoModal .modal-dialog {
    max-width: 90%;
    margin: 1.75rem auto;
}

#videoModal .modal-body {
    padding: 0;
}

#videoModal .btn-close {
    position: absolute;
    right: -30px;
    top: -30px;
    background-color: white;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#videoModal .btn-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    #videoModal .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
    
    #videoModal .btn-close {
        right: 10px;
        top: -40px;
    }
}

model-viewer {
    width: 100%;
    height: 800px;
    background-color: transparent;
    --poster-color: transparent;
}

.carousel-item model-viewer {
    width: 100%;
    height: 700px;
}

.carousel-inner{overflow:visible;margin-bottom:180px;}
.carousel-item .carousel-caption{bottom:-100px;max-width:400px;margin:0 auto;animation: fadeIn 2s;}

@keyframes fadeIn {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }

@media screen and (max-width: 768px) {
    
    .carousel-item model-viewer {
        height: 335px;
    }

   

}

@media screen and (max-width: 480px) {
    
    .carousel-item model-viewer {
        height: 200px;
        margin-top:150px;
        
    }
    .carousel-item .carousel-caption{bottom:-200px;

}
