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

.armata-regular {
    font-family: "Armata", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "B612", "Armata", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #000000;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000000;
}

.logo {
    text-align: center;
    flex-grow: 1;
}

.logo img {
    height: 150px;
}

.right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.search-input {
    padding: 8px;
    border: none;
    border-radius: 4px;
}

.call-button {
    padding: 8px 12px;
    background-color: #7154c5;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

.call-button:hover {
    background-color: #7154c5;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin-bottom: 5px;
    border-radius: 5px;
}

/* Navigation */
nav {
    background-color: #000000;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #7154c5;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
    background-color: #7154c5;
}

@media screen and (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: center;
        padding: 15px;
        position: relative;
    }

    .logo {
        text-align: center;
    }

    .logo img {
        height: 80px;
    }

    .right-section {
        display: none;
    }

    .search-input,
    .call-button {
        display: none;
    }

    /* Mobile Navigation Styles */
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        padding-top: 80px;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    nav ul li {
        display: block;
        margin: 15px 0;
    }

    nav ul li a {
        font-size: 1.2rem;
    }

    nav.active {
        display: block;
    }

    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }

    /* Improve carousel for mobile */
    .carousel-container {
        height: 50vh;
    }

    /* Improve bio section for mobile */
    .bio-container {
        flex-direction: column;
        padding: 5px;
        margin: 0 auto;
        gap: 20px;
    }

    .bio-image {
        width: 100%;
    }

    .bio-content {
        margin: 0;
        padding: 5px;
        text-align: left;
    }

    .bio-content h1,
    .bio-content h2,
    .bio-social-media,
    .bio-social-media h3 {
        text-align: left;
    }

    .bio-content p {
        font-size: 16px;
        line-height: 1.5;
        text-align: justify;
    }

    /* Improve request callback section for mobile */
    .request-callback-container {
        padding: 20px;
    }

    .request-callback-container h1 {
        font-size: 28px;
    }

    /* Improve footer for mobile */
    .footer-container {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        text-align: center;
    }

    .powered-by,
    .copyright,
    .social-media {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    /* Improve booking section for mobile */
    .booking-container {
        padding: 20px;
    }

    .booking-cards {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 20px;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        height: 70px;
    }

    .carousel-container {
        height: 40vh;
    }

    .carousel-slide img {
        object-position: center 20%;
    }

    .bio-content p {
        font-size: 14px;
    }

    .request-callback-container {
        padding: 15px;
    }

    .request-callback-container h1 {
        font-size: 24px;
    }

    .footer-container {
        padding: 20px 15px;
    }

    .booking-container h1 {
        font-size: 24px;
    }

    .booking-card {
        padding: 15px;
    }

    .booking-icon {
        font-size: 30px;
    }

    .booking-card h3 {
        font-size: 18px;
    }

    .booking-process h2 {
        font-size: 22px;
    }

    /* Fix back button for mobile */
    #mbcbtn {
        bottom: 15px;
        left: 15px;
        padding: 8px 14px;
        font-size: 14px;
        z-index: 1001;
    }
}

/* carosalsssssss */
/* Carousel Section Styles */
.carousel-container {
    position: relative;
    max-width: 100%;
    height: 100vh;
    /* Full viewport height for larger screens */
    margin: auto;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    position: relative;
    text-align: center;
    transition: opacity 1s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    /* Ensures the image height fills the container */
    object-fit: cover;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.carousel-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #7154c5;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .carousel-container {
        height: 40vh;
        /* Reduce height for smaller devices */
    }

    .carousel-slide img {
        height: 100%;
        /* Ensure image fills reduced height */
    }

    .carousel-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .carousel-nav button {
        padding: 8px;
    }
}

/* Bio Section Styles */
.bio-section {
    padding: 50px 20px;
    background-color: #000000;
    display: flex;
    font-family: "Armata", sans-serif;
    justify-content: center;
    align-items: center;
}

.bio-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    gap: 50px;
    margin: 60px;
}

.bio-image {
    flex: 1;
}

.bio-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.bio-content {
    flex: 2;
    color: #333;
    margin: 30px;
}

.bio-content h1 {
    font-family: "Armata", sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
    color: #7154c5;
    text-align: left;
}

.bio-content h2 {
    font-family: "Armata", sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: left;
}

.bio-content p {
    font-family: "B612", "Armata", sans-serif;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
    color: #b7b1b1;
}

/* Bio Social Media Styles */
.bio-social-media {
    margin-top: 30px;
    text-align: left;
}

.bio-social-media h3 {
    font-family: "Armata", sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #7154c5;
    text-align: left;
}

.bio-social-icons {
    display: flex;
    gap: 20px;
}

.bio-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bio-social-icons a:hover {
    background-color: #7154c5;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* bioooooo */
.bio-card {
    width: 500px;
    height: 700px;
    margin-left: 30px;
    background: url('assets/500x500trisha/11.png') no-repeat center center/cover;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .bio-section {
        padding: 40px 10px;
    }

    .bio-container {
        flex-direction: column;
        text-align: center;
        margin: 0;
        padding: 10px 5px;
        gap: 30px;
    }

    .bio-content h1 {
        font-size: 28px;
    }

    .bio-content h2 {
        font-size: 20px;
    }

    .bio-content p {
        font-size: 16px;
    }

    .bio-image {
        margin-bottom: 20px;
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bio-card {
        width: 90%;
        height: 500px;
        margin-left: 0;
        margin-top: 20px;
    }

    .bio-content {
        margin: 0;
        padding: 10px 5px;
        text-align: left;
        width: 100%;
    }

    .bio-content h1,
    .bio-content h2,
    .bio-social-media,
    .bio-social-media h3 {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .bio-section {
        padding: 30px 5px;
    }

    .bio-container {
        padding: 5px;
        gap: 20px;
    }

    .bio-content h1 {
        font-size: 24px;
    }

    .bio-content h2 {
        font-size: 18px;
    }

    .bio-content p {
        font-size: 14px;
    }

    .bio-card {
        width: 100%;
        height: 400px;
        margin-top: 15px;
    }

    .bio-content {
        padding: 5px 0;
        text-align: left;
    }

    .bio-content h1,
    .bio-content h2,
    .bio-social-media,
    .bio-social-media h3 {
        text-align: left;
    }
}

/* callbackssssss */
/* General Reset */
/* Dark Theme and Responsive Section Styling */

.request-callback-section {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 20px;
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* min-height: 100vh; */
}

.request-callback-container {
    max-width: 800px;
    width: 100%;
    background-color: #000000;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.request-callback-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #7154c5;
}

.request-callback-container p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #cfcfcf;
}

/* Form Styling */
.request-callback-form .form-group {
    margin-bottom: 20px;
}

.request-callback-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: start;
    color: #7154c5;
}

.request-callback-form input,
.request-callback-form select,
.request-callback-form textarea {
    width: 100%;
    padding: 10px;
    background-color: #333;
    border: 1px solid #ffffff;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    text-align: start;
}

#category,
#sub-category {
    padding: 30px;
}

.request-callback-form input::placeholder,
.request-callback-form select::placeholder,
.request-callback-form textarea::placeholder {
    color: #999;
}

.request-callback-form input:focus,
.request-callback-form select:focus,
.request-callback-form textarea:focus {
    border-color: #7154c5;
    box-shadow: 0 0 0 3px rgba(113, 84, 197, 0.25);
    outline: none;
}

/* Form Row for First Name/Last Name */
.form-row {
    display: flex;
    justify-content: space-between;
}

.form-row .form-group {
    width: 48%;
}

.submit-btn {
    background-color: #7154c5;
    color: #1e1e1e;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #7154c5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .request-callback-container {
        padding: 30px;
    }

    .request-callback-container h1 {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .form-group {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .request-callback-container {
        padding: 20px;
    }

    .request-callback-container h1 {
        font-size: 24px;
    }

    .request-callback-container p {
        font-size: 14px;
    }

    .request-callback-form input,
    .request-callback-form select,
    .request-callback-form textarea {
        font-size: 12px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px;
    }
}

/* Form validation styles */
.request-callback-form input.error,
.request-callback-form select.error,
.request-callback-form textarea.error {
    border: 2px solid #ff3860;
    background-color: rgba(255, 56, 96, 0.1);
}

.success-message {
    background-color: #48c774;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
    animation: fadeIn 0.5s;
}

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

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

/* fottresssssss */

/* Footer Styles */
.footer {
    background-color: #000000;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 0 20px;
}

.powered-by {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.powered-by p {
    margin: 0 10px 0 0;
    font-size: 16px;
}

.footer-logo {
    width: 120px;
    height: auto;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2;
    padding: 0 20px;
}

.copyright p {
    font-size: 18px;
    margin: 0;
    font-family: "B612", "Armata", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1;
}

.copyright .copyright-symbol {
    font-size: 2.2em;
    margin-right: 5px;
    vertical-align: middle;
}

.copyright .copyright-text {
    font-size: 1.3em;
    vertical-align: middle;
}

.social-media {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.social-media h3 {
    display: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons i {
    font-size: 18px;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .powered-by {
        flex: 0 0 auto;
        margin: 10px 20px;
    }

    .copyright {
        flex: 0 0 100%;
        order: 2;
        margin: 15px 0;
    }

    .social-media {
        flex: 0 0 auto;
        margin: 10px 20px;
    }

    .copyright p {
        font-size: 16px;
    }

    .copyright .copyright-symbol {
        font-size: 2.5em;
    }

    .copyright .copyright-text {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        gap: 15px;
    }

    .powered-by {
        width: 100%;
        margin: 8px 0;
    }

    .copyright {
        order: 2;
        margin: 15px 0;
    }

    .social-media {
        width: 100%;
        margin: 8px 0;
    }

    .footer-logo {
        width: 100px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #7154c5;
    color: white;
    padding: 15px;
    border-radius: 10px;
    /* Slight radius for square shape */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    /* Remove underline */
}

.back-to-top i {
    font-size: 24px;
}

.back-to-top:hover {
    background-color: #7154c5;
    transform: scale(1.1);
}

/* Show the button when scrolling down */
.show {
    display: flex;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        padding: 8px;
    }

    .back-to-top i {
        font-size: 20px;
    }
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.carousel-indicator.active {
    background-color: #fff;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.carousel-indicator:focus {
    outline: 2px solid #7154c5;
    outline-offset: 2px;
}

/* Improve carousel navigation buttons */
.carousel-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.carousel-nav button:focus {
    outline: 2px solid #7154c5;
    outline-offset: 2px;
}

/* Enhanced Social Media Section */
.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-media h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons a:nth-child(1):hover {
    background-color: #3b5998;
    /* Facebook */
}

.social-icons a:nth-child(2):hover {
    background-color: #1da1f2;
    /* Twitter */
}

.social-icons a:nth-child(3):hover {
    background-color: #e1306c;
    /* Instagram */
}

.social-icons a:nth-child(4):hover {
    background-color: #0077b5;
    /* LinkedIn */
}

.social-icons a:nth-child(5):hover {
    background-color: #ff0000;
    /* YouTube */
}

.social-icons i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .social-media {
        margin-top: 20px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }
}

/* Loading Animation */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #7154c5;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fade-out {
    opacity: 0;
}

/* Booking Section Styles */
.booking-section {
    padding: 80px 20px;
    background-color: #000000;
    position: relative;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.booking-container h1 {
    font-size: 48px;
    color: #7154c5;
    margin-bottom: 20px;
    font-weight: bold;
}

.booking-container>p {
    font-size: 20px;
    color: #b7b1b1;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.booking-card {
    background-color: rgba(113, 84, 197, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #7154c5;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.booking-icon {
    font-size: 40px;
    color: #7154c5;
    margin-bottom: 20px;
}

.booking-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.booking-card p {
    color: #b7b1b1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.booking-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 25px;
}

.booking-card ul li {
    color: #b7b1b1;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.booking-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #7154c5;
    position: absolute;
    left: 0;
}

.booking-btn {
    display: inline-block;
    background-color: #7154c5;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.booking-btn:hover {
    background-color: #5a43a0;
    transform: translateY(-3px);
}

.booking-process {
    margin-top: 70px;
}

.booking-process h2 {
    font-size: 36px;
    color: #7154c5;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #7154c5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.process-step p {
    color: #b7b1b1;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .booking-container h1 {
        font-size: 36px;
    }

    .booking-container>p {
        font-size: 18px;
    }

    .booking-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 50px 15px;
    }

    .booking-container h1 {
        font-size: 30px;
    }

    .booking-card {
        padding: 20px;
    }

    .booking-icon {
        font-size: 30px;
    }

    .booking-card h3 {
        font-size: 20px;
    }

    .booking-process h2 {
        font-size: 28px;
    }
}

.view-all-services {
    margin: 20px 0 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #7154c5;
    padding: 12px 25px;
    border: 2px solid #7154c5;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.view-all-btn span {
    margin-right: 10px;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background-color: #7154c5;
    color: white;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Remove Search Overlay */
.search-overlay {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "B612", "Bebas Neue", sans-serif;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* General text styling */
p {
    font-family: "B612", "Armata", sans-serif;
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    .copyright p {
        font-size: 14px;
    }
}

.powered-by p {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-logo {
    width: 120px;
    height: auto;
}