/* FIX NAVBAR MENU TOGGLE ON DESKTOP */

@media (min-width: 993px){

.menu-toggle{
display:none !important;
}

.nav-right{
display:flex !important;
position:static !important;
flex-direction:row !important;
}

}
/* ================= GLOBAL ================= */

body{
font-family:'Segoe UI',sans-serif;
background:#f4f7fb;
margin:0;
color:#333;
}

p{
line-height:1.7;
color:#f4f7fb;
}

/* ================= HERO (FINAL UPGRADE) ================= */

.hero {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at 20% 30%, #0f4c81, #050f1f);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Glow background */
.hero-overlay {
    position: absolute;
    width: 800px;
    height: 800px;
    background: linear-gradient(45deg, #00d4ff, #0066ff);
    opacity: 0.2;
    filter: blur(160px);
    top: -200px;
    left: -200px;
}

/* Layout */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}

/* Glass card */
.glass {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Text */
.hero-text {
    flex: 2;
    text-align: center;
    color: #fff;
}

.hero-text h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-text h1 span {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h2 {
    font-size: 20px;
    margin: 15px 0;
    color: #ffffff;
}

.hero-text p {
    opacity: 0.85;
    margin: 15px 0 25px;
}

/* Badge */
.hero-badge {
    background: rgba(255,255,255,0.1);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 18px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Device wrapper */
.device-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Labels */
.device-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

/* Internet label */
.device-label.internet {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    color: #003366;
}

/* TV label */
.device-label.tv {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    color: #003366;
}

/* Images */
.hero-image {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px; /* KEY FIX */
}

.hero-image img {
    max-width: 260px;
    width: 100%;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

.hero-image.right img {
    animation-delay: 1.5s;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Buttons style */
.hero-btn.secondary {
    background: #ffffff;
    color: #b30f0f;
}

.hero-btn.outline {
    border: 2px solid #fff;
    color: #fff;
    margin-top: 10px;
}

.hero-btn.primary {
    background: #0f4c81;
    color: #ffffff;
    margin-left: 10px;
}

/* Hover effect */
.hero-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-image img {
        max-width: 180px;
    }
}

/* ================= SECTION TITLES ================= */

.services h2,
.packages h2,
.news h2{
font-size:34px;
color:#003366;
margin-bottom:10px;
}

.section-sub{
max-width:650px;
margin:auto;
margin-bottom:40px;
color:#666;
font-size:16px;
}

/* ================= SERVICES ================= */

.services{
padding:90px 20px;
text-align:center;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.service-card{
background:white;
padding:40px 30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.07);
transition:all 0.3s ease;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.service-icon{
font-size:38px;
color:#003366;
margin-bottom:15px;
}

/* ================= PACKAGES ================= */

.packages{
padding:90px 20px;
text-align:center;
}

.plan-title{
margin-top:60px;
margin-bottom:30px;
color:#003366;
font-size:24px;
}

.package-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
margin-bottom: 20px;
}

.package{
background:white;
border-radius:16px;
padding:40px 30px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.package:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.package.featured{
border:2px solid #003366;
}

.package h4{
font-size:20px;
margin-bottom:10px;
color:#003366;
}

.price{
font-size:36px;
font-weight:bold;
color:#e60023;
margin-bottom:10px;
}

.speed{
font-size:16px;
margin-bottom:20px;
color:#444;
}

.package ul{
list-style:none;
padding:0;
margin-bottom:25px;
}

.package ul li{
margin-bottom:8px;
font-size:14px;
}

.plan-btn{
display:inline-block;
padding:12px 22px;
background:#003366;
color:white;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:0.25s;
}

.plan-btn:hover{
background:#00264d;
}

/* ================= NEWS ================= */

.news{
padding:90px 20px;
background:#f4f7fb;
text-align:center;
}

.news-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.news-card{
background:white;
padding:25px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.25s;
}

.news-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.news-image{
width:100%;
border-radius:12px;
margin-bottom:15px;
}

/* ================= ABOUT ================= */
.about {
  background: #003366;
  padding: 60px 20px;
  overflow: hidden; /* 🔥 keeps everything inside */
}

/* SLIDER CONTAINER */
.slider {
  position: relative;
  max-width: 900px;
  margin: auto;

  height: 420px; /* 🔥 FIX: gives container real height */
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}

/* WRAPPER */
.slider-wrapper {
  width: 100%;
  height: 100%; /* 🔥 important */
}

/* TRACK */
.slides {
  position: relative;
  width: 100%;
  height: 100%; /* 🔥 important */
}

/* BASE SLIDE */
.slide {
  position: absolute;
  top: 50%; /* 🔥 vertical center */
  left: 50%;

  width: 70%;
  max-width: 500px;

  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8); /* 🔥 fixed */
  transition: all 0.5s ease;
  border-radius: 16px;
}

/* IMAGE */
.slide img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3); /* ✨ nicer look */
}

/* ACTIVE */
.slide.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
}

/* LEFT */
.slide.prev {
  opacity: 0.5;
  transform: translate(-140%, -50%) scale(0.85);
  z-index: 2;
}

/* RIGHT */
.slide.next {
  opacity: 0.5;
  transform: translate(40%, -50%) scale(0.85);
  z-index: 2;
}

/* BUTTONS */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #003366;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.slide-btn.prev { left: -60px; }
.slide-btn.next { right: -60px; }

/* ================= TABLET ================= */
@media (max-width: 768px) {

  .slider {
    height: 300px; /* 🔥 responsive height */
    overflow: hidden;
  }

  .slide {
    width: 85%;
  }

  .slide.prev,
  .slide.next {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.3;
    filter: none;
  }

  .slide-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .slide-btn.prev { left: 10px; }
  .slide-btn.next { right: 10px; }
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {

  .about {
    padding: 40px 10px;
  }

  .slider {
    height: 350px; /* 🔥 smaller height */
  }

  .slide {
    width: 95%;
  }

  .slide-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* ================= FOOTER ================= */

.footer{
background:#003366;
color:white;
padding:60px 20px 20px 20px;
}

.footer-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-col h3,
.footer-col h4{
margin-bottom:15px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
color:#ddd;
}

.footer-col i{
margin-right:8px;
}

.social-link{
display:inline-block;
color:white;
text-decoration:none;
margin-top:5px;
}

.social-link:hover{
color:#ffd000;
}

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.1);
padding-top:15px;
font-size:13px;
color:#ccc;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

.hero-text h1{
font-size:34px;
}

.hero-buttons{
flex-direction:column;
}

}

/* PARTNERS SECTION */

.partners{
padding:80px 20px;
background:#ffffff;
text-align:center;
}

.partners h2{
color:#003366;
font-size:28px;
margin-bottom:10px;
}

.partners h3{
font-size:22px;
margin-bottom:20px;
color:#555;
}

.partners-desc{
max-width:750px;
margin:auto;
margin-bottom:40px;
font-size:16px;
color:#666;
line-height:1.6;
}

.partner-image{
max-width:450px;
margin:auto;
}

.partner-image img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* BUSINESS BENEFITS */

.business-benefits{
max-width:1000px;
margin:70px auto 0 auto;
text-align:center;
}

.benefits-title{
color:#003366;
margin-bottom:40px;
font-size:24px;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.benefit-card{
background:#ffffff;
padding:25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.06);
transition:0.25s;
}

.benefit-card:hover{
transform:translateY(-6px);
}

.benefit-card i{
font-size:32px;
color:#0073e6;
margin-bottom:10px;
}

.benefit-card h4{
color:#003366;
margin-bottom:8px;
}

.benefit-card p{
font-size:14px;
color:#666;
}




