/* General Setup */

.card-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:40px;
}

.card{
    border-radius:20px;
    padding:30px;
    text-align:center;
    color:#fff;
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
}

.card-cyan{
    background:linear-gradient(135deg,#00c6ff,#0072ff);
}

.card-magenta{
    background:linear-gradient(135deg,#ff0080,#7928ca);
}

.card-yellow{
    background:linear-gradient(135deg,#ffb300,#ff6f00);
}

.speed{
    font-size:40px;
    font-weight:bold;
    margin:20px 0;
}

.price{
    font-size:28px;
    font-weight:bold;
    margin-bottom:20px;
}

.card ul{
    list-style:none;
    padding:0;
}

.card ul li{
    margin:10px 0;
}

.order-btn{
    margin-top:20px;
    padding:12px 25px;
    border:none;
    border-radius:50px;
    background:#fff;
    color:#111;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.order-btn:hover{
    background:#000;
    color:#fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #0f0f1a;
    color: #fff;
}

/* Header Navbar */
header {
    background: rgba(15, 15, 26, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff007f;
}

.logo { font-size: 30px; font-weight: 800; }
.logo span { color: #00f0ff; text-shadow: 0 0 10px #00f0ff; }
nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 25px; }
nav ul li a { color: #fff; text-decoration: none; font-weight: 600; transition: 0.3s; text-transform: uppercase; }
nav ul li a:hover { color: #ff007f; text-shadow: 0 0 10px #ff007f; }

/* --- COLORFUL SLIDER STYLES (NEW) --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Bright Gradients For Slider Backgrounds */
.slide1 { background: linear-gradient(135deg, #1f1c2c, #928dab); }
.slide2 { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.slide3 { background: linear-gradient(135deg, #1d0628, #4d0e4a); }

.slide-content {
    padding: 0 20px;
    max-width: 800px;
}

.slide h1 {
    font-size: 55px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(to right, #00f0ff, #ff007f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.slide p {
    font-size: 22px;
    margin-bottom: 35px;
    color: #ddd;
    animation: fadeInUp 1s ease-out;
}

.btn {
    background: linear-gradient(90deg, #ff007f, #7928ca);
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 0 15px #ff007f;
    transition: 0.3s;
    display: inline-block;
}

.btn:hover { transform: scale(1.05); box-shadow: 0 0 25px #00f0ff; }

/* Slider Controls (Buttons) */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background: #ff007f;
    border-color: #ff007f;
    box-shadow: 0 0 15px #ff007f;
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

/* Slider Dots */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active, .dot:hover {
    background-color: #00f0ff;
    box-shadow: 0 0 8px #00f0ff;
    width: 25px;
    border-radius: 10px;
}

/* Slide Text Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- COMMON ENTITIES --- */
h2 { font-size: 40px; text-transform: uppercase; letter-spacing: 1px; }
.section-subtitle { font-size: 16px; color: #bbb; margin-bottom: 40px; }

/* Packages Section */
.packages { padding: 80px 10%; text-align: center; background: #14142b; }
.packages h2 { color: #00f0ff; text-shadow: 0 0 10px rgba(0, 240, 255, 0.3); }
.card-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.card { padding: 40px 30px; border-radius: 20px; width: 320px; color: #fff; transition: 0.4s; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.card:hover { transform: translateY(-15px) scale(1.03); }

.card-cyan { background: linear-gradient(135deg, #00f0ff 0%, #0072ff 100%); box-shadow: 0 0 20px rgba(0,240,255,0.4); }
.card-magenta { background: linear-gradient(135deg, #f107a3 0%, #7b2ff7 100%); box-shadow: 0 0 20px rgba(241,7,163,0.4); }
.card-yellow { background: linear-gradient(135deg, #ff9900 0%, #ff5e62 100%); box-shadow: 0 0 20px rgba(255,153,0,0.4); }

.card h3 { font-size: 26px; margin-bottom: 15px; text-transform: uppercase; }
.speed { font-size: 38px; font-weight: 800; margin-bottom: 15px; }
.price { font-size: 22px; font-weight: 600; background: rgba(255,255,255,0.2); padding: 8px; border-radius: 10px; margin-bottom: 25px; }
.card ul { list-style: none; text-align: left; margin-bottom: 30px; }
.card ul li { margin-bottom: 12px; font-size: 16px; }
.order-btn { background: #fff; color: #111; border: none; padding: 12px 25px; font-size: 16px; font-weight: bold; border-radius: 25px; cursor: pointer; width: 100%; transition: 0.3s; }
.order-btn:hover { background: #111; color: #fff; }

/* Media Section */
.media-section { padding: 80px 10%; text-align: center; background: #0f0f1a; }
.media-section h2 { color: #ff007f; text-shadow: 0 0 10px rgba(255, 0, 127, 0.3); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }
.media-box { height: 200px; border-radius: 15px; display: flex; justify-content: center; align-items: center; font-size: 18px; font-weight: bold; cursor: pointer; transition: 0.4s; text-transform: uppercase; }

.img-1 { background: linear-gradient(45deg, #11998e, #38ef7d); box-shadow: 0 5px 15px rgba(56,239,125,0.4); }
.img-2 { background: linear-gradient(45deg, #ff9900, #f5af19); box-shadow: 0 5px 15px rgba(245,175,25,0.4); }
.img-3 { background: linear-gradient(45deg, #7f00ff, #e100ff); box-shadow: 0 5px 15px rgba(225,0,255,0.4); }
.img-4 { background: linear-gradient(45deg, #ff00cc, #333399); box-shadow: 0 5px 15px rgba(255,0,204,0.4); }
.media-box:hover { transform: scale(1.05) rotate(2deg); }
.media-box span { background: rgba(0, 0, 0, 0.6); padding: 8px 15px; border-radius: 5px; }

/* Contact Section */
.contact-section { padding: 80px 10%; background: linear-gradient(135deg, #2b1055, #7597de); }
.contact-container { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: center; }
.contact-info { flex: 1; min-width: 300px; }
.contact-info h2 { color: #fff; margin-bottom: 20px; }
.info-item { font-size: 20px; margin-bottom: 15px; background: rgba(255, 255, 255, 0.1); padding: 15px; border-radius: 10px; border-left: 5px solid #00f0ff; }
.contact-form-box { flex: 1; min-width: 300px; background: rgba(0, 0, 0, 0.7); padding: 40px; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.5); border: 2px solid #00f0ff; }
.contact-form-box input, .contact-form-box textarea { width: 100%; padding: 15px; margin-bottom: 20px; background: #222; border: 2px solid #444; border-radius: 10px; color: #fff; font-size: 16px; transition: 0.3s; }
.contact-form-box input:focus, .contact-form-box textarea:focus { border-color: #ff007f; outline: none; box-shadow: 0 0 10px #ff007f; }
.submit-btn { width: 100%; padding: 15px; background: linear-gradient(90deg, #00f0ff, #0072ff); color: white; border: none; font-size: 18px; font-weight: bold; border-radius: 10px; cursor: pointer; box-shadow: 0 5px 15px rgba(0,240,255,0.4); transition: 0.3s; }
.submit-btn:hover { background: linear-gradient(90deg, #ff007f, #7b2ff7); box-shadow: 0 5px 15px rgba(255,0,127,0.4); }

/* Footer */
footer { background: #0b0b12; text-align: center; padding: 25px; border-top: 2px solid #00f0ff; }
