*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0f172a;
color:#f1f5f9;
line-height:1.6;
scroll-behavior:smooth;
}




/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.logo .highlight {
    color: #e11d48;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #e11d48;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
}

/* Mobile */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #1e293b;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 20px;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* HERO */
/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

.hero h1{
font-size:42px;
margin-bottom:20px;
}

.hero p{
color:#94a3b8;
margin-bottom:30px;
}

.btn{
background:#e11d48;
color:white;
padding:14px 40px;
border-radius:50px;
text-decoration:none;
transition:0.3s;
box-shadow:0 0 25px 0 0 20px rgba(225, 29, 72, 0.4);
cursor: pointer;
}

.btn:hover{
background:#e11d48;
transform:translateY(-4px);
}


.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.bg-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

/* SECTION */
.section{
padding:100px 20px;
}

.darker{
background:#111827;
}

.section-title{
text-align:center;
font-size:32px;
margin-bottom:50px;
}

/* PRICING */
.pricing-wrapper{
display:flex;
flex-direction:column;
gap:30px;
align-items:center;
}

.pricing-card{
background:#1e293b;
padding:45px 30px;
border-radius:25px;
width:100%;
max-width:320px;
text-align:center;
transition:0.4s;
box-shadow:0 25px 70px rgba(0,0,0,0.4);
}

.pricing-card:hover{
transform:translateY(-15px);
border:1px solid #e11d48;
box-shadow:0 35px 90px rgba(225,29,72,0.35);
}

.price{
font-size:34px;
font-weight:700;
color:#e11d48;
margin:20px 0;
}

.pricing-card ul{
list-style:none;
padding:0;
margin-bottom:25px;
color:#cbd5e1;
}

.pricing-card ul li{
margin:10px 0;
}

.pricing-btn{
display:inline-block;
margin-top:15px;
padding:12px 30px;
background:#e11d48;
color:#ffffff;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:0.3s;
box-shadow:0 0 20px rgba(225,29,72,0.4);
}

.pricing-btn:hover{
background:#be123c;
transform:translateY(-4px);
box-shadow:0 0 35px rgba(225,29,72,0.6);
}

/* VIDEO */
.video-grid{
display:grid;
grid-template-columns:1fr;
gap:30px;
}

.video-card{
background:#1e293b;
padding:15px;
border-radius:20px;
transition:0.4s;
}

.video-card:hover{
transform:translateY(-10px);
}

.video-card video{
width:100%;
border-radius:15px;
}

/* ABOUT */
.box{
max-width:800px;
margin:auto;
background:#1e293b;
padding:40px;
border-radius:20px;
}

.box h3{
margin-top:25px;
margin-bottom:10px;
color:#e11d48;
}

.about-list{
list-style:none;
padding:0;
margin-top:15px;
margin-bottom:20px;
}

.about-list li{
margin-bottom:12px;
}

/* TERMS */
.terms-list{
list-style:disc;
padding-left:20px;
}

/* FORM */
form{
max-width:500px;
margin:auto;
background:#1e293b;
padding:40px;
border-radius:20px;
display:flex;
flex-direction:column;
gap:20px;
}

input,select,textarea{
padding:14px;
border-radius:8px;
border:1px solid #334155;
background:#0f172a;
color:white;
}

input:focus,select:focus,textarea:focus{
outline:none;
border-color:#e11d48;
}

/* FOOTER */
footer{
text-align:center;
padding:40px;
background:#111827;
color:#94a3b8;
}

/* RESPONSIVE */
@media(min-width:768px){
.pricing-wrapper{
flex-direction:row;
flex-wrap:wrap;
justify-content:center;
}
.video-grid{
grid-template-columns:repeat(2,1fr);
}
}



@media(min-width:1200px){
.video-grid{
grid-template-columns:repeat(4,1fr);
}
.section{
padding:130px 100px;
}
}





.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}





/* Hero Buttons Layout */
.hero-main-btn{
    margin-bottom:20px;
}

.hero-secondary-btns{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

/* Secondary Button Style */
.secondary-btn:hover{
    background:transparent;
    border:2px solid #e11d48;
    box-shadow:none;
    margin-right: 110px;
    margin-left:130px;
}

.secondary-btn:hover{
    background:#e11d48;
    color:white;
}


/* ================= REVIEWS ================= */




/* ================= CHATBOT ================= */

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chatbot-toggle {
    background: #e11d48;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(225,29,72,0.6);
    transition: 0.3s;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-box {
    width: 320px;
    background: #1e293b;
    border-radius: 15px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.chatbot-header {
    background: #e11d48;
    padding: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header span {
    cursor: pointer;
}

.chatbot-messages {
    padding: 15px;
    height: 250px;
    overflow-y: auto;
    font-size: 14px;
}

.bot-message,
.user-message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 80%;
}

.bot-message {
    background: #334155;
    align-self: flex-start;
}

.user-message {
    background: #e11d48;
    align-self: flex-end;
}

.chatbot-input {
    display: flex;
    border-top: 1px solid #334155;
}

.chatbot-input input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    background: #0f172a;
    color: white;
}

.chatbot-input button {
    background: #e11d48;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    color: white;
}


.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons img {
    width: 35px;
    height: 35px;
    transition: 0.3s;
    cursor: pointer;
}

.social-icons img:hover {
    transform: scale(1.2);
}





