:root {
  --primary: #00bcd4;
  --primary-dark: #0097a7;
  --dark: #111;
  --light-bg: #f5f7fa;
  --text: #333;
}


button, .btn, .plan-card button, .service-card button, .charity-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

button:hover, .btn:hover {
  background: var(--primary-dark);
}



body {
  margin: 0;
  height: 2000px;
  font-family: Arial, sans-serif;
}

/* Navbar outer */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

/* 🔥 MAIN FIX */
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  transition: 0.3s;
}

/* Shrink */
.navbar.shrink .nav-container {
  padding: 10px 20px;
}

/* Logo */
.logo img {
  height: 40px;
  background-color: rgba(255,255,255,0.5);
  padding: 5px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* 🔥 Mega Menu */
.mega-menu {
  position: absolute;
  top: 60px;
  left: -300px;
  width: 600px;
  background: #111;
  display: flex;
  justify-content: space-around;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease;
}

/* Columns */
.mega-column {
  display: flex;
  flex-direction: column;
}

.mega-column h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.mega-column a {
  padding: 5px 0;
  color: #ccc;
  font-size: 14px;
}

.mega-column a:hover {
  color: #fff;
}

/* Show Mega Menu */
.nav-links li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover underline */
.nav-links a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: var(--primary);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* 🔥 Login Button */
.login-btn {
  display: inline-block;      /* IMPORTANT */
  padding: 8px 18px;
  border: 1px solid #00e5ff;
  border-radius: 25px;
  color: var(--primary);
  line-height: 1;             /* FIX shape */
  position: relative;
  overflow: hidden;           /* clean edges */
  transition: all 0.3s ease;
}

/* Hover */
.login-btn:hover {
  background: var(--primary);
  color: #000;
}

.login-btn::after {
  display: none !important;
  content: none;
}

.nav-links a {
  position: relative;
}


.nav-links {
  align-items: center;
}

.login-btn:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 10px var(--primary), 0 0 25px var(--primary);
}

/* ===== Slider ===== */
.slider {
    position: relative;
    width: 100%;
    height: 100vh; /* full screen */
    margin-top: 50px; /* navbar height adjust */
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    
    background-size: cover;       /* full cover */
    background-position: center;  /* center fit */
    background-repeat: no-repeat;

    transition: all 1s ease-in-out;
}

/* Active slide */
.slide.active {
    left: 0;
}

/* Previous slide */
.slide.prev {
    left: -100%;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.7) 20%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.1) 100%
    );

    z-index: 1;
}

.content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
    z-index: 2;
}

.content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.content p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #ddd;
}




.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    
    font-size: 30px;
    color: white;
    cursor: pointer;
    
    animation: bounce 1.5s infinite;
    z-index: 10;

    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
}

/* Animation */
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}


.services {
    padding: 60px 20px;
    background: #f5f7fa;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    padding: 25px;
    width: 280px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    margin-bottom: 20px;
}


/* Hover Animation */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* Charity Section Fix */
.charity-section {
  padding: 100px 20px;
  background: linear-gradient(to right, #eef2f7, #dfe6ee);
}

/* Container */
.charity-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT TEXT */
.charity-text {
  flex: 1;
  max-width: 500px;
}

.charity-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.charity-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555;
}

/* BUTTON FIX */
.charity-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.charity-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.charity-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.charity-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .charity-container {
    flex-direction: column;
    text-align: center;
  }

  .charity-text h2 {
    font-size: 30px;
  }
}


/* WiFi Plans Section */
.wifi-plans {
    padding: 80px 10px;
    text-align: center;
    background: #f9f9f9;
}

.wifi-plans h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    color: #777;
    margin-bottom: 40px;
}

/* Container */
.plans-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Card */
.plan-card {
    background: #fff;
    padding: 20px;
    width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
}

/* Popular Plan */
.plan-card {
    border: 2px solid #ff6600;
}

.tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6600;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

/* Text */
.speed {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
}

.price {
    font-size: 20px;
    color: #ff6600;
    margin-bottom: 20px;
}

/* List */
.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-card ul li {
    margin: 8px 0;
}

/* Button */
.plan-card button {
    padding: 10px 20px;
    border: none;
    background: #ff6600;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.plan-card button:hover {
    background: #e65c00;
}

.plan-card:hover {
    box-shadow: 0 10px 30px rgba(255,102,0,0.2);
}

/* Pay As You Go - Blue Theme */
.paygo {
    border: 2px solid #007bff;
}

.paygo .price {
    color: #007bff;
}

.paygo button {
    background: #007bff;
}

.paygo button:hover {
    background: #0056b3;
}

/* Popular Tag Blue */
.paygo .tag {
    background: #007bff;
}

.paygo:hover {
    box-shadow: 0 10px 30px rgba(0,123,255,0.2);
}


/* Night Special Plan */
/* Night Special Plan */
.night-plan {
    background: #fff;
    color: #222;
    border: 2px solid #00b4d8;
    position: relative;
    overflow: hidden;
}

/* Moon Glow Effect */
.night-plan::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #caf0f8, #00b4d8, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 180, 216, 0.8);
}

/* Price */
.night-plan .price {
    color: #0077b6;
    font-weight: bold;
}

/* Button */
.night-plan button {
    background: #00b4d8;
    color: #fff;
    font-weight: bold;
}

.night-plan button:hover {
    background: #0096c7;
}

/* Tag */
.night-plan .tag {
    background: #00b4d8;
    color: #fff;
    font-weight: bold;
}


.day-plan {
    color: #222;
    border: none;
    position: relative;
    overflow: hidden;
    border: rgba(255, 223, 0, 0.8);
    
}

.day-plan{
    background: #fff;
    border: 2px solid rgba(255, 223, 0, 0.8);
}

/* Sun Glow Effect */
.day-plan::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #fff176, #ffb703, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 223, 0, 0.8);
}

/* Price */
.day-plan .price {
    color: #d62828;
    font-weight: bold;
}


/* Button */
.day-plan button {
    background: rgba(255, 223, 0, 0.8);
    color: #222;
    font-weight: bold;
}

.day-plan button:hover {
    background: #ffe066;
}

/* Tag */
.day-plan .tag {
    background: #ffffff;
    color: #222;
    font-weight: bold;
}



.limit {
    border: 2px solid red;
}

.limit .price {
    color: red;
}

.limit button {
    background: red;
}

.limit button:hover {
    background: red;
}

/* Popular Tag Blue */
.limit .tag {
    background: red;
}   

.limit:hover {
    box-shadow: 0 10px 30px rgba(255,0,0,0.2);
}


/* Feedback Section */
.feedback-section {
    padding: 60px 20px;
    text-align: center;
    background: #f9fafb;
}

.feedback-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.feedback-section .subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* Container */
.feedback-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cards */
.feedback-card {
    background: #fff;
    padding: 25px;
    width: 280px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feedback-card:hover {
    transform: translateY(-8px);
}

/* Message */
.feedback-card .message {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}

/* Name */
.feedback-card h3 {
    margin: 5px 0;
    color: #111;
}

/* Role */
.feedback-card span {
    font-size: 13px;
    color: #777;
}


.footer {
    background: #111;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
}

/* Legal Links */
.legal-links {
    margin-top: 15px;
    padding: 0;
}

.legal-links li {
    list-style: none;
    margin-bottom: 8px;
}

.legal-links a {
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
}

.legal-links a:hover {
    color: var(--primary);
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    background: #222;
    padding: 6px 7px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.contact-section {
    padding: 70px 20px;
    background: var(--light-bg);
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: stretch; /* ✅ important */
}

/* LEFT FORM */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form h2 {
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-form p {
    margin-bottom: 20px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;

}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00bcd4;
    outline: none;
}

/* BUTTON */
.contact-form button {
    background: var(--primary);
    color: #fff;
    padding: 14px;
    width: 90%;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: var(--primary-dark);
}

/* RIGHT MAP */
.contact-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 100%; 
    border: 0;
}

/* FORCE SAME HEIGHT */
.contact-container > div {
    height: 450px; 
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-container > div {
        height: auto;
    }

    .contact-map iframe {
        height: 300px;
    }
}


/* Login Button */
.login-btn {
  padding: 10px 20px;
  background: #00bcd4;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.login-btn:hover {
  background: #0097a7;
}

/* Popup Background */
.login-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* Show Popup */
.login-popup.active {
  display: flex;
}

/* Login Box */
.login-box {
  width: 320px;
  padding: 30px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  position: relative;
  animation: popup 0.3s ease;
}

@keyframes popup {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* Input Fields */
.input-box {
  position: relative;
  margin: 20px 0;
}

.input-box input {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  border-radius: 5px;
  outline: none;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 10px;
  color: #aaa;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
}

.input-box input:focus + label,
.input-box input:valid + label {
  top: -8px;
  font-size: 12px;
  color: #00bcd4;
  background: #111;
  padding: 0 5px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 10px;
  background: #00bcd4;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #0097a7;
}

/* Extra Text */
.extra {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

.extra a {
  color: #00bcd4;
}


/* ===== MOBILE NAVBAR ===== */

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 15px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;

        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(10px);

        flex-direction: column;
        align-items: flex-start;
        padding: 20px;

        gap: 15px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: 0.3s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        width: 100%;
    }

    /* ✅ Mega Menu Mobile Fix */
    .mega-menu {
        position: static;
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 10px 0;
        background: #000;

        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-links li.active .mega-menu {
        display: block;
    }

    .mega-column {
        margin-bottom: 10px;
    }

    /* Login button */
    .login-btn {
        width: 100%;
        text-align: center;
    }

    .content {
        left: 5%;
        right: 5%;
        top: 55%;
        max-width: 100%;
    }

    .content h1 {
        font-size: 30px;
    }

    .content p {
        font-size: 16px;
    }

    .slider {
        height: 75vh;
    }
}



.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-bottom: 5px;
}

.offer {
    color: #e63946;
    font-size: 24px;
    font-weight: bold;
}

.terms {
    
    font-size: 11px;
    color: #777;
    margin-top: 10px;
    text-align: center;
}

.plan-card ul li {
    color : #777;
    font-size: 14px;
}


/* Modal Background */
.modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
}

/* Box */
.modal-box{
    background:#fff;
    width:90%;
    max-width:500px;
    margin:8% auto;
    padding:30px;
    border-radius:14px;
    position:relative;
    animation:zoom .3s ease;
    text-align:center;
}

.modal-box h2{
    margin-bottom:15px;
}

.modal-box p{
    color:#555;
    line-height:1.8;
}

/* Close */
.close{
    position:absolute;
    top:10px;
    right:18px;
    font-size:28px;
    cursor:pointer;
    color:#111;
}

/* Animation */
@keyframes zoom{
    from{
        transform:scale(.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}



/* Extra Button Style */
#comingSoonModal button{
    margin-top:20px;
    background:#00b4d8;
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}

#comingSoonModal button:hover{
    background:#0096c7;
}