* {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    box-sizing: border-box;
}
:root{
    --primary-color: #9a16ca;
    --secondary-color: #6c1dbe;
    --text-color: #101418;
    --accent-color: #ecddff;
    --button-color: #f9105e;
    --border-color: #e5e7eb;
}
a{
    text-decoration: none;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
h2{
    color: var(--secondary-color);
    font-size: 36px;
}
p {
    margin-bottom: 0;
}
.notice-bar {
    width: 100%;
    padding: 8px 18px;
    margin-bottom: 12px;
    text-align: center;

    /* Smooth animated gradient */
    background: linear-gradient(
        90deg,
        var(--secondary-color),
        var(--primary-color),
        var(--secondary-color)
    );
    background-size: 250% 250%;
    animation: slideGradient 2s ease-in-out infinite;

    color: #ffffff;
    position: relative;

    /* Premium soft glow effect */
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.notice-bar p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;

    /* Soft fade animation when it loads */
    animation: fadeIn 0.6s ease;
}

.notice-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.notice-link:hover {
    color: #ffe7ff;
}

/* 🔥 Gradient Animation - smoother, softer */
@keyframes slideGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 120% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ✨ Text fade-in for better UX */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 📱 Mobile Optimization */
@media(max-width: 480px) {
    .notice-bar {
        padding: 8px 10px;
        background-size: 220% 220%; /* reduce movement */
    }

    .notice-bar p {
        font-size: 13px;
    }
}


.main-header.sticky .notice-bar{
    display: none;
}
.main-header {
    padding: 10px 0;
    padding-top: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Layout */
.head_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 140px;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu ul {
    display: flex;
    gap: 15px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
}

.contact_info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.order-btn {
    background: var(--button-color);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #298735;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
}

/* Hamburger Icon */
.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* Close Button in Mobile Menu */
.close-menu {
    background: none;
    border: none;
    font-size: 26px;
    color: #071d37;
    position: absolute;
    top: 18px;
    right: 18px;
    cursor: pointer;
    display: none;
}

/* Dark Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    z-index: 998;
}

/* When menu is open */
.nav-open .overlay {
    display: block;
}

.nav-open .nav-menu {
    left: 0;
}

/* Prevent background scrolling */
.nav-open {
    overflow: hidden;
}

/* =================hero section-================== */
.hero {
    background: var(--secondary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 78%);
    color: #ffffff;
    padding: 100px 0;
    padding-top: 200px;
}
.hero-title{
    font-size: 40px;
    font-weight: 600;
}

.hero-usp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.hero-usp .info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-usp .info-box i {
    font-size: 26px;
    color: #ffffff;
}

.hero-usp .info-box h5 {
    font-size: 14px;
    margin-bottom: 0;
}

.hero-usp .info-box p {
    font-size: 12px;
    margin-bottom: 0;
}

.hero_review_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    background-color: #ffffff;
    padding: 10px 35px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero_review_wrap .r_card {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero_review_wrap .r_card .content,
.info-text {
    line-height: 12px;
}

.hero_review_wrap .r_card span {
    font-size: 18px;
    line-height: 22px;
    color: #2A2A2A;
    text-align: left;
    display: block;
}

/* ============services============ */
.section_name {
    background-color: var(--accent-color);
    border-radius: 30px 30px 30px 30px;
    padding: 4px 22px 4px 22px;
    font-size: 14px;
    color: var(--secondary-color);
}

.services_wrap {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.services_wrap .service_card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.service_card .service-name {
    text-align: center;
    padding: 10px 0;
}

.service-name h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--secondary-color);
}

/* ===============about_us============ */
.about_us .about_para {
    padding-left: 20px;
    border-left: 3px solid var(--button-color)
}

.about_us .about_list li {
    margin-bottom: 20px;
    display: block;
}

.about_us .about_list li i {
    padding: 3px 5px;
    margin-right: 5px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

/* ============counter============= */
.counter_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.counter-icon {
    font-size: 45px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.counter {
    font-weight: 700;
    font-size: 40px;
    color: #222121;
}

.counter_wrap .counter-box {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: #bebebe33 0px 2px 10px 0px;
}

.counter-text {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: -5px;
    color: #555;
}

/* =============subject=========== */
.subject-section {
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

/* Purple badge */
.bg-light-purple {
    background: #e6dbff;
}

.text-purple {
    color: #6a4ff6;
}

/* Decorative blur circles */
.subject-section::before,
.subject-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #e8e2ff;
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
}

.subject-section::before {
    top: -80px;
    right: 50px;
}

.subject-section::after {
    bottom: -60px;
    right: 200px;
}

/* Left side border text box */
.left-border-text {
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
    color: #555;
    font-size: 15px;
}

/* Button */
.btn-pink {
    background: var(--button-color);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-pink:hover {
    background: #e01c61;
    color: #fff;
}

/* Subject Cards */
.subject-card {
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    padding: 25px;
    box-shadow: 0px 6px 25px rgba(122, 90, 244, 0.1);
    position: relative;
    z-index: 1;
    transition: 0.3s ease;
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 35px rgba(122, 90, 244, 0.15);
}

/* icons */
.icon-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0px 0px 5px #e3d8ff);
}

/* Title */
.section-title {
    line-height: 1.3;
    font-size: 40px;
}



.section-heading {
    font-size: 32px;
    color: #333;
}

/* ============feature=========== */

.underline {
    width: 120px;
    height: 3px;
    background: #f0c14b;
    margin-top: 8px;
    margin-bottom: 10px;
}

.features-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.features-header {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 16px;
}

.features-list {
    max-height: 300px;
    overflow-y: auto;
    /* padding: 10px 15px; */
}

.features-list ul li {
    padding: 10px 20px;
    border-bottom: 3px solid #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f9f9f9;
    color: #333;
}

.features-list ul li i {
    color: var(--primary-color);
}

.btn-order {
    background: #f7c948;
    color: #000;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 8px;
    border: none;
}

.btn-order:hover {
    background: #ebbd35;
}

/* Scrollbar Styling Optional */
.features-list::-webkit-scrollbar {
    width: 6px;
}

.features-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}


/* ======steps========= */
/* left step number styling */
.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2db36c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

/* wrapper for number + vertical line */
.step-number-wrapper {
    text-align: center;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* vertical line for steps */
.step-line {
    height: 110px;
    border-left: 2px dotted #2db36c;
    margin-top: 5px;
}

/* spacing between steps */
.step-box {
    margin-bottom: 25px;
}

/* blue button */
.order-button {
    background: #1a73e8;
    color: #fff;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
}

/* right green box */
.right-box {
    border: 1px solid var(--border-color);
    color: #fff;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
}

/* inner image */
.right-img {
    width: 100%;
    border-radius: 12px;
}

/* ==========unique-box=========== */
.feature-box {
    border-radius: 14px;
    background: #fff;
}

.feature-list li,
.compare-list li {
    padding: 6px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .3s;
}

.feature-list li:hover,
.compare-list li:hover {
    transform: translateX(10px);
}

.feature-list i {
    font-size: 18px;
    color: #0d6efd;
}

.our-service-box {
    background: #001f3f;
    padding: 12px;
    border-radius: 12px 12px 0 0;
    font-size: 20px;
}

.compare-list li i.yes {
    color: #0a8f2f;
    font-size: 16px;
}

.compare-list li i.no {
    color: #d93025;
    font-size: 16px;
}

.feature-box ul {
    background: #f8fbff;
    padding: 20px;
    border-radius: 0 0 14px 14px;
}

.compare-list {
    background: #f8fbff;
    padding: 20px;
    border-radius: 14px;
}


.review-card {
    background: linear-gradient(135deg, var(--primary-color),  var(--secondary-color));
    color: white;
    border-radius: 18px;
    position: relative;
    min-height: 300px;
}

.review-card::before {
    content: "❝";
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 80px;
    opacity: 0.15;
}

.stars i {
    color: #ffdd57;
}

.slider-controls button {
    background: none;
    border: none;
    margin: 0 10px;
}

.slider-controls i {
    font-size: 45px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: 0.3s ease;
}



/* =================faq============= */
.faq-section {
    background: #F5F5F5;
}

.faq-item {
    border: 1px solid #cdcdcd;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
}

.faq-question {
    padding: 12px 16px;
    margin: 0;
    font-size: 16px;
    color: #343434;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.4s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 20px;
    color: #444;
}

.hire-tutor-section .tutor-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    border: 1px solid var(--border-color);
}

.hire-tutor-section .tutor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



.hire-tutor-section .btn-success {
    background-color: #27c26c;
    border-color: #27c26c;
    font-weight: 600;
    border-radius: 8px;
}

.hire-tutor-section .btn-success:hover {
    background-color: #1ea85c;
}



/* ==============footer============== */

/* Visibility */
.hide-mobile {
    display: block;
}

.hide-desktop {
    display: none;
}



/* WhatsApp Bar */
.whatsapp-section {
    background: #fff;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    padding: 18px 0;
    margin-bottom: 20px;
}

.whatsapp-content {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.whatsapp-content a {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #222;
}

.whatsapp-content i {
    font-size: 24px;
    color: green;
}



/* Desktop Columns */
.desktop-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-column {
    width: calc(15% - 20px);
}

.footer-column h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

/* Mobile Footer Accordion */
.footer-mobile .footer-accordion {
    border-bottom: 1px solid #ddd;
    padding: 0;
}

.accordion-btn {
    width: 100%;
    background: none;
    border: 0;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.accordion-content {
  list-style: none;
  margin: 0;
  padding: 0 0;
  max-height: 0;           /* collapsed */
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.32s ease;
}

/* when open */
.accordion-content.open {
  max-height: 600px;      
  opacity: 1;
}


.accordion-content li {
    margin: 8px 0;
}
.accordion-content li:last-child {
    padding-bottom: 14px;
}
.accordion-content a {
    color: #444;
    text-decoration: none;
    font-size: 14px;
}

/* Bottom Footer */
.bottom-footer {
    border-top: 1px solid #ccc;
    padding: 20px 0;
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    width: 130px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;     /* spacing between icons */
}

/* icon wrapper link */
.social-links a  i{
    width: 30px;
    height: 30px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 5px;
    color: var(--secondary-color);               /* icon color */
    transition: all 0.25s ease;
}

/* hover effect */
.social-links a i:hover {
    background: var(--secondary-color);        /* bootstrap primary color */
    color: #fff;                /* icon turns white */
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}
    
