


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    color:white;
    background: linear-gradient(
        135deg,
        #0a1f44 0%,
        #0e2a6d 25%,
        #0b3c82 50%,
        #0c2f73 75%,
        #081a3a 100%
    );
    min-height:100vh;
}

/* NAVBAR */

.navbar{
    position:fixed;
    width:100%;
    top:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:rgba(5, 25, 80, 0.6);
    backdrop-filter:blur(14px);
    box-shadow:0 8px 30px rgba(0,0,0,0.3);
    z-index:1000;
    transition:0.3s;
}

.navbar.scrolled{
    background:rgba(5, 20, 60, 0.95);
    padding:15px 60px;
}

.logo img{
    height:60px;
    transition:0.3s;
}

.navbar.scrolled .logo img{
    height:45px;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#3dd5ff;
}

.btn-primary{
    padding:10px 25px;
    border-radius:30px;
    border:1px solid #3dd5ff;
    color:#3dd5ff;
    text-decoration:none;
    transition:0.3s;
}

.btn-primary:hover{
    background:#3dd5ff;
    color:#001933;
    box-shadow:0 0 20px #3dd5ff;
}

/* HERO SECTION */

.hero{
    height:100vh;
    background:url("images/hero.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background: linear-gradient(
        120deg,
        rgba(3, 17, 60, 0.9) 0%,
        rgba(0, 38, 95, 0.7) 40%,
        rgba(0, 78, 146, 0.4) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:80px;
    font-weight:700;
    letter-spacing:5px;
    text-shadow:0 0 20px rgba(61,213,255,0.7);
}

.hero p{
    font-size:28px;
    margin-top:20px;
    font-weight:300;
}

/* ANIMATIONS */

.animate-title{
    opacity:0;
    transform:translateY(30px);
    animation:fadeUp 1.2s ease forwards;
}

.animate-subtitle{
    opacity:0;
    transform:translateY(30px);
    animation:fadeUp 1.2s ease forwards 0.4s;
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* WHATSAPP BUTTON */

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    font-size:24px;
    padding:15px 18px;
    border-radius:50%;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.4);
    transition:0.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}
/* PRODUCT SECTION */
.product-section {
    padding: 80px 10%;
    background: #f5f9ff;
}

.product-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.product-image {
    flex: 1;
    text-align: center;
}

.product-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-details {
    flex: 1;
    color: #000000;
}

.product-details h2 {
    font-size: 36px;
    color: #0d3b66;
    margin-bottom: 20px;
}

.product-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.spec-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.btn-download {
    display: inline-block;
    padding: 12px 25px;
    background: #0d3b66;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn-download:hover {
    background: #145da0;
}



.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
}

.scroll-down::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { opacity: 0; top: 8px; }
  50% { opacity: 1; top: 18px; }
  100% { opacity: 0; top: 28px; }
}





.hero11 {
    height: 100vh; /* Ensures the hero takes full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.spacer {
    height: 150px; /* Adjust this number to make the space bigger or smaller */
    width: 100%;
    background: transparent;
}



@media (max-width: 768px) {
	
	   /* Fix navbar disturbance */
    .navbar {
        position: relative;   /* remove fixed on mobile */
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .hero {
        height: 90vh;
        padding-top: 40px;
    }
	

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
        padding: 0 15px;
    }

    .product-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

}