:root {
    --primary-color: #fdb808;
    --primary-dark-color: #705000;
    --primary-light-color: #ffd56c;
    --secondary-color: #1a1229;
    --dark-color: #272727;
    --light-color: #f8f8f8;
    --white-color: #fff;
    --btn-primary-color: #272727;
    --btn-primary-background-color: #fdb808;
    --btn-danger-color: #f8f8f8;
    --btn-danger-background-color: #fd5656;
    --btn-warning-color: #272727;
    --btn-warning-background-color: #ffd56c;
    --btn-success-color: #272727;
    --btn-success-background-color: #55e46d;
    --btn-info-color: #272727;
    --btn-info-background-color: #55d3e4;
    --btn-border-color: #272727;
    --bg-danger-background: #fd5656;
    --bg-warning-background: #ffd56c;
    --bg-success-background: #55e46d;
    --bg-info-background: #55d3e4;
    --font-family-primary: "Raleway", sans-serif;
    --font-family-secondary: "Arial", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::selection {
    background-color: var(--primary-dark-color);
    color: var(--light-color);
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark-color);
}

/* Firefox compatible scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--secondary-color);
}

body {
    font-family: var(--font-family-primary);
    background-color: var(--light-color);
    color: var(--dark-color);
}

.navbar {
    background-color: var(--secondary-color);
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
    max-width: 250px;
}

.navbar-brand i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--white-color) !important;
    font-weight: 500;
    margin: 0.5rem 1.5rem;
    padding: 2px !important;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect */
.nav-link:hover {
    background: none !important;
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

/* On hover → show underline */
.nav-link:hover::after {
    width: 100%;
}

/* On active → keep underline */
.nav-link.active::after {
    width: 100%;
}

/* On active → keep primary color */
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    color: var(--white-color) !important;
}

.navbar-toggler-icon-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .btn-primary {
    background-color: var(--btn-primary-background-color);
    color: var(--btn-primary-color);
    border: 1px solid var(--btn-border-color);
    font-weight: 600;
    margin-top: 0.25rem;
}

.navbar .btn-primary:hover {
    background-color: var(--primary-dark-color);
    color: var(--white-color);
    border-color: var(--btn-primary-color);
    box-shadow: 0 5px 15px rgba(253, 184, 8, 0.4);
}

/* Off-Canvas Menu & Backdrop */
@media (max-width: 992px) {

    /* Style for the sliding menu */
    .offcanvas-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        /* Adjust the width as needed */
        height: 100vh;
        background-color: var(--secondary-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
        z-index: 1050;
        padding: 2rem 1rem;
        display: flex;
        /* Changed to flexbox */
        flex-direction: column;
        justify-content: flex-start;
        /* Aligned to the top */
    }

    .offcanvas-content {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    /* Style for the close button inside the menu */
    .offcanvas-menu .btn-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--white-color);
        /* Close button color */
        padding: 0;
        opacity: 1;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FDB808'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    }

    /* Style for the menu when it's open */
    .offcanvas-menu.show {
        right: 0;
    }

    /* Adjust font and spacing for mobile menu items */
    .offcanvas-menu .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .offcanvas-menu .nav-item {
        width: 100%;
        text-align: left;
        margin-bottom: 1rem;
    }

    .offcanvas-menu .nav-link {
        font-size: 1.25rem;
        padding: 0.75rem 0;
        text-align: center;
    }

    /* Style for the semi-transparent backdrop */
    .offcanvas-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
    }

    /* Style for the backdrop when it's visible */
    .offcanvas-backdrop.show {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
    }
}

/* New CSS to fix the big screen layout */
@media (min-width: 993px) {
    .offcanvas-menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .offcanvas-menu .offcanvas-content {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .offcanvas-menu .btn-close {
        display: none;
    }

    /* Hide the backdrop on large screens */
    .offcanvas-backdrop {
        display: none !important;
    }
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.badge {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.dropdown-menu {
    width: 780px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    margin-top: 0.8rem;
    background-color: var(--secondary-color);
}

.dropdown-col {
    padding: 0 1rem;
}

.dropdown-col:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-header {
    color: var(--light-color);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.dropdown-header i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.dropdown-item {
    padding: 0.5rem 0;
    color: var(--light-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background: none !important;
    color: var(--primary-color) !important;
}

.dropdown-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.dropdown-item:hover::after {
    width: 100%;
}

.dropdown-item i {
    margin-right: 8px;
    color: var(--primary-dark-color);
}

/* On active → keep underline */
.dropdown-item.active::after {
    width: 100%;
}

/* On active → keep primary color */
.dropdown-item.active {
    background: none !important;
    color: var(--primary-color) !important;
}

/* 🔽 Small Screens (<992px) */
@media (max-width: 992px) {
    .dropdown-menu {
        width: 80% !important;
        margin-top: 0.5rem;
        padding: 0.75rem 1rem;
        border-radius: 0;
        box-shadow: none;
        background-color: transparent;
        /* blend with offcanvas background */
    }

    .dropdown-col {
        width: 80%;
        padding: 0;
        border: none !important;
        margin-bottom: 1.25rem;
    }

    .dropdown-header {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }

    .dropdown-item {
        padding: 0.5rem 0;
        font-size: 1.05rem;
        color: var(--light-color);
    }

    /* Hide underline hover effect for cleaner mobile menu */
    .dropdown-item::after {
        display: none;
    }
}

/* New CSS to enable hover dropdown on large screens */
@media (min-width: 992px) {
    .dropdown-hover:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-hover>.dropdown-toggle::after {
        display: none;
    }
}

/* New CSS to add internal scroll to dropdown on small screens */
@media (max-width: 992px) {
    .offcanvas-menu .dropdown-menu {
        overflow: hidden;
        max-height: 300px;
        overflow-y: auto;
    }
}

/* 💻 Large Screens (≥993px) */
@media (min-width: 993px) {
    .dropdown-menu {
        width: 780px;
        border: none;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 1.5rem;
        margin-top: 0.8rem;
        background-color: var(--secondary-color);
    }

    .dropdown-col {
        padding: 0 1rem;
    }

    .dropdown-col:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-header {
        font-weight: 700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        color: var(--light-color);
    }

    .dropdown-item {
        padding: 0.5rem 0;
        color: var(--light-color);
        border-radius: 4px;
        transition: all 0.3s ease;
        position: relative;
    }

    .dropdown-item:hover {
        background: none !important;
        color: var(--primary-color) !important;
    }

    .dropdown-item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    .dropdown-item:hover::after {
        width: 100%;
    }
}

.search-form {
    position: relative;
    margin-right: 10px;
}

.search-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-light-color);
    color: var(--white-color);
    padding-right: 40px;
}

.search-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.25rem rgba(253, 184, 8, 0.25);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary-light-color);
}

@media (max-width: 992px) {
    .search-form {
        margin: 10px 0;
    }

    .navbar-nav .btn {
        margin: 5px 0;
    }
}

.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2342 100%);
    color: var(--white-color);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-heading span {
    color: var(--primary-color);
}

.hero-subheading {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.btn-hero-primary {
    background-color: var(--btn-primary-background-color);
    color: var(--btn-primary-color);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: var(--primary-dark-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 184, 8, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-hero-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 184, 8, 0.4);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.form-section {
    background-color: var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 1rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Base flag style */
.contact-flag {
    position: fixed;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    z-index: 1000;
}

/* Phone and Email positions */
#contact-flag {
    top: 45%;
}
#email-flag {
    top: 58%;
}

/* Flag Tab (icon part) */
.flag-tab {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 14px 10px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.flag-tab:hover {
    background: #f0b800;
}

.flag-icon {
    font-size: 1.4rem;
}

/* Hidden content area */
.flag-content {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    width: 210px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s ease;
    position: absolute;
    right: 45px;
    pointer-events: none; /* Prevent hover conflict */
}

/* Active (hovered) state */
.contact-flag.active .flag-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.stats-container {
    background-color: var(--primary-light-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-dark-color);
    font-weight: 500;
}

/* Animated Shapes */
.shape {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    animation: moveShape 15s infinite linear;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.shape-2 {
    top: 70%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: var(--primary-light-color);
    border-radius: 50%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.shape-3 {
    top: 30%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    animation-duration: 30s;
    animation-delay: 1s;
}

.shape-4 {
    top: 60%;
    right: 5%;
    width: 70px;
    height: 70px;
    background: var(--primary-light-color);
    border-radius: 50%;
    animation-duration: 18s;
    animation-delay: 3s;
}

.shape-5 {
    top: 20%;
    left: 20%;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.shape-6 {
    top: 80%;
    right: 20%;
    width: 90px;
    height: 90px;
    background: var(--primary-light-color);
    border-radius: 50%;
    animation-duration: 28s;
    animation-delay: 5s;
}

/* Triangle shapes */
.shape-7 {
    top: 40%;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--primary-color);
    animation-duration: 35s;
    animation-delay: 2s;
}

.shape-8 {
    top: 50%;
    right: 25%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 60px solid var(--primary-light-color);
    animation-duration: 25s;
    animation-delay: 3s;
}

/* Square shapes */
.shape-9 {
    top: 15%;
    right: 30%;
    width: 60px;
    height: 60px;
    background: var(--primary-light-color);
    transform: rotate(45deg);
    animation-duration: 24s;
    animation-delay: 1s;
}

.shape-10 {
    top: 65%;
    left: 25%;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    transform: rotate(45deg);
    animation-duration: 27s;
    animation-delay: 4s;
}

@keyframes moveShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 40px) rotate(90deg);
    }

    50% {
        transform: translate(40px, 0px) rotate(180deg);
    }

    75% {
        transform: translate(10px, 30px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.8rem;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .btn-hero-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    /* Adjust shapes for smaller screens */
    .shape {
        display: none;
    }

    .shape-1,
    .shape-3,
    .shape-6 {
        display: block;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }

    /* Hide most shapes on mobile */
    .shape {
        display: none;
    }

    .shape-1,
    .shape-3 {
        display: block;
        width: 30px;
        height: 30px;
    }
}

.services-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    border: 5px solid var(--white-color);
    box-shadow: 0 0 0 3px var(--primary-light-color);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-dark-color);
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    min-height: 70px;
}

.service-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-content a:hover {
    color: var(--primary-dark-color);
}

.service-content a i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-content a:hover i {
    transform: translateX(5px);
}

.service-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Animation for icons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.service-card:hover .service-icon {
    animation: pulse 1s infinite;
    background: var(--primary-color);
}

.service-card:hover .service-icon i {
    color: var(--white-color);
}

/* Get Started Button */
.get-started-btn {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: space-evenly;
}

.btn-get-started {
    background-color: var(--btn-primary-background-color);
    color: var(--btn-primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(253, 184, 8, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-get-started:hover {
    background-color: var(--primary-dark-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 184, 8, 0.4);
}

.btn-get-started i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-get-started:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-card {
        margin-bottom: 2rem;
    }
}

.testimonials-section {
    background-color: var(--white-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23fdb808' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title h2 {
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.testimonials-section .section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.testimonials-section .section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-section .video-card {
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    margin-bottom: 30px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.testimonials-section .video-card:hover {
    transform: translateY(-10px);
}

.testimonials-section .video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.testimonials-section .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* .testimonials-section .video-info {
    padding: 25px;
}

.testimonials-section .video-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.testimonials-section .video-description {
    color: var(--light-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonials-section .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-section .client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonials-section .client-details {
    flex: 1;
}

.testimonials-section .client-name {
    color: var(--white-color);
    font-weight: 600;
    margin: 0 0 4px 0;
    font-size: 1.1rem;
}

.testimonials-section .client-role {
    color: var(--primary-light-color);
    font-size: 0.9rem;
    margin: 0;
} */

.testimonials-section .youtube-icon {
    color: #ff0000;
    margin-right: 10px;
}

.testimonials-section .btn-custom {
    background: var(--btn-primary-background-color);
    color: var(--btn-primary-color);
    border: 2px solid var(--btn-border-color);
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonials-section .btn-custom:hover {
    background: var(--primary-dark-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 184, 8, 0.3);
}

.testimonials-section .section-footer {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-footer p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .video-card {
        margin-bottom: 20px;
    }
}

.partners-section {
    background-color: var(--secondary-color);
    padding: 80px 20px;
    text-align: center;
}

.partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-section .section-title h2 {
    color: var(--white-color);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.partners-section .section-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.partners-section .section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.partners-section .partners-carousel {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.carousel-track {
    display: flex;
    animation: carouselScroll 18s linear infinite;
}

.partner-item {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.brand-partner {
    filter: grayscale(100%) brightness(80%);
    opacity: 0.7;
    transition: all 0.4s ease;
    max-width: 140px;
    max-height: 70px;
}

.partner-item:hover .brand-partner {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: scale(1.05);
}

.carousel-controls {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.control-btn {
    background: var(--primary-color);
    color: var(--dark-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.control-btn:hover {
    background: var(--primary-light-color);
    transform: scale(1.1);
}

.divider {
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-color),
            transparent);
    margin: 60px auto 40px;
    width: 80%;
    max-width: 800px;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-left: 3px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 8px 8px 0;
}

.testimonial-content {
    color: var(--white-color);
    font-style: italic;
    text-align: left;
    min-height: 80px;
}

.testimonial-author {
    color: var(--primary-light-color);
    font-weight: 600;
    margin-top: 15px;
    font-style: normal;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--scroll-distance));
    }
}

.paused {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .partner-item {
        width: 160px;
        height: 100px;
    }

    .brand-partner {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .partner-item {
        width: 140px;
        height: 90px;
        margin: 0 10px;
    }

    .brand-partner {
        max-width: 100px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Books Section Styles */
.book-catalog {
    background: var(--white-color);
    padding: 60px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.book-catalog .container {
    max-width: 1100px;
    margin: 0 auto;
}

.book-catalog .section-title h2 {
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.book-catalog .section-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.book-catalog .section-subtitle p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    background: var(--white-color);
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 184, 8, 0.3);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.book-card {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.book-cover {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.book-card:hover .book-cover img {
    transform: scale(1.05);
}

.book-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.book-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top,
            var(--primary-color) 0%,
            rgba(253, 184, 8, 0.8) 60%,
            rgba(253, 184, 8, 0) 100%);
    color: var(--light-color);
    transition: all 0.3s ease;
    z-index: 1;
}

.book-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--light-color);
    font-weight: 700;
    line-height: 1.3;
}

.book-author {
    color: var(--light-color);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.book-description {
    color: var(--light-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.book-card:hover .book-description {
    max-height: 100px;
}

.book-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.book-price {
    font-weight: 700;
    color: var(--light-color);
    font-size: 1.2rem;
}

.book-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.book-rating i {
    color: var(--secondary-color);
}

.book-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.book-card:hover .book-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-icon {
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    padding: 8px;
    border-radius: 6px;
}

.btn-icon:hover {
    background: var(--white-color);
}

@media (max-width: 768px) {
    .books-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .book-cover {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .books-grid {
        grid-template-columns: 1fr;
    }

    .category-filter {
        gap: 10px;
    }

    .category-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .book-cover {
        height: 380px;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.footer-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.brand-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(253, 184, 8, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.footer-form .form-control::placeholder {
    color: var(--primary-color);
}

.footer-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(253, 184, 8, 0.25);
    color: var(--white-color);
}

.footer-form textarea.form-control {
    min-height: 120px;
    resize: none;
}

.btn-footer {
    background-color: var(--btn-primary-background-color);
    color: var(--btn-primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-footer:hover {
    background-color: var(--primary-dark-color);
    color: var(--white-color);
}

.copyright {
    text-align: center;
    padding: 1.5rem 0 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

.brand-logo {
    height: 100px;
    width: auto;
    max-width: 300px;
    margin-bottom: 30px;
}

.brand-partner {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-section {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-title {
        font-size: 1.3rem;
    }
}

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.chatbot-icon:hover {
    transform: scale(1.05);
    background-color: var(--primary-dark-color);
}

.chatbot-icon i {
    font-size: 24px;
    color: var(--dark-color);
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 450px;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    pointer-events: none;
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.chat-header h5 {
    margin: 0;
    font-weight: 600;
}

.close-btn {
    background: none;
    height: 30px;
    width: 30px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    color: var(--dark-color);
}

.close-btn:hover {
    background-color: var(--bg-danger-background);
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #f9f9f9;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    background-color: var(--primary-light-color);
    color: var(--dark-color);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background-color: var(--secondary-color);
    color: var(--white-color);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chat-input {
    display: flex;
    padding: 15px;
    background-color: var(--white-color);
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    transition: border-color 0.3s;
}

.chat-input input:focus {
    border-color: var(--primary-color);
}

.send-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: var(--primary-dark-color);
}

.timestamp {
    font-size: 10px;
    color: #777;
    margin-top: 4px;
    text-align: right;
}

.bot-typing {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    color: #777;
    font-style: italic;
}

.typing-dots {
    display: flex;
    margin-left: 8px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background-color: #777;
    border-radius: 50%;
    margin: 0 2px;
    animation: typing 1.4s infinite both;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-5px);
    }
}

.service-page {
    font-family: "Raleway", sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Hero Banner */
.service-hero {
    background: linear-gradient(rgba(26, 18, 41, 0.6), rgba(26, 18, 41, 0.6)), url('../img/services/service.webp');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 4rem 0 4rem;
    position: relative;
}

.service-breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 4rem;
}

.service-breadcrumb .breadcrumb-item a {
    color: var(--light-color);
    text-decoration: none;
}

.service-breadcrumb .breadcrumb-item.active {
    color: var(--primary-color);
}

.service-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary-light-color);
}

/* Service Sections */
.service-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.service-img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    height: 500px;
    object-fit: cover;
    width: 500px;
}

.service-page .service-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    min-height: 70px;
    text-align: start;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* icon aur text ke beech spacing */
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* shrink na ho */
}

.service-icon-box i {
    font-size: 2rem;
    color: var(--primary-dark-color);
}

.service-title {
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 0.5rem;
    margin: 0;
    font-size: 1.8rem;
    /* flex ke andar spacing control hoga */
}

.service-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    /* ab heading ke start ke neeche hi rahega */
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.service-feature {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.service-feature:before {
    content: '\EB80';
    font-family: 'remixicon';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-box i {
    font-size: 2rem;
    color: var(--primary-dark-color);
}

.service-cta {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 5rem 0;
    text-align: center;
}

.service-cta-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-btn-primary {
    background-color: var(--btn-primary-background-color);
    color: var(--btn-primary-color);
    border: 1px solid var(--btn-border-color);
    font-weight: 600;
    margin-top: 0.25rem;
}

.service-btn-primary:hover {
    background-color: var(--primary-dark-color);
    color: var(--white-color);
    border-color: var(--btn-primary-color);
    box-shadow: 0 5px 15px rgba(253, 184, 8, 0.4);
}

/* Modal Styling */
.custom-modal .modal-content {
    border-radius: 12px;
    overflow: hidden;
    border: none;
}

.custom-modal .modal-header {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 1rem 1.5rem;
}

.custom-modal .modal-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-modal .modal-body {
    padding: 1.5rem;
    background-color: var(--secondary-color);
}

.custom-modal .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.custom-modal .form-control {
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
}

.custom-modal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(253, 184, 8, 0.25);
}

.custom-modal .modal-footer {
    background-color: var(--secondary-color);
    border-top: 1px solid var(--primary-light-color);
    padding: 1rem 1.5rem;
}

.btn-custom-primary {
    background-color: var(--btn-primary-background-color);
    color: var(--btn-primary-color);
    border: 1px solid var(--btn-border-color);
    font-weight: 600;
    margin-top: 0.25rem;
}

.btn-custom-primary:hover {
    background-color: var(--primary-dark-color);
    color: var(--white-color);
    border-color: var(--btn-primary-color);
    box-shadow: 0 5px 15px rgba(253, 184, 8, 0.4);
}

.btn-custom-secondary {
    background-color: var(--bg-danger-background);
    color: var(--light-color);
    border: 1px solid var(--btn-border-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom-secondary:hover {
    background-color: var(--bg-danger-background);
    color: var(--light-color);
}

/* BookPress Hero Section - Namespaced to prevent conflicts */
.bp-about-hero {
    font-family: "Raleway", sans-serif;
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bp-about-hero .bp-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bp-about-hero .bp-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-about-hero .bp-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    /* Secondary color */
    opacity: 0.8;
}

.bp-about-hero .bp-content-container {
    position: relative;
    z-index: 2;
    color: var(--light-color);
    /* Light color */
    padding: 0 2rem;
    max-width: 800px;
}

.bp-about-hero .bp-main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    line-height: 1.2;
}

.bp-about-hero .bp-main-heading span {
    color: var(--primary-color);
    /* Primary color */
}

.bp-about-hero .bp-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.bp-about-hero .bp-btn {
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    /* Primary color */
    color: var(--dark-color);
    /* Dark color */
    border: 2px solid var(--dark-color);
}

.bp-about-hero .bp-btn:hover {
    background-color: var(--primary-dark-color);
    /* Primary dark color */
    color: var(--light-color);
    /* Light color */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .bp-about-hero .bp-main-heading {
        font-size: 2.5rem;
    }

    .bp-about-hero .bp-description {
        font-size: 1.1rem;
    }
}

.bp-about {
    font-family: "Raleway", sans-serif;
    color: var(--dark-color);
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.bp-about .bp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.bp-about .bp-section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.bp-about .bp-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.bp-about .bp-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 4rem;
}

.bp-about .bp-image-container {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
    position: relative;
}

.bp-about .bp-main-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.bp-about .bp-main-img:hover {
    transform: translateY(-5px);
}

.bp-about .bp-floating-img {
    position: absolute;
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--white-color);
}

.bp-about .bp-img-1 {
    top: -20px;
    right: -10px;
    z-index: 2;
}

.bp-about .bp-img-2 {
    bottom: -20px;
    left: -10px;
    z-index: 2;
}

.bp-about .bp-text-container {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.bp-about .bp-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.bp-about .bp-heading {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.bp-about .bp-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bp-about .bp-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bp-about .bp-feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.bp-about .bp-feature-list li:before {
    content: '\EB80';
    font-family: 'remixicon';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.bp-about .bp-stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: linear-gradient(135deg, var(--primary-light-color) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    color: var(--white-color);
    margin-top: 3rem;
}

.bp-about .bp-stat {
    text-align: center;
    padding: 1rem;
    min-width: 200px;
}

.bp-about .bp-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.bp-about .bp-stat-text {
    font-size: 1.1rem;
    color: var(--primary-dark-color);
}

@media (max-width: 768px) {
    .bp-about .bp-content-wrapper {
        flex-direction: column;
    }

    .bp-about .bp-floating-img {
        display: none;
    }
}

/* BookPress Contact Page - Namespaced to prevent conflicts */
.bp-contact {
    font-family: "Raleway", sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.bp-contact-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bp-contact-hero .bp-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bp-contact-hero .bp-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-contact-hero .bp-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    /* Secondary color */
    opacity: 0.8;
}

.bp-contact-hero .bp-content-container {
    position: relative;
    z-index: 2;
    color: var(--light-color);
    padding: 0 2rem;
    max-width: 800px;
}

.bp-contact-hero .bp-main-heading {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.bp-contact-hero .bp-main-heading span {
    color: var(--primary-color);
    /* Primary color */
}

.bp-contact-hero .bp-subheading {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Form Section */
.bp-contact-form-section {
    padding: 4rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.bp-contact-form-container {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.bp-form-heading {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.bp-form-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.bp-form-group {
    margin-bottom: 1.5rem;
}

.bp-form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.bp-form-control {
    border: 2px solid #e2e2e2;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.bp-form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(253, 184, 8, 0.25);
}

.bp-form-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.bp-form-btn:hover {
    background-color: var(--primary-dark-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

.bp-form-footer {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .bp-contact-hero .bp-main-heading {
        font-size: 2.2rem;
    }

    .bp-contact-form-container {
        padding: 2rem;
    }

    .bp-contact-hero {
        height: 30vh;
    }
}

.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid #ddd;
    background: #fff;
}

/* .suggestions button{
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
} */


.chip {
    padding: 6px 12px;
    border-radius: 16px;
    border: 1px solid var(--btn-border-color);
    background: var(--secondary-color);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s;
}

.chip:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.red-animation {
    animation: redanimate 1s linear infinite alternate;
}

@keyframes redanimate {
    0% {
        background-color: #920000;
    }

    100% {
        background-color: #f00;
    }
}