:root {
    --brand: #ff7a00;
    /* Purple brand color */
}

/* Navbar */
.navbar-brand img {
    width: 200px;
}

.nav-link {
    font-size: 1.1rem;
    margin-left: 1rem;
    font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
    color: var(--brand) !important;
}

/* Hero Section */
.hero {
    background: #f8f9fa;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--brand);
}

.btn-brand {
    background: var(--brand);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
}

.btn-brand:hover {
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
    color: #fff;
}

/* Image Animation */
.animated-img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Brand Button */
.btn-brand {
    background-color: var(--brand);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-brand:hover {
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
    /* darker purple */
    color: #fff;
}

/* Outline Button */
.btn-outline-brand {
    border: 2px solid var(--brand);
    color: var(--brand);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-brand:hover {
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
    color: #fff;
}

.text-purple {
    color: #ff7a00;
    /* strong purple */
}

.award-badge {
    width: 140px;
    border: 2px solid #ff7a00;
    border-radius: 8px;
}

.about-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #ff7a00;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.2);
}

/* Card container */
.services-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.services-section p.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border: 2px solid #ff7a00;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
    color: #fff;
}

.service-card i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ff7a00;
    transition: color 0.3s ease;
}

.service-card:hover i {
    color: #fff;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.service-card:hover p {
    color: #fff;
}

.service-card button {
    background-color: #ff7a00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card:hover button {
    background-color: #fff;
    color: #ff7a00;
    border: 1px solid #ff7a00;
}


/* plans */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border: 2px solid #ff7a00;
    border-radius: 12px;
    width: 250px;
    padding: 30px 20px;
    text-align: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    cursor: pointer;
}

.pricing-card:hover,
.pricing-card.active {
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
    color: #fff;
    transform: translateY(-10px);
}

.pricing-card:hover ul li {
    color: #fff;
}

.pricing-card h3 {
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pricing-card ul li {
    margin: 10px 0;
}

/* Choose Plan button */
.choose-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ff7a00;
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.pricing-card.active .choose-btn,
.pricing-card:hover .choose-btn {
    background: #fff;
    color: #ff7a00;
}

/* Responsive: stack cards on smaller screens */
@media (max-width: 992px) {
    .pricing-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}

/* why */
/* Why Section */
.why-section {
    background: linear-gradient(135deg, #f3f0ff, #dfdfe1);
    padding: 80px 20px;
}

.section-title {
    color: #ff7a00;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ff7a00;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 50px;
}

/* Reasons Container */
.reasons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

/* Reason Card */
.reason-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reason-card i {
    font-size: 2.5rem;
    color: #ff7a00;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.reason-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Hover Effect */
.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.reason-card:hover i {
    transform: rotate(15deg) scale(1.2);
    color: #5a33a0;
}

/* Responsive */
@media (max-width: 768px) {
    .reasons-container {
        gap: 20px;
    }
}

/* review */

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.review-card {
    background: #fff;
    border: 2px solid #ff7a00;
    border-radius: 12px;
    width: 280px;
    padding: 30px 20px;
    text-align: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.review-card:hover {
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
    color: #fff;
    transform: translateY(-10px);
}

.review-card:hover p,
.review-card:hover h4 {
    color: #fff;
}

.review-img {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
}

.review-card h4 {
    margin-bottom: 10px;
}

.review-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
}

.subscribe-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff7a00;
    color: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.subscribe-btn:hover {
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
}

/* Responsive */
@media (max-width: 768px) {
    .subscribe-btn {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-card {
    background: #fff;
    border: 2px solid #ff7a00;
    border-radius: 12px;
    width: 300px;
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    width: 100%;
    height: auto;
}

.blog-card h3 {
    padding: 15px 20px 5px 20px;
    font-size: 1.2rem;
    color: #ff7a00;
}

.blog-card p {
    padding: 0 20px 15px 20px;
    color: #555;
    font-size: 0.95rem;
}

.read-more-btn {
    display: inline-block;
    margin: 0 20px 20px 20px;
    padding: 10px 20px;
    background: #ff7a00;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
}

/* Responsive */
@media (max-width: 992px) {
    .blog-container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .blog-card {
        width: 100%;
        max-width: 400px;
    }
}

/* Timeline container */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Timeline line */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #ff7a00;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

/* Timeline container enhancements */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Vertical line */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(111, 66, 193, 0.4);
}

/* Timeline items */
.timeline-item {
    padding: 40px 30px;
    position: relative;
    width: 50%;
    transition: transform 0.4s, box-shadow 0.4s;
}

.timeline-item.right {
    left: 50%;
}

/* Circle numbers with glow */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    background: #ff7a00;
    border: 4px solid #fff;
    top: 20px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px rgba(111, 66, 193, 0.6);
}

.timeline-item.right::after {
    left: -15px;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff7a00, #c18aff);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(111, 66, 193, 0.6);
    z-index: 3;
}

/* Timeline content box with shadow & hover */
.timeline-content {
    background: #fff;
    border: 2px solid #ff7a00;
    border-radius: 15px;
    padding: 35px 25px;
    position: relative;
    text-align: center;
    transition: transform 0.4s, background 0.4s, color 0.4s, box-shadow 0.4s;
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.1);
}

.timeline-item:hover .timeline-content {
    background: linear-gradient(to bottom, #ff7a00, #c18aff);
    color: #fff;
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(111, 66, 193, 0.4);
}

.timeline-content i {
    font-size: 45px;
    color: #ff7a00;
    margin-bottom: 15px;
    transition: color 0.4s;
}

.timeline-item:hover .timeline-content i {
    color: #fff;
}

/* Arrow indicators between steps */
.timeline-item::before {
    content: '➤';
    position: absolute;
    font-size: 25px;
    color: #ff7a00;
    top: 35px;
    right: -40px;
    transition: color 0.4s;
}

.timeline-item.right::before {
    left: -40px;
    right: auto;
}

.timeline-item:hover::before {
    color: #c18aff;
}

/* Headings & text */
.timeline-content h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: inherit;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #555;
    transition: color 0.4s;
}

.timeline-item:hover p {
    color: #fff;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }

    .timeline-item,
    .timeline-item.right {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        margin-bottom: 50px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item::before {
        left: 50px;
        top: 25px;
        right: auto;
    }

    .timeline-item::after {
        left: 15px;
        top: 15px;
    }

    .step-number {
        left: 0;
        transform: translateX(0);
        top: -15px;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.footer h5 {
    color: #ff7a00;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ff7a00;
    border-radius: 2px;
}

.footer p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a.footer-link {
    color: #ccc;
    text-decoration: none !important;
    transition: 0.3s;
}

.footer a.footer-link:hover {
    color: #ff7a00;
}

.footer .d-flex a {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    transition: all 0.3s;
}

.footer .d-flex a:hover {
    background: #ff7a00;
    text-decoration: none;
    color: #fff;
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(111, 66, 193, 0.3);
}

.footer .text-center {
    font-size: 0.9rem;
    color: #aaa;
}

.footer .fas {
    color: #ff7a00;
    margin-right: 8px;
}

/* Responsive: stack columns on mobile */
@media (max-width: 768px) {
    .footer .row>div {
        margin-bottom: 2rem;
    }

    .footer .d-flex {
        justify-content: center;
        gap: 15px;
    }
}

.breadcrumb-section {
    position: relative;
    background: url('assets/breadcrum.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 20px;
    color: white;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* deep black overlay */
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-heading {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
}

.breadcrumb li {
    margin: 0 10px;
    font-size: 16px;
    color: #fff;
}

.breadcrumb li a {
    color: #ff7a00;
    text-decoration: none;
}

.breadcrumb li::after {
    content: "›";
    margin-left: 10px;
    color: #ccc;
}

.breadcrumb li:last-child::after {
    content: "";
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-info h2 {
    color: #ff7a00;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
}

.contact-info iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-form h2 {
    color: #ff7a00;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form button {
    background-color: #ff7a00;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #5a379f;
}

.subscribe-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.subscribe-box h2 {
    color: #ff7a00;
    margin-bottom: 20px;
    text-align: center;
}

.subscribe-box input[type="text"],
.subscribe-box input[type="email"],
.subscribe-box input[type="date"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.subscribe-box label {
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.subscribe-box input[type="checkbox"] {
    margin-right: 10px;
}

.subscribe-box button {
    width: 100%;
    background-color: #ff7a00;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-box button:hover {
    background-color: #5a379f;
}

.faq-container {
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-container h2 {
    text-align: center;
    color: #ff7a00;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    background-color: #eee;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e0d7f5;
}

.faq-answer {
    display: none;
    padding: 10px 15px;
    margin-top: 5px;
    background-color: #f4f4f4;
    border-left: 4px solid #ff7a00;
    border-radius: 6px;
}