/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Body */
body {
    background-color: #f9fbff;
    color: #0f172a;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 300px;
    height: auto;
}
/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #0f172a;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #2D6CDF;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #2D6CDF, #0F172A);
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero span {
    color: #FFD700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

.cta-btn {
    background: #FFD700;
    color: #0F172A;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #ffc107;
}

/* Packages Section */
.packages {
    text-align: center;
    padding: 80px 20px;
}

.packages h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.package-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.package-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px 25px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.package-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.package-card p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.package-card h4 {
    font-size: 24px;
    color: #2D6CDF;
    margin-bottom: 18px;
}

.package-card .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #2D6CDF;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
}

.package-card .btn:hover {
    background: #1e4fad;
}

/* Highlight Middle Package */
.popular {
    border: 2px solid #FFD700;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #0F172A;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    margin-left: 5px;
}

footer a:hover {
    color: #ffc107;
}

/* 📱 Responsive for Mobile & Tablets */
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        padding: 15px 25px;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .package-container {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        width: 90%;
    }

    .logo {
        width: 70px;
    }

    .logo-text {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .logo {
        width: 55px;
    }

    .logo-text {
        font-size: 22px;
    }
}
/* Timer Section */
.timer {
    text-align: center;
    margin: 50px auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2D6CDF, #0F172A);
    color: white;
    border-radius: 20px;
    max-width: 900px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.timer h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.time-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-radius: 15px;
    min-width: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.time-card span {
    display: block;
    font-size: 40px;
    font-weight: 700;
    animation: pulse 1s infinite;
    color: #FFD700;
}

.time-card p {
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    color: white;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive for Tablets and Phones */
@media (max-width: 1024px) {
    .timer h2 { font-size: 32px; }
    .time-card span { font-size: 36px; }
}

@media (max-width: 768px) {
    .timer { padding: 30px 15px; }
    .timer h2 { font-size: 28px; }
    .countdown { flex-direction: column; gap: 15px; }
    .time-card span { font-size: 32px; }
    .time-card p { font-size: 14px; }
}
/* =======================
   FOOTER SECTION
======================= */
footer {
    background-color: #0F172A;
    color: white;
    padding: 40px 20px;
    margin-top: 50px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;

}
#he{
    color: #ffc107
}
.footer-info {
    flex: 1;
    min-width: 280px;
}

.footer-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #FFD700;
}

.footer-info ul {
    list-style: none;
    padding-left: ;
    margin-bottom: 15px;
}

.footer-info ul li {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.footer-info .contact {
    margin-top: 10px;
    font-size: 15px;
}

.footer-info .contact a {
    color: #2D6CDF;
    font-weight: bold;
    text-decoration: none;
}

.footer-info .contact a:hover {
    color: #FFD700;
}

/* Right side - Social share */
.footer-share {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.footer-share h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FFD700;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.15);
}
/* --- Footer small fixes: contact under icons + tighter ol spacing --- */

/* Ensure social icons line up and contact sits below them */
.footer-right .social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center; /* centered in the right column */
  margin-bottom: 8px;      /* small gap to contact */
}

/* Make the contact line a block and move it under icons */
.footer-right .contact,
.footer-right p.contact {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: #FFD700;
  font-weight: 600;
}

/* Link style for the telegram username (contact) */
.footer-right .contact a,
.footer-right p.contact a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 700;
}
.footer-right .contact a:hover,
.footer-right p.contact a:hover {
  color: #ffc107;
}

/* Make ordered list numbers closer to text */
.footer-info ol {
  list-style-position: inside;   /* numbers sit inside, closer to text */
  padding-left: 0.6rem;          /* small left padding */
  margin: 0;
}

.footer-info ol li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 15px;
}

/* Small screens: stack nicely and keep spacing */
@media (max-width: 768px) {
  .footer-container { padding: 20px; }
  .footer-right .social-icons { justify-content: center; gap: 14px; }
  .footer-right .contact { text-align: center; margin-top: 10px; }
  .footer-info ol { padding-left: 0.4rem; }
}


/* Bottom bar */
.footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Form Section */
.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

/* Center the form container */
.form-container {
    max-width: 400px; /* Set a nice width */
    margin: 60px auto; /* Center horizontally */
    background: #ffffff; /* White background */
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    text-align: center; /* Center the text inside */
}

/* Form heading */
.form-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #222;
    font-weight: bold;
}

/* Input fields */
.form-container .input-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.form-container input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-container input:focus {
    border-color: #2d6cdf;
}

/* Password eye icon */
.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 38px;
    cursor: pointer;
    color: #666;
    font-size: 18px;
}

/* Buttons */
.form-container .btn {
    width: 100%;
    background-color: #2d6cdf;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.form-container .btn:hover {
    background-color: #1e4bb5;
}

/* Redirect text */
.form-container .redirect {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.form-container .redirect a {
    color: #2d6cdf;
    text-decoration: none;
    font-weight: bold;
}

.form-container .redirect a:hover {
    text-decoration: underline;
}

/* Make form responsive */
@media (max-width: 600px) {
    .form-container {
        max-width: 90%;
        margin: 40px auto;
        padding: 20px;
    }
}


.form-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s;
}

.input-group input:focus {
    border-color: #007bff;
    outline: none;
}

.form-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.form-btn:hover {
    background-color: #0056b3;
}

.form-link {
    margin-top: 15px;
    font-size: 14px;
}

.form-link a {
    color: #007bff;
    text-decoration: none;
}

.form-link a:hover {
    text-decoration: underline;
}
#tsila {
    text-align: center ;
    color:#007bff;
}