:root {
    --primary-color: #ffc20e;
    /* Yellow/Orange from header/hero */
    --secondary-color: #00aeef;
    /* Blue from pricing header */
    --accent-green: #28a745;
    /* Green for Start buttons */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
    --font-main: 'Hind Siliguri', sans-serif;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 20px;
    font-weight: 500;
    font-size: 15px;
}

.nav-list a:hover {
    color: var(--secondary-color);
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
}

.btn-primary:hover {
    background: #0095cc;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #fff 0%, #f0f8ff 100%);
    padding: 40px 0 60px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #f58220;
    /* Orange text */
    line-height: 1.3;
    margin-bottom: 30px;
}

.hero-content h1 .highlight {
    color: #f58220;
    font-weight: 700;
}

.video-section {
    background: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.video-header h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #333, #555);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 20px;
    color: white;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Pricing Section */
.pricing {
    padding: 0 0 60px;
    background: #f0f8ff;
    /* Light blueish bg matching bottom of hero */
}

.section-title {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 15px 0;
    margin-bottom: 40px;
}

.section-title h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

/* Pricing Card Header Updates */
.card-header {
    background: var(--primary-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.standard .card-header,
.pricing-card.premium .card-header {
    background: var(--primary-color);
}

.header-left {
    text-align: left;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #005c42;
    line-height: 1.2;
    margin-bottom: 2px;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #555;
    font-weight: 400;
    margin-left: 2px;
}

.discount-badge {
    position: static;
    /* Reset absolute positioning */
    background: #ff0000;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transform: none;
    /* Remove rotation */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.features-list {
    padding: 0;
    flex-grow: 1;
}

.features-list li {
    padding: 8px 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.features-list li:nth-child(even) {
    background: #f9f9f9;
}

.features-list li:nth-child(odd) {
    background: #e1f5fe;
    /* Slightly more visible blue for odd rows */
}

/* Addon Row (Checkbox) */
.addon-row {
    background: #f1f1f1;
    padding: 10px 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

.addon-row label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #cc0000;
    /* Red text for the addon */
    font-weight: 600;
}

.addon-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #ff0000;
}

.card-actions {
    padding: 15px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--primary-color);
}

.btn-demo {
    background: #fff9c4;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
    font-weight: 600;
}

.btn-start {
    background: var(--accent-green);
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
}

.btn-start:hover {
    background: #218838;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.partner-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.footer-bottom {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.address-box p,
.social-box p {
    margin-bottom: 8px;
    color: var(--text-light);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 0.8rem;
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .header .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .header .nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .btn {
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfdfd 0%, #f4f7f6 100%);
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300aeef' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zzM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1.5;
    min-width: 300px;
    background: #fff;
    padding-left: 20px;
}

.contact-info h4 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.contact-form h4 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item .icon {
    font-size: 1.4rem;
    color: var(--white);
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 174, 239, 0.3);
}

.info-item p {
    font-size: 1.05rem;
    color: #555;
    margin-top: 5px;
    font-weight: 500;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 4px solid #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #fcfcfc;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    background: var(--secondary-color);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
}

.contact-form button:hover {
    background: #0095cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.6);
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 30px 20px;
        gap: 40px;
    }

    .contact-form {
        padding-left: 0;
    }
}