body {
    margin: 0;
    padding-top: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
}


.text-justify {
    text-align: justify;
}

.menu-toggle {
    position: absolute;

    right: -60px;

    width: 48px;
    height: 48px;
    background: linear-gradient(90deg, #D033AE 0%, #425CFE 100%);
    border-radius: 50%;

    cursor: pointer;
    z-index: 20001;
}

@media (max-width: 768px) {
    .menu-toggle {
        right: -12px;
    }
}

.menu-toggle.active {
    background: #fff;
}

.menu-toggle.active span {
    background: #000;
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all 0.4s ease;
    transform: translateX(-50%);
    background: #fff;
}


.menu-toggle span:nth-child(1) {
    top: 18px;
}

.menu-toggle span:nth-child(2) {
    top: 26px;
}

.menu-toggle.active span:nth-child(1),
.menu-toggle.active span:nth-child(2) {
    top: 50%;
    left: 50%;
}

.menu-toggle.active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.zoom-menu {
    position: fixed;
    inset: 0;

    background: linear-gradient(344deg, #8f2879 0%, #3d53dc 100%);
    color: #fff;
    z-index: 10000;
    height: 98vh;
    border-radius: 40px;
    margin: 10px;
    overflow-y: auto;
    transform: scale(0);
    transform-origin: top right;

    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);

    /* overflow: hidden; */

}

.zoom-menu.active {
    transform: scale(1);
}

.menu-links ul {
    list-style: none;
    padding: 0;
}

.menu-links ul li {
    font-size: 70px;
    font-weight: bold;
    margin: 7px 47px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-links ul li:hover {
    color: #ffc107;
}

.preview-card {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .menu-links ul li {
        font-size: 40px;
    }
}

.menu-inner {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    overflow-y: auto;
}

.menu-inner {
    scroll-behavior: smooth;
}

.zoom-menu.active .menu-inner {
    opacity: 1;
    transform: translateY(0);
}

.menu-links {
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 100px;
    /* bottom space */
}


.menu-links::-webkit-scrollbar {
    width: 6px;
}

.menu-links::-webkit-scrollbar-thumb {
    background: rgb(0 0 0 / 0%);
    border-radius: 10px;
}

.menu-inner::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: rgb(0 0 0 / 0%);
    left: 50%;
}

.menu-inner,
.menu-inner * {
    border-right: none !important;
    border-left: none !important;
}


.menu-links ul li {
    opacity: 0;
    transform: translateY(30px);
}

.zoom-menu.active .menu-links ul li {
    opacity: 1;
    transform: translateY(0);
}

.zoom-menu.active .menu-links ul li:nth-child(1) {
    transition-delay: 0.2s
}

.zoom-menu.active .menu-links ul li:nth-child(2) {
    transition-delay: 0.3s
}

.zoom-menu.active .menu-links ul li:nth-child(3) {
    transition-delay: 0.4s
}

.zoom-menu.active .menu-links ul li:nth-child(4) {
    transition-delay: 0.5s
}

.zoom-menu.active .menu-links ul li:nth-child(5) {
    transition-delay: 0.6s
}

.zoom-menu.active .menu-links ul li:nth-child(6) {
    transition-delay: 0.7s
}



/* ================= VIDEO SIDE ================= */

.video-box {
    width: 420px;
    height: 520px;
    /* border-radius: 30px; */
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: rotate(-5deg);
    transition: 0.5s ease;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-box:hover {
    transform: rotate(0deg) scale(1.05);
}

/* ================= PREMIUM MENU STYLE ================= */

.menu-links ul li {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .menu-links ul li {
        font-size: 28px;
    }
}

.menu-links ul li:hover a {
    color: #ff07ea;
    transform: translateX(15px);
    text-shadow: 0 0 15px rgba(243, 8, 184, 0.6);
}

.menu-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.4s ease;
    display: inline-block;
}


.menu-links ul li:hover::after {
    width: 100%;
}

/* Social Links */
.menu-social {
    margin-top: 50px;
}

.menu-social a {
    color: #888;
    margin-right: 20px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.menu-social a:hover {
    color: #fff;
}


/* Top Small Content */
.menu-top-content {
    margin-bottom: 60px;
}

.menu-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffc107;
    display: block;
    margin-bottom: 10px;
    padding-top: 45px;
}

.menu-description {
    font-size: 16px;
    color: #aaa;
    max-width: 400px;
    line-height: 1.6;
}


.menu-top-content {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.zoom-menu.active .menu-top-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}



.sub-menu {
    list-style: none;
    padding-left: 15px;
    margin-top: 15px;

    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.has-submenu.active .sub-menu {
    max-height: 542px;
}


.sub-menu {
    padding: 0;
    margin-top: 10px;
    list-style: none;
    margin-left: 15px;
}

.sub-menu li {
    margin: 8px 0;
}

.sub-menu li a {
    font-size: 18px;
    /* font-weight: 400; */
    color: #aaa;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.sub-menu li a:hover {
    color: #ffc107;
    padding-left: 6px;
}


.sub-menu,
.sub-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.service-modal.active {
    display: flex;
}

.service-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}

.service-modal__content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 40px;
    z-index: 2;
    animation: scaleIn 0.3s ease;
}

.service-modal__body img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.service-modal__body h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.service-modal__body p {
    color: #555;
    line-height: 1.6;
}

.service-modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 576px) {
    .service-modal__content {
        padding: 25px;
    }

    .service-modal__body h3 {
        font-size: 20px;
    }
}

.sec-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
}

#typing-text {
    border-right: 3px solid #000;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        border-color: #000;
    }

    50% {
        border-color: transparent;
    }

    100% {
        border-color: #000;
    }
}

/* Testimonial */

.testimonial-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content {
    flex: 1;
}

.testimonial-name {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    visibility: visible;
}

.service-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.service-modal.active {
    display: flex;
}

.service-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.service-modal__content {
    position: relative;
    background: #fff;
    width: 600px;
    /* modal width */
    max-width: 90%;
    border-radius: 15px;
    padding: 30px;
    z-index: 2;
    animation: fadeIn 0.3s ease;
}

.service-modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

.service-modal__body {
    text-align: center;
}

.service-modal__body img {
    width: 180px;
    /* image width reduced */
    max-width: 100%;
    margin-bottom: 20px;
}

.service-modal__body h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-modal__body p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

@keyframes fadeIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.service-modal__body h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
}

.modal-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: #ffffff;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}



.service-modal__body img {
    width: 150px;
    border-radius: 50%;
    padding: 10px;
    background: #f5f5f5;
}

.service-modal__content {
    transform: scale(0.8);
    opacity: 0;
    transition: 0.3s ease;
}

.service-modal.active .service-modal__content {
    transform: scale(1);
    opacity: 1;
}

.modal-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.modal-btn-wrapper::before,
.modal-btn-wrapper::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ccc;
    margin: 0 15px;
}

.modal-btn {
    padding: 10px 25px;
    padding-top: 0px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 14px;
}

.modal-btn:hover {
    color: #808080;
}


.letter-scroll-section {
    padding: 150px 20px;
}

.letter-scroll-text {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
}

.letter-scroll-text span {
    color: #bfbfbf;
    /* dull color */
    transition: color 0.3s linear;
}

@media (max-width: 768px) {
    .letter-scroll-text {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .video-box {
        display: none;
    }
}

.menu-links .sub-menu {
    display: none;
}

.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.contact_icon {
    background: linear-gradient(90deg, #3E5DFF 0%, #D930AA 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.text_icon {
    text-align: center;
    margin-top: 8px;
}

.chat_box {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 300px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 9999;
}

.chat_header {
    background: linear-gradient(90deg, #3E5DFF 0%, #D930AA 100%);
    color: #fff;
    padding: 12px;
    font-weight: bold;
}

.chat_body {
    padding: 15px;
    background: #f9f9f9;
}

.chat_footer {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat_footer input {
    flex: 1;
    border: none;
    padding: 12px;
    outline: none;
}

.chat_footer button {
    background: linear-gradient(90deg, #3E5DFF 0%, #D930AA 100%);
    color: #fff;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
}



.chat-toggle {

    width: 70px;
    height: 70px;

    background: linear-gradient(135deg, #3E5DFF, #D930AA);

    position: fixed;

    right: 25px;
    bottom: 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 30px;

    color: #fff;

    box-shadow:
        0 10px 30px rgba(62, 93, 255, 0.4);

    z-index: 999;

    transition: 0.3s ease;

}

.chat-toggle:hover {

    transform: scale(1.08);

}

/* CHAT CONTAINER */

.chat-container {

    width: 370px;
    height: 600px;

    position: fixed;

    right: 25px;
    bottom: 110px;

    background: rgba(20, 20, 30, 0.95);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3);

    z-index: 999;

    color: #fff;

}

/* HEADER */

.chat-header {

    background:
        linear-gradient(90deg, #3E5DFF, #D930AA);

    color: #fff;

    padding: 18px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.chat-header h5 {
    margin-bottom: 0;
}

.chat-header button {

    background: rgba(255, 255, 255, 0.2);

    border: none;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    color: #fff;

    cursor: pointer;

    transition: 0.3s;

}

.chat-header button:hover {

    background: rgba(255, 255, 255, 0.3);

}

/* BODY */

.chat-body {

    flex: 1;

    padding: 20px;

    overflow-y: auto;

    background:
        linear-gradient(180deg,
            rgba(25, 25, 35, 0.95),
            rgba(35, 35, 50, 0.92));

}

.chat-body::-webkit-scrollbar {
    width: 5px;
}

.chat-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

/* MESSAGES */

.bot-message,
.user-message {

    padding: 12px 15px;

    margin-bottom: 15px;

    border-radius: 15px;

    max-width: 80%;

    word-wrap: break-word;

}

.bot-message {

    background: rgba(255, 255, 255, 0.12);

    color: #fff;

    padding: 14px 18px;

    border-radius: 18px 18px 18px 5px;

    margin-bottom: 15px;

    max-width: 85%;

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.08);

}

.user-message {

    background:
        linear-gradient(135deg, #3E5DFF, #D930AA);

    color: #fff;

    padding: 14px 18px;

    border-radius: 18px 18px 5px 18px;

    margin-bottom: 15px;

    max-width: 85%;

    margin-left: auto;

    box-shadow:
        0 5px 15px rgba(62, 93, 255, 0.3);

}

/* FOOTER */

.chat-footer {

    padding: 15px;

    display: flex;

    gap: 10px;

    background: rgba(255, 255, 255, 0.08);

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

}

.chat-footer input {

    flex: 1;

    padding: 14px;

    border: none;

    outline: none;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.15);

    color: #fff;

    font-size: 15px;

}

.chat-container {
    display: none;
}

.chat-container.active {
    display: flex;
}

.chat-footer input::placeholder {

    color: rgba(255, 255, 255, 0.7);

}

.chat-footer button {

    width: 52px;

    border: none;

    border-radius: 14px;

    background:
        linear-gradient(135deg, #3E5DFF, #D930AA);

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s;

}

.chat-footer button:hover {

    transform: scale(1.05);

}

/* MOBILE */

@media(max-width:500px) {

    .chat-container {

        width: 95%;
        height: 90vh;

        right: 2.5%;
        bottom: 90px;

    }

}

/* TYPING ANIMATION */

.typing {

    display: flex;
    align-items: center;
    gap: 5px;

    background: #e4ecff;

    width: 70px;

    padding: 12px 15px;

    border-radius: 15px;

    margin-bottom: 15px;

}

.typing span {

    width: 8px;
    height: 8px;

    background: #555;

    border-radius: 50%;

    animation: blink 1s infinite;

}

/* DELAY */

.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

/* ANIMATION */

@keyframes blink {

    0% {
        opacity: 0.2;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-3px);
    }

    100% {
        opacity: 0.2;
        transform: translateY(0);
    }

}

/* MESSAGE ANIMATION */

.bot-message,
.user-message {

    animation: fadeIn 0.3s ease;

}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* WHATSAPP BUTTON */

.whatsapp-btn {

    display: inline-block;

    background: #25D366;

    color: #fff;

    text-decoration: none;

    padding: 12px 18px;

    border-radius: 12px;

    font-weight: bold;

    margin-top: 10px;

    transition: 0.3s;

}

.whatsapp-btn:hover {

    transform: scale(1.05);

}

/* QUICK REPLIES */

.quick-replies {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 20px;

}

.quick-replies button {

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.1);

    color: #fff;

    padding: 10px 16px;

    border-radius: 30px;

    font-size: 13px;

    cursor: pointer;

    transition: 0.3s;

}

.quick-replies button:hover {

    background:
        linear-gradient(135deg, #3E5DFF, #D930AA);

    transform: translateY(-2px);

}


/* Hero Banner Responsive Fix */

.hero-one {
    overflow: hidden;
}

.hero-one .container {
    position: relative;
}

.hero-one__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    text-align: right;
}

.hero-one__image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Laptop View Fix */
@media (max-width: 1440px) {
    .hero-one__image {
        width: 45%;
        right: 20px;
    }

    .hero-one__image img {
        max-width: 600px;
    }
}

/* Tablet View */
@media (max-width: 991px) {

    .hero-one {
        padding-bottom: 80px;
    }

    .hero-one__image {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
        text-align: center;
        margin-top: 40px;
    }

    .hero-one__image img {
        max-width: 100%;
    }
}

/* Mobile View */
@media (max-width: 767px) {

    .hero-one__title {
        font-size: 42px;
        line-height: 52px;
    }

    .hero-one__name {
        font-size: 40px;
    }

    .hero-one__image img {
        width: 100%;
        max-width: 100%;
    }
}

.hero-one__image {
    right: -80px;
}