/* ====================================================
   JKSSB TOPPERS - HOMEPAGE DEDICATED STYLING (index.css)
   ==================================================== */

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #334155;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}


.nav-btn {
    color: #cbd5e1;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    background-color: #0f172a;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-lg {
    padding: 12px 28px;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* Trust Indicators Cards */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 25px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}

.trust-value {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 4px;
}

.highlight-text {
    font-size: 1.6rem !important;
    padding-top: 5px;
}

.trust-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
}

/* Footer Section */
.footer {
    background-color: #0b0f19;
    border-top: 1px solid #1e293b;
    padding: 40px 20px;
    text-align: center;
    color: #94a3b8;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #60a5fa;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.footer-logo {
    margin: 10px 0;
}

.copyright {
    font-size: 0.85rem;
    color: #64748b;
}

.made-with {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
}

/* ====================================================
   MOBILE RESPONSIVE OPTIMIZATION (Below 768px)
   ==================================================== */
@media screen and (max-width: 768px) {
    /* 1. Header ko patla aur ek hi line mein rakhna */
    .nav-container {
        height: auto !important;
        padding: 8px 12px !important;
        flex-direction: row !important; /* Logo aur buttons ko aamne-saamne rakhega */
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* 2. Logo ka size mobile ke hisaab se adjust karna */
    .logo svg {
        width: 130px !important; 
        height: 35px !important;
    }

    /* 3. Buttons ko Top-Right mein chhote size mein set karna */
    .nav-links {
        width: auto !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-end !important;
        gap: 5px !important;
        max-width: 55% !important; /* Buttons logo ke upar na chadein */
    }

    /* 4. Buttons ka size chhota karna */
    .nav-btn, .nav-links .btn-primary {
        text-align: center !important;
        padding: 4px 8px !important; /* Padding ekdum kam kar di */
        font-size: 11px !important; /* Text chhota kar diya */
        width: auto !important; /* Full width limit hata di */
        border-radius: 4px !important;
        margin: 0 !important;
    }

    /* 5. Header patla hone ke baad Hero Section ki jagah adjust karna */
    .hero-section {
        padding-top: 120px !important; /* Ab content upar chhupega nahi */
        padding-bottom: 50px !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }

    .trust-indicators {
        gap: 15px !important;
        padding: 15px !important;
    }

    .trust-item {
        min-width: 90px !important;
    }

    .trust-value {
        font-size: 1.4rem !important;
    }
}
/* Floating Container ko screen ke bottom-right par fix karne ke liye */
.floating-social-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000; /* Taaki yeh hamesha baqi elements ke upar rahe */
}

/* Button ki basic styling */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%; /* Ekdum gol (circle) banane ke liye */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

/* WhatsApp Icon Colors */
.float-btn.whatsapp {
  background-color: #25D366;
}

/* Telegram Icon Colors */
.float-btn.telegram {
  background-color: #0088cc;
}

/* Hover Effects - Jab mouse upar jayega toh thoda bada hoga aur glow karega */
.float-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
  color: white;
}
