:root {
    --primary: #4a306d;
    --secondary: #6a4c93;
    --accent: #ff7e5f;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
}

.navbar {
    background-color: var(--primary);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* HERO SECTION */

.letter {
    display: inline-block;
    opacity: 1;
    transform: translateY(-40px);
    animation: dropLetter 0.5s ease forwards;
}

@keyframes dropLetter {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    70% {
        opacity: 1;
        transform: translateY(5px);
    }

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

/* Coming Soon Modal */
.coming-soon-modal {
    background: linear-gradient(135deg, #4a306d, #6a4c93);
    color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalPop 0.5s ease;
}

@keyframes modalPop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

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

/* Animated Coming Soon Text */
.coming-text {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff7e5f, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: dropGlow 1.2s ease forwards;
}

@keyframes dropGlow {
    0% {
        opacity: 0;
        transform: translateY(-40px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.coming-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeUp 1.5s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


.hero-section {
    position: relative;
    background: url('https://source.unsplash.com/random/1600x900/?books,library') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 48, 109, 0.8), rgba(74, 48, 109, 0.9));
    animation: gradientMove 15s ease infinite;
    z-index: 1;
}

.hero-section>.container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUpScale 1s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(45deg, #ff7e5f, #ff5a3a);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.4s;
    border-radius: 50px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes fadeInUpScale {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* SCROLL INDICATOR */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    z-index: 2;
}

.scroll-down span {
    display: block;
    width: 6px;
    height: 6px;
    background: white;
    margin: 5px auto;
    border-radius: 50%;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

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

/* Why Choose Section */
.why-choose {
    background: #ffffff;
}

.why-choose .section-title {
    font-size: 2.3rem;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Icon box */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Featured Services */
.featured-services {
    background: #f8f9fa;
}

.featured-services .section-title {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.featured-services p.text-muted {
    font-size: 1rem;
    color: #6c757d;
}

.feature-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}


.novel-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.novel-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.novel-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.novel-card:hover img {
    transform: scale(1.1);
}

.about-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.mission-vision {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.mission-vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* Contact Info Section */
.contact-info-section {
    background: #f8f9fa;
}

.contact-info-section .section-title {
    font-size: 2.3rem;
}

.contact-info-section p.text-muted {
    font-size: 1rem;
    color: #6c757d;
}

/* Contact Card */
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Box */
.contact-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.contact-card .btn-outline-primary {
    border-radius: 25px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card .btn-outline-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Auth Modal Styles */
.auth-modal .modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.auth-modal .modal-header {
    border-bottom: none;
    padding: 30px 30px 0;
    position: relative;
}

.auth-modal .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.auth-modal .modal-body {
    padding: 0 30px 30px;
}

.auth-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 25px;
}

.auth-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 15px 25px;
    margin: 0;
    border-radius: 0;
    position: relative;
}

.auth-tabs .nav-link.active {
    color: var(--primary);
    background: transparent;
}

.auth-tabs .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.auth-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    transition: all 0.3s;
}

.auth-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 48, 109, 0.25);
}

.auth-form .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.divider:before,
.divider:after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e9ecef;
}

.divider span {
    padding: 0 15px;
    color: #6c757d;
    font-size: 14px;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    flex: 1;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: 500;
}

.social-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.social-btn.google {
    color: #DB4437;
}

.social-btn.facebook {
    color: #4267B2;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .auth-modal .modal-body {
        padding: 0 20px 20px;
    }

    .social-login {
        flex-direction: column;
    }
}

/* Our Story Section */
.our-story-section {
    background: #f8f9fa;
    color: #333;
}

.story-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.story-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #4a306d, #ff7e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.story-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

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

@media (max-width: 768px) {
    .story-card {
        padding: 30px 20px;
    }

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

    .story-card p {
        font-size: 1rem;
    }
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    color: #333;
}

.section-title {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #4a306d, #ff7e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
}

/* Service Item */
.service-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff7e5f;
    background: linear-gradient(45deg, #4a306d, #ff7e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-item h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

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

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

    .service-item {
        padding: 25px 15px;
    }

    .service-icon {
        font-size: 2.5rem;
    }
}



/* FOR THE ABOUT SECTION  */
.about-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.about-content:hover {
    co transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
}

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

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

.about-image:hover img {
    transform: scale(1.05);
}

.mission-vision {
    margin-bottom: 30px;
}

.mission-vision h3 {
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.mission-vision h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

.stats-section {
    background: linear-gradient(rgba(74, 48, 109, 0.9), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?books,reading') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.team-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

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

.team-card img {
    height: 250px;
    object-fit: cover;
}

.team-card .card-body {
    text-align: center;
}

.team-card .social-links {
    margin-top: 15px;
}

.team-card .social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin: 0 5px;
    transition: all 0.3s;
}

.team-card .social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.values-section {
    padding: 100px 0;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.value-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.timeline-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid var(--accent);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -13px;
}

.right::after {
    left: -13px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-content .date {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .about-content,
    .about-image {
        margin-bottom: 30px;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 18px;
    }

    .left::after,
    .right::after {
        left: 18px;
    }

    .right {
        left: 0%;
    }
}

.hero-section {
    background: linear-gradient(rgba(74, 48, 109, 0.8), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?books,writing') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.btn-primary {
    background-color: var(--accent);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #ff5a3a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

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

.service-hero {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.service-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.featured-services {
    padding: 100px 0;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.process-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-connector {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    z-index: 1;
}

.pricing-section {
    padding: 100px 0;
}

.pricing-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

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

.pricing-header {
    background-color: var(--primary);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-features {
    padding: 30px 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent);
    margin-right: 10px;
}

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(rgba(74, 48, 109, 0.9), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?reading,books') no-repeat center center;
    background-size: cover;
    color: white;
}

.testimonial-card {
    background: white;
    color: var(--dark);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h5 {
    margin-bottom: 0;
}

.author-info p {
    margin-bottom: 0;
    color: #6c757d;
}

.faq-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(74, 48, 109, 0.9), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?library,bookshelf') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

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

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #4a306d, #6a4c93);
    color: white;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-card .form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px 15px;
    transition: all 0.3s;
}

.contact-card .form-control:focus {
    border-color: #ff7e5f;
    box-shadow: 0 0 8px rgba(255, 126, 95, 0.3);
}

.btn-primary {
    background: linear-gradient(45deg, #ff7e5f, #ff5a3a);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Info Cards */
.info-card {
    background: #fff;
    color: #333;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.info-card h5 {
    margin-top: 15px;
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
}

.info-card p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 5px;
    line-height: 1.5;
}

.info-icon {
    font-size: 2.5rem;
    color: #ff7e5f;
    background: linear-gradient(45deg, #4a306d, #ff7e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

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

@media (max-width: 992px) {

    .contact-card,
    .info-card {
        margin-bottom: 20px;
    }
}


.map-section {
    padding: 0;
    height: 500px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.faq-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.team-section {
    padding: 100px 0;
}

.team-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
}

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

.team-card img {
    height: 250px;
    object-fit: cover;
}

.team-card .card-body {
    padding: 30px 20px;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin: 0 5px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.response-time-section {
    padding: 100px 0;
    background: linear-gradient(rgba(74, 48, 109, 0.9), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?help,support') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
}

.response-item {
    padding: 30px 20px;
}

.response-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.response-time {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}