html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* adjust based on your header height */
}

/* ===== Hero Section Styles ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #6600d3, #ef4a44);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-content img {
    height: 50px;
    object-fit: contain;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #f5f5f5;
}

.hero-btn {
    border: none;
    border-radius: 50px;
    padding: 8px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background: #ef4a44;
    color: #fff;
}

.btn-primary-custom:hover {
    background: linear-gradient(45deg, #6600d3, #ef4a44);
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    margin-left: 15px;
}

.btn-outline-custom:hover {
    background: #ef4a44;
    color: #fff;
    transform: translateY(-2px);
}

.hero-illustration {
    text-align: center;
}

.hero-illustration img {
    width: 90%;
    max-width: 500px;
    animation: float 4s ease-in-out infinite;
}

img {
    border-radius: 8px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
}

/* ===== Overview Section ===== */
.overview-section {
    background: linear-gradient(135deg, #f4f6ff, #eae4ff);
    padding: 50px 0;
    color: #222;
    position: relative;
    overflow: hidden;
}

.heading-sec img {
    height: 30px;
    object-fit: contain;
}

.heading-sec h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000080;
    margin-bottom: 20px;
}

.heading-sec p {
    max-width: 700px;
    font-size: 1.1rem;
    margin: 0px auto 40px;
    color: #444;
}

.heading-sec-white h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.heading-sec-white img {
    height: 30px;
    object-fit: contain;
}

.heading-sec-white p {
    max-width: 700px;
    font-size: 1.1rem;
    margin: 0px auto 40px;
    color: #eee;
}

/* ===== Highlight Cards ===== */
.highlight-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;

}

.highlight-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.highlight-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, #ffffff, #f2f2ff);
    box-shadow: 0 8px 30px rgba(102, 0, 211, 0.15);
}

.highlight-card .highlight-icon {
    font-size: 2.8rem;
    background: linear-gradient(45deg, #6600d3, #ef4a44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.highlight-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000080;
    margin-bottom: 10px;

}

.highlight-desc {
    color: #111;
    font-size: 0.95rem;

}

/* === Smartnous Overview Section New CSS === */

.smartnous-overview-wrap {
    padding: 70px 0;
}

.smartnous-overview-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.smartnous-overview-heading p {
    max-width: 750px;
    margin: 12px auto 0;
    color: #555;
    font-size: 17px;
}

/* Tabs */
.smartnous-tab-menu .nav-link {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    background: #f1f5ff;
    margin: 0 8px;
    color: #000080;
    font-weight: 600;
    transition: 0.3s;
}

.smartnous-tab-menu .nav-link.active {
    background: #000080;
    color: #fff;
}

/* Cards */
.smartnous-feature-card {
    padding: 20px 22px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.smartnous-feature-card:hover {
    transform: translateY(-4px);
}

.smartnous-feature-card h4 {
    font-size: 19px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #000080;
}

.smartnous-feature-card p {
    font-size: 15px;
    color: #000;
}

/* Badge Image */
.smartnous-badge-img img {
    max-width: 320px;
}

/* ===== Key Features Section ===== */
.features-section {
    background: linear-gradient(135deg, #ffffff, #f3f4ff);
    padding: 50px 0;
    text-align: center;
}



.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(102, 0, 211, 0.1);
    display: inline-block;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, #ffffff, #f8f7ff);
    box-shadow: 0 10px 25px rgba(102, 0, 211, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #6600d3, #ef4a44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000080;
    margin-bottom: 10px;
}

.feature-text {
    color: #111;
    font-size: 0.95rem;
}

/* ===== How It Works Section ===== */
.howitworks-section {
    background: linear-gradient(45deg, #ef4a44, #6600d3);
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}



.school-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 40px 25px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #ef4a44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.step-desc {
    font-size: 0.95rem;
    color: #fff;
}

/* ===== Arrow Connector ===== */
.process-arrow {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 30px;
    animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .process-arrow {
        display: none;
    }
}


/* ===== Dashboard Section ===== */
.dashboard-section {
    background: linear-gradient(135deg, #f4f6ff, #eae4ff);
    padding: 100px 0;
    text-align: center;
}

.dashboard-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000080;
    margin-bottom: 20px;
}

.dashboard-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
}

.dashboard-img-wrapper {
    display: inline-block;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.dashboard-img-wrapper:hover {
    transform: scale(1.02);
}

.dashboard-img-wrapper img {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .dashboard-section {
        padding: 70px 20px;
    }
}

/* ===== Benefits Section ===== */
.benefits-section {
    background: linear-gradient(135deg, #ffffff, #f4f4ff);
    padding: 50px 0;
}

.benefits-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000080;
    margin-bottom: 20px;
}

.benefits-section p.intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
}

.benefits-section img {
    height: 30px;
    object-fit: contain;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.benefit-list li i {
    font-size: 1.5rem;
    color: #ef4a44;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefits-illustration img {
    width: 100%;
    /* max-width: 500px; */
    border-radius: 20px;
    height: auto;
    object-fit: cover;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.benefits-illustration img:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .benefits-section {
        padding: 70px 20px;
    }

    .benefits-illustration {
        margin-top: 40px;
        text-align: center;
    }

    .benefits-illustration img {
        height: auto;
    }
}


.testimonials-section {
    background: linear-gradient(135deg, #ef4a44 10%, #6600d3 90%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
}

.featured {
    border: 2px solid #fff;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f5f5f5;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.testimonial-user h5 {
    margin: 0;
    font-weight: 600;
}

.testimonial-user span {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ===== Pricing Section ===== */
.pricing-section {
    background: linear-gradient(135deg, #f4f6ff, #eae4ff);
    padding: 50px 0;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000080;
    margin-bottom: 20px;
}

.pricing-section p.intro {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(102, 0, 211, 0.15);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6600d3;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ef4a44;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: #6600d3;
    margin-right: 10px;
    flex-shrink: 0;
}

.pricing-btn {
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #6600d3, #ef4a44);
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: linear-gradient(45deg, #ef4a44, #6600d3);
    transform: translateY(-2px);
}

a {
    text-decoration: none;
}

/* ===== CTA Section ===== */
.cta-section {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #6600d3, #000080);
    padding: 80px 50px;
    color: #fff;
}

/* Left Column - Key Points */
.cta-left {
    flex: 1 1 50%;
    padding-right: 30px;
    min-width: 300px;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-left ul {
    list-style: none;
    padding: 0;
}

.cta-left ul li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.cta-left ul li .icon {
    width: 35px;
    height: 35px;
    background: #ef4a44;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 16px;
}

/* Right Column - Form */
.cta-right {
    flex: 1 1 50%;
    min-width: 300px;
}

.cta-form {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: #000;
}

.cta-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 6px 15px 6px 45px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.cta-form select {
    padding-left: 15px;
}

.cta-form textarea {
    resize: none;
}

/* Icon inside input */
.cta-form .input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #6600d3;
}

/* Button */
.cta-form button {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(45deg, #6600d3, #ef4a44);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-form button:hover {
    background: linear-gradient(45deg, #ef4a44, #6600d3);
}

/* tag section */

.main-heading {
    font-size: 34px;

}

.sub-heading {
    opacity: 0.9;
    font-size: 18px;
}

/* Tag wrapper */
.tag-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* Tag style */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hover */
.tag:hover {
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Colors */
.green {
    background: #2ecc71;
}

.orange {
    background: #ff7a45;
}

.blue {
    background: #3498db;
}

.pink {
    background: #ff5fa2;
}

.purple {
    background: #9b59b6;
}

.red {
    background: #e74c3c;
}

.teal {
    background: #1abc9c;
}

.brown {
    background: #8e5b3c;
}

.sky {
    background: #00bcd4;
}

.gold {
    background: #dea250;
}

.indigo {
    background: #3f51b5;
}

.coral {
    background: #ff6f61;
}

.lime {
    background: #7cb342;
}

.dark {
    background: #2c3e50;
}

.cyan {
    background: #00acc1;
}

.violet {
    background: #7e57c2;
}

/* Responsive */
@media (max-width:768px) {
    .tag {
        font-size: 13px;
        padding: 8px 14px;
    }
}


/* Responsive */
@media (max-width: 900px) {
    .cta-section {
        flex-direction: column;
        padding: 50px 20px;
    }

    .cta-left,
    .cta-right {
        flex: 1 1 100%;
        padding-right: 0;
    }

    .cta-left {
        margin-bottom: 40px;
    }
}