/* ==================================
   Global Styles & Variables
   ================================== */
:root {
    --primary-color: #f9c80e;
    --secondary-color: #1a1a2e;
    --bg-color: #0f0f1a;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================================
   Header & Navbar
   ================================== */
.header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
}

.logo i {
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 200, 14, 0.4);
}

/* ==================================
   Hero Section
   ================================== */
.hero {
    background: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.9)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0.5rem;
}

.sub-headline {
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.hero .cta-button {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* ==================================
   General Sections & Cards
   ================================== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.learn-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.learn-card:hover {
    transform: translateY(-10px);
}

.learn-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.learn-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.promise {
    background-color: var(--secondary-color);
    text-align: center;
}

.promise h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.audience-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.audience-list li {
    background-color: var(--secondary-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.audience-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
}

.final-cta {
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* ==================================
   ✅ FLOATING ACTION BUTTON (GET FREE DEMO)
   ================================== */
.floating-button {
    position: fixed; /* YEH LINE BUTTON KO SCREEN PAR CHIPKA DETI HAI */
    bottom: 50px;    /* Neeche se 25px upar */
    right: 25px;     /* Right se 25px andar */
    background: linear-gradient(45deg, #FFC107, #FF9800);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Yeh button hamesha sabse upar rahega */
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite; /* Dheere-dheere hilne ka animation */
}

.floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
    animation-play-state: paused;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}


/* ==================================
   Footer
   ================================== */
.footer {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ==================================
   RESPONSIVE DESIGN (FOR MOBILE)
   ================================== */
@media (max-width: 768px) {
    .section-title,
    .final-cta h2 {
        font-size: 2rem;
    }
    .promise h2 {
        font-size: 1.5rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .sub-headline {
        font-size: 1.1rem;
    }
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .floating-button {
        padding: 12px 20px;
        font-size: 14px;
        bottom: 70px;
        right: 20px;
    }
}