﻿:root {
    --yellow: #D4A017;
    --black: #000000;
    --gold: #E3B23C;
    --charcoal: #1A1A1A;
    --beige: #F4E2B8;
    --steel: #3A3A3A;
    --cream: #FAF7F0;
    --yellow-glow: #F0C53A;
    --midnight: #111111;
    --white: #FFFFFF;
    --light-grey: #C9C9C9;
    --Unbounded: "Poppins", sans-serif
}

html {
    scroll-behavior: smooth;
    width: 100%;
    height: auto;
    /* overflow-x: hidden; Removed to prevent implicit overflow-y: auto creation on root */
    background: #000;
}

body {
    font-family: "Inter", sans-serif;
    background: #000;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    /* Handle horizontal overflow here */
    overflow-y: visible;
    margin: 0;
}

.fs-13 {
    font-size: 13px;
}

.fs-15 {
    font-size: 15px;
}

.fw-semibold {
    font-weight: 600;
}

.font-poppins {
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.5s;
}

.btn-capsule {
    border-radius: 25px;
}

.btn-rounded {
    border-radius: 4px;
}

.btn-yellow {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--yellow) 0%, #F0C53A 100%);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    color: #FFFFFF;
    background: linear-gradient(135deg, #F0C53A 0%, var(--yellow) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
}

/* ============================================
   NAVBAR - MAIN CONTAINER
   ============================================ */
.navbar-dark {
    background: #000000;
    padding: 15px 0px;
    border-bottom: 2px solid var(--yellow-glow);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    align-items: center;
    overflow: visible;
    max-width: 100%;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Keep Bootstrap container sizing so navbar aligns with page content */
}

.navbar-collapse {
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
    /* Ensure dropdown scrolling is not blocked */
    overflow: visible;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
    min-width: 0;
    /* Ensure dropdown scrolling is not blocked */
    overflow: visible;
}

/* ============================================
   NAVBAR - BRAND/LOGO
   ============================================ */
.navbar-brand {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-brand:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.navbar-brand img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(212, 160, 23, 0.3));
}

.navbar-brand:hover img {
    filter: drop-shadow(0 4px 8px rgba(212, 160, 23, 0.5));
}

/* ============================================
   NAVBAR - NAVIGATION LINKS
   ============================================ */
.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
    min-width: 0;
}

.navbar-nav .nav-item .nav-link {
    margin: 0px 4px;
    padding: 8px 10px;
    font-size: 15px;
    color: #F4E2B8;
    font-weight: 500;
    font-family: var(--Unbounded);
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #FFFFFF;
}

/* Navigation link underline effect */
.navbar-nav .nav-item:not(.dropdown) .nav-link::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-glow) 100%);
    content: '';
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-item:not(.dropdown) .nav-link:hover::before {
    width: 80%;
}

/* ============================================
   NAVBAR - DROPDOWN MENUS
   ============================================ */
.navbar-nav .nav-item.dropdown {
    position: relative;
    /* Ensure dropdown scrolling is not blocked */
    overflow: visible;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
    position: absolute;
    left: 0;
    right: auto;
    transform: translateX(0);
    /* IMPORTANT: no gap between toggle and menu, otherwise hover closes when moving to menu */
    top: 100%;
    bottom: auto !important;
    margin-top: 0 !important;
    transform: none !important;
}

/* Class to position dropdown on the right when it would overflow */
.navbar-nav .nav-item.dropdown .dropdown-menu.dropdown-menu-right {
    left: auto;
    right: 0;
}

/* Ensure dropdown never causes viewport overflow */
.navbar-nav .nav-item.dropdown .dropdown-menu {
    max-width: min(400px, calc(100vw - 2rem));
}

.navbar-nav .nav-item.dropdown .dropdown-menu.mega-menu {
    max-width: min(450px, calc(100vw - 2rem));
}

/* Prevent dropdown from overflowing viewport - JavaScript handles dynamic positioning */

.navbar-nav .nav-item .dropdown-toggle::after {
    border-top-color: #F4E2B8;
    transition: all 0.3s ease;
    margin-left: 6px;
    vertical-align: 0.2em;
}

.navbar-nav .nav-item .dropdown-toggle:hover::after {
    border-top-color: #FFFFFF;
    transform: translateY(2px);
}

.navbar-nav .nav-item.show .dropdown-toggle::after {
    transform: rotate(180deg);
    border-top-color: var(--yellow);
}

/* ============================================
   NAVBAR - ACTION BUTTONS (Contact)
   ============================================ */
.navbar-nav .nav-item:has(.contact-btn) {
    margin-left: 6px;
    flex-shrink: 0;
}

.navbar-nav .nav-item .contact-btn {
    margin: 0;
    padding: 8px 18px;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================
   NAVBAR - USER MENU
   ============================================ */
.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-menu-toggle svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* ============================================
   NAVBAR - TOGGLER BUTTON (Mobile)
   ============================================ */
.navbar-toggler {
    border: 2px solid rgba(212, 160, 23, 0.5);
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    order: 2;
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 160, 23, 0.25);
    border-color: var(--yellow);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 160, 23, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
    width: 1.5em;
    height: 1.5em;
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(240, 197, 58, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:hover {
    border-color: var(--yellow-glow);
    background: rgba(212, 160, 23, 0.1);
}


/* ============================================
   NAVBAR - CONTACT BUTTON
   ============================================ */
.contact-btn {
    padding: 8px 16px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    background: #1A1A1A;
    border: 2px solid var(--yellow);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.2);
    white-space: nowrap;
}

.contact-btn svg {
    fill: #FFFFFF;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-btn:hover {
    color: #FFFFFF;
    background: rgba(26, 26, 26, 0.9);
    border-color: var(--yellow-glow);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
    transform: translateY(-2px);
}

.contact-btn::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 0%;
    height: 100%;
    content: '';
    background: rgba(212, 160, 23, 0.1);
    z-index: -1;
    transition: all 0.3s ease;
}

.contact-btn:hover svg {
    fill: #FFFFFF;
    transform: scale(1.1);
}

.contact-btn:hover::before {
    width: 100%;
}

.menu-dropdown {
    background-color: var(--charcoal);
    min-width: 320px;
    padding-top: 8px;
    padding-bottom: 8px;
    border: 1px solid var(--yellow);
    /* Keep dropdown fully visible in viewport and allow internal scrolling */
    max-height: calc(100vh - 120px) !important;
    overflow-y: auto !important;
    overflow-x: hidden;
    /* Make wheel/trackpad scrolling stay inside the dropdown */
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    /* Ensure smooth scrolling on all devices */
    scroll-behavior: smooth;
    /* Prevent scroll chaining to parent elements */
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 160, 23, 0.2);
    border-radius: 8px;
    /* IMPORTANT: no gap between toggle and menu (keeps hover stable + allows scroll) */
    margin-top: 0;
    animation: dropdownFadeIn 0.3s ease-out;
    z-index: 1050;
    left: 0;
    right: auto;
    word-wrap: break-word;
    max-width: min(400px, calc(100vw - 40px));
    /* Ensure dropdown can scroll independently */
    position: relative;
    will-change: scroll-position;
}

.menu-dropdown.show {
    display: block !important;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-dropdown.mega-menu {
    min-width: 350px;
    max-width: min(450px, calc(100vw - 40px));
}

.menu-dropdown .dropdown-item {
    color: #FFFFFF !important;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 15px;
    padding-right: 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
}

.menu-dropdown .dropdown-item:hover {
    color: var(--black) !important;
    background-color: var(--yellow);
    padding-left: 20px;
}

.menu-dropdown .dropdown-divider {
    border-color: rgba(212, 160, 23, 0.3);
    margin: 8px 0;
}

/* Category Headers */
.dropdown-category-header {
    margin-top: 8px;
    margin-bottom: 4px;
}

.dropdown-category-header:first-child {
    margin-top: 0;
}

.menu-dropdown .category-title {
    color: var(--yellow);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 15px;
    cursor: default;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    background: rgba(212, 160, 23, 0.08);
    border-left: 3px solid var(--yellow);
    border-radius: 6px;
    margin: 10px 8px 6px;
}

.menu-dropdown .category-title:hover {
    color: var(--yellow) !important;
    background-color: rgba(212, 160, 23, 0.08) !important;
    padding-left: 15px !important;
    cursor: default;
}

/* Header and Footer Links */
.dropdown-header-item .header-link,
.dropdown-footer-item .footer-link {
    background: linear-gradient(135deg, var(--yellow) 0%, #ff9800 100%);
    color: var(--black);
    font-weight: 700;
    text-align: center;
    padding: 14px 20px;
    margin: 0;
    border-radius: 0;
}

.dropdown-header-item .header-link:hover,
.dropdown-footer-item .footer-link:hover {
    background: linear-gradient(135deg, #ff9800 0%, var(--yellow) 100%);
    color: var(--black);
    padding-left: 20px;
}

.dropdown-footer-item {
    margin-top: 8px;
}

/* Scrollbar styling for dropdown */
.menu-dropdown::-webkit-scrollbar {
    width: 10px;
}

.menu-dropdown::-webkit-scrollbar-track {
    background: var(--charcoal);
}

.menu-dropdown::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 3px;
}

.menu-dropdown::-webkit-scrollbar-thumb:hover {
    background: #ff9800;
}

/* Header gradient section below navbar */
header::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(212, 160, 23, 0.8) 0%,
            rgba(240, 197, 58, 1) 50%,
            rgba(212, 160, 23, 0.8) 100%);
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
}

/* Gradient background for content area below header */
.banner-full-page {
    padding: 50px 0px 70px 0px;
    background: linear-gradient(135deg,
            rgba(30, 20, 50, 0.95) 0%,
            rgba(10, 10, 20, 0.98) 50%,
            rgba(0, 0, 0, 1) 100%);
    background-image: url(../img/portfolio-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    position: relative;
}

.banner-full-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(30, 20, 50, 0.6) 0%,
            rgba(10, 10, 20, 0.8) 50%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 0;
}

.banner-full-page>* {
    position: relative;
    z-index: 1;
}

.about-section {
    background-color: var(--charcoal);
    color: var(--light-grey);
}

.heading-section-2 {
    font-size: 18px;
    display: inline-block;
    position: relative;
    font-weight: 700;
    letter-spacing: 0.8px;
    word-spacing: 5px;
    color: #ffffff;
}

.heading-section-2::before {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 70%;
    height: 3px;
    background: #F0C53A;
    content: '';
}

.card-design-new {
    position: relative;
    height: 100%;
    background-image: url(../img/shubham-dhage-uSNuKKh7wpA-unsplash.jpg);
    z-index: 1;
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.card-design-new::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
}

.card-design-new.card-2 {
    background-image: url(../img/michael-dziedzic-O99bWwDMBa8-unsplash.jpg);
}

.position-svg svg {
    width: 28px;
    transform: rotate(-45deg);
    fill: #fff;
}

.bottom-text {
    position: absolute;
    bottom: 30px;
    width: 100%;
    padding: 0px 25px;
    z-index: 2;
}

.right-text {
    font-size: 17px;
    color: #fff;
    font-family: var(--Unbounded);
}

.heading-big-about {
    font-family: var(--Unbounded);
}

.heading-banner {
    color: var(--cream);
    font-family: var(--Unbounded);
    line-height: 1.2;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.para-banner {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.get-started {
    background: var(--yellow);
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 10px 30px;
    font-family: var(--Unbounded);
    font-size: 18px;
    color: #FFFFFF;
    white-space: nowrap;
    transition: all 0.5s;
}

.get-started svg {
    width: 20px;
    fill: #fff;
    transition: all 0.5s;
}

.whatsapp-btn {
    background: #04be13;
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 10px 30px;
    font-family: var(--Unbounded);
    font-size: 18px;
    color: #FFFFFF;
    white-space: nowrap;
    transition: all 0.5s;
}

.whatsapp-btn svg {
    width: 27px;
    fill: #fff;
    transition: all 0.5s;
}

.float-img {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
        /* you can increase or decrease */
    }

    100% {
        transform: translateY(0px);
    }
}

.get-started:hover {
    background: #F0C53A;
    color: #000000;
}

.get-started:hover svg {
    fill: #000;
}

.get-started::before {
    position: absolute;
    left: 0;

}

.text-animate-new {
    display: flex;
    align-items: center;
}

#typing-text {
    color: #f6b512;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: #D4A017;
    margin-left: 5px;
    animation: blink 0.6s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Hover dropdown only on desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block !important;
        margin-top: 0;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Prevent navbar overflow on desktop */
    .navbar .container {
        overflow: visible;
    }

    .navbar-nav {
        flex-wrap: nowrap;
    }
}

/* Medium screens - prevent overflow */
@media (min-width: 768px) and (max-width: 1199px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        padding: 8px 8px;
        margin: 0px 2px;
    }

    .navbar-nav .nav-item .contact-btn {
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* =================== Section -2 ============== */

.section-2 {
    background: var(--cream);
    /* background: #fff url(../img/client-bg.webp) no-repeat; */
    background-size: cover;
    padding: 47px 0 90px;
    /* background: #ffffff; */
    color: #2c2c2c;
    background-size: cover;
}

.icon-svg {
    transition: all 0.5s;
    background: #ffffff12;
    display: inline-flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.icon-svg svg {
    width: 40px;
    transition: all 0.5s;
    fill: #D4A017;
}

.card-choose {
    border-radius: 10px;
    transition: all 0.5s;
}

.card-choose:hover {
    transform: translateY(-5px);
    box-shadow: rgba(241, 241, 241, 0.1) 0px -3px 15px !important;
    border: 1px solid var(--yellow);
}

.card-choose:hover .icon-svg {
    background: #ffbc13;
}

.card-choose:hover .icon-svg svg {
    fill: #000;
}

.heading-wrappper-section {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--Unbounded);
    margin-bottom: 15px;
}

.same-text {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Initial hidden state */
.fadein {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* When visible */
.fadein.visible {
    opacity: 1;
    transform: translateY(0);
}

#partner-slider .item img {
    max-width: 220px !important;
    width: 123px !important;
    height: 100px !important;
    object-fit: contain;
}

.inline-border-bottom-heading {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--Unbounded);
    margin-bottom: 25px;
    border-bottom: 4px solid #ffbc13;
    display: inline-block;
}

.breadcrumb a {
    color: var(--yellow);
}

.breadcrumb li.active {
    color: #fff;
}

.title-about {
    font-size: 17px;
    font-weight: 600;
    color: var(--yellow);
    border-radius: 25px;
    border: 1px solid var(--yellow);
    padding: 10px 25px;
    margin-bottom: 15px;
    display: inline-flex;
}

.card-strategy {
    padding: 20px 20px;
    background-color: #cfcfcf20;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.comma-inside {
    font-size: 300%;
    color: #000000;
    font-weight: 700;
}

.user-name {
    color: #06072c;
    font-size: 26px;
    font-weight: 600;
    margin-top: 25px;
}

.testimonail-content {
    font-size: 17px;
    color: #000000;
    font-weight: 500;
}

#testimonial-slider .owl-dot span {
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 0px;
}

#testimonial-slider .owl-dot.active span {
    background-color: #000;
}

.card-services-list {
    border: 1px solid var(--yellow);
    border-radius: 8px;
    background: var(--charcoal);
    color: #fff;
    padding: 20px 25px;
    transition: all 0.5s;
}

.card-services-list:hover {
    background: #fff;
    color: #000;
}

.card-services-list:hover .card-para {
    color: #222222;
}

.hover-yellow {
    color: #fff;
}

.img-thumb {
    text-align: center;
    padding: 20px 0px 0px 0px;
}

.heading-card-body {
    text-align: center;
}

.img-hover {
    transition: all 0.5s;
}

.container {
    overflow-x: visible;
}

.img-hover:hover {
    background: #f6b512;
}

.img-hover .card-body p {
    text-align: center;
}

.card-services-list:hover .hover-yellow {
    color: #000;
}

.hover-yellow:hover {
    color: var(--yellow) !important;
}

.post-box {
    padding: 1rem;
    background: #2e2e2e;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: none;
    color: #fff;
}

.card-services-list:hover {
    transform: translateY(-5px);
}

.card-testmonial {
    padding: 15px 15px;
    border-radius: 10px;
}

.main-heading-testi-card {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}

.heading-card {
    font-size: 18px;
    font-family: var(--Unbounded);
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

.card-para {
    font-size: 16px;
    color: #bbbbbb;
    text-align: center;
}

/* =================== Section -2 End ============== */

.design-mapping {
    background: var(--charcoal);
    color: #ffffff;
    padding: 80px 0px;
}

.webste-type-capsule {
    border-radius: 25px;
    padding: 10px 20px;
    border: 1px solid #D4A017;
    text-decoration: none;
    color: var(--yellow);
    background-color: #bbbbbb25;
    display: inline-block;
    cursor: default;
}

.webste-type-capsule:hover {
    color: #D4A017;
}

.more-btn-click {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.2) 0%, rgba(212, 160, 23, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 25px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    margin-left: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.more-btn-click::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.4) 0%, rgba(212, 160, 23, 0.2) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.more-btn-click:hover {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.4) 0%, rgba(212, 160, 23, 0.3) 100%);
    border-color: rgba(212, 160, 23, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
    color: #fff;
}

.more-btn-click:hover::before {
    left: 0;
}

.more-btn-click:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212, 160, 23, 0.3);
}

.design-numbering {
    background-color: var(--cream);
    padding: 50px 0px;
}

.design-inside-numbering {
    margin: 60px 0px;
    background-image: url(../img/business-fact-img-1.webp);
    background-repeat: no-repeat;
    background-position: center center;
}

.strong-font {
    font-size: 28px;
    font-weight: 800;
    color: #717070;
}

.medium-font {
    font-size: 16px;
    color: #2c2c2c;
}

.padding-left {
    padding: 40px 40px 40px 0;
}

.padding-right {
    padding: 55px 0 40px 70px;
}

.client-testimonial-section {
    background-color: #F4F4F4;
    padding: 60px 0px;
}

.carousel-frame {
    width: 100%;
    border-radius: 10px;
}

#client-testimonial .owl-nav .owl-prev,
#client-testimonial .owl-nav .owl-next {
    border-radius: 50% !important;
    position: absolute;
    top: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background-color: #D4A017;
    transform: translateY(-50%);
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 10px;
}

#client-testimonial .owl-nav .owl-prev {
    left: -30px;
}

#client-testimonial .owl-nav .owl-next {
    right: -30px;
}

.testimonial-slider .owl-nav .owl-prev,
.testimonial-slider .owl-nav .owl-next {
    border-radius: 50% !important;
    position: absolute;
    top: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background-color: #D4A017 !important;
    transform: translateY(-50%);
    color: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 10px;
}

.testimonial-slider .owl-nav .owl-prev {
    left: -30px;
}

.testimonial-slider .owl-nav .owl-next {
    right: -30px;
}

.star-icon-flex svg {
    width: 18px;
    fill: var(--yellow);
}

.btn-type-review {
    border: 1px solid #e9ae0e;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f5f5f5;
}

.title-yellow {
    font-size: 17px;
    font-weight: 600;
    color: var(--yellow);
}

.visitor-section {
    margin-top: 40px;
}

.card-left-visitor {
    background: #ffffff;
    border-radius: 15px;
}

.card-body-visitor {
    background: #ffffff;
    border-radius: 15px;
}

.heading-footer-cta {
    padding: 50px 0px;
}

.card-body-visitor {
    padding: 20px 20px 20px 20px;
}

.card-top-img {
    border-radius: 15px 15px 0px 0px;
}

.contact-two-image {
    background: rgba(0, 0, 0, .75);
    background-blend-mode: multiply;
    height: 100%;
    padding: 52px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .address-block {
        margin-left: 40px;
    }
}

.address-block {
    background-color: transparent;
    padding: 45px;
    width: 100%;
    margin-right: auto;
    text-align: left;
    position: relative;
    z-index: 3;
}

.address-block-title span {
    display: inline-block;
    position: relative;
    background: linear-gradient(90deg, #FFA811 0%, #F33B00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.address-block-title h2 {
    font-size: 55px;
    color: #ffffff;
    margin-bottom: 14px;
}

.address-block-title p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
}

.address-block .address-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 45px;
}

.address-list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.address-list .address a {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    transition: .5s ease;
    text-decoration: none;
    cursor: default;
}

.address-list .address a:hover {
    color: #ffa811;
    text-decoration: none;
}

.booking-form {
    padding: 50px 40px;
    background-color: rgba(255, 242, 232, 0.5);
}

.form-style-one.sibling-four .form-inner {
    border-radius: 0;
    background-color: #ffffff;
}

.form-style-one .form-inner {
    background-color: var(--primary-one-light);
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 20px;
    border-radius: 5px;
}

.form-style-one.sibling-four .form-inner .input-icon {
    min-width: auto;
}

.form-style-one .form-inner input,
.form-style-one .form-inner textarea,
.form-style-one .form-inner select {
    background-color: transparent;
    padding: 12px;
    transition: .5s ease;
    width: 100%;
    outline: none;
    border: none;
    color: #5E5E5E;
    cursor: pointer;
}

.form-style-one .form-inner select {
    appearance: auto;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
}

#faqopen .accordion-button:not(.collapsed) {
    background-color: var(--yellow);
    color: #fff;
}

#faqopen .accordion-item {
    border: none;
}

#faqopen .accordion-button:not(.collapsed) {
    border: none;
}

#faqopen .accordion-collapse.collapse.show {
    border: 1px solid #5a3202;
    border-top: none;
    border-radius: 0px 0px 10px 10px;
}

#faqopen .accordion-button {
    border: 1px solid #5a3202;
    font-weight: 500;
    padding: 18px;
    color: #5a3202;
}

/* ====================    Footer Design =================== */
.footer-section {
    background: #000;
}

.footer-card {
    background: linear-gradient(180deg, #FFFFFF14 0%, #FFFFFF00 100%);
    margin-top: 60px;
    padding: 64px 64px 0px 64px;
    border-radius: 20px;
}

.list-footer-cont {
    padding-left: 0px;
    list-style: none;
    color: #fff;
    margin-top: 30px;
}

.list-footer-cont li {
    margin-bottom: 20px;
}

.icon-list-cont svg {
    fill: #fff;
    width: 17px;
}

.list-footer-cont li a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
}

.heading-footer-link {
    font-size: 17px;
    margin-bottom: 15px;
    color: #bbbbbb;
    font-weight: 600;
}

.footer-link-parent {
    padding-left: 0px;
    list-style: none;
}

.footer-link-parent li {
    margin-bottom: 10px;
}

.footer-link-parent li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.text-footer-counter {
    font-size: 22px;
    font-weight: 600;
    color: var(--yellow);
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    transition: all 0.5s;
}

.footer-social-icons a svg {
    fill: #000;
    width: 17px;
    transition: all 0.5s;
}

.footer-social-icons a:hover {
    background: var(--yellow);
}

.footer-social-icons a:hover svg {
    fill: #fff;
}

/* Certification Badges Styling */
.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: default;
}

.certification-badge svg {
    flex-shrink: 0;
}

.certification-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .certification-badge {
        padding: 8px 12px;
        gap: 6px;
    }

    .certification-badge svg {
        width: 20px;
        height: 20px;
    }

    .certification-badge span {
        font-size: 11px;
    }
}

/* ====================    Footer Design End=================== */
/* ==================== Portfolio Design Start=================== */
.banner-portfolio {
    padding: 70px 0px;
    position: relative;
    background-image: url(../img/portfolio-bg-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.banner-portfolio::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    opacity: 0.8;
    z-index: -1;
}

.flexing-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.portfolio-btn {
    padding: 10px 25px;
    border-radius: 5px;
    border: 1px solid var(--yellow);
    background-color: transparent;
    color: var(--yellow);
}

.portfolio-btn.active {
    background-color: var(--yellow);
    color: #000;
    font-weight: 600;
}

.grid-box-parent {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.grid-box {
    overflow: hidden;
    box-shadow: 0 0 #0000, 0 0 #0000,
        0 0 #0000, 0 0 #0000,
        0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);

    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.grid-box.hide {
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
}

.grid-box.none {
    display: none;
}

.grid-body {
    padding: 20px 15px;
    background-color: #fff;
}

.heading-card-project {
    font-size: 20px;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 10px;
}

.project-desc {
    color: var(--steel);
    font-size: 16px;
}

.cat-project {
    color: #0176fb;
    font-weight: 500;
    font-size: 14px;
}

.cat-project.voilet {
    color: rgb(139 92 246);
}

.go-to-service.voilet {
    background-color: rgb(139 92 246);
}

.cat-project.green {
    color: rgb(22 163 74);
}

.go-to-service.green {
    background-color: rgb(22 163 74);
}

.cat-project.orange {
    color: rgb(219, 161, 2);
}

.go-to-service.orange {
    background-color: rgb(219, 161, 2);
}

.go-to-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0176fb;
}

.img-parent img {
    transition: all 0.5s;
}

.img-parent {
    overflow: hidden;
}

.go-to-service svg {
    width: 16px;
    fill: #fff;
}

.grid-box:hover .img-parent img {
    scale: 1.1;
}

/* ==================== Portfolio Design End=================== */
/* ==================== Service Page Design Start=================== */
.services-page-banner {
    padding: 70px 0px;
    position: relative;
    z-index: 2;
}

.services-page-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(144deg, rgb(4 4 4 / 77%) 2%, rgb(24 28 26 / 92%) 44%, rgba(145, 121, 121, 0) 91%);
    opacity: 0.8;
    z-index: 0;
}

.service-page-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.title-service {
    padding: 10px 25px;
    border-radius: 25px;
    border: 1px solid var(--yellow);
    display: inline-block;
    color: var(--yellow);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: #00000070;
}

.heading-banner-service {
    font-size: 46px;
    font-weight: 700;
    color: var(--cream);
    /* text-align: justify; */
}

.text-banner-service {
    font-size: 18px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: justify;
}

.service-list-design {
    padding-left: 35px;
    list-style: none;
    margin-top: 20px;
}

.service-list-design li {
    position: relative;
    font-size: 16px;
    color: #141414;
    margin-bottom: 15px;
}

.service-list-design li::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 2px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--black);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4A017'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
}

.service-varsd-section {
    background-color: var(--charcoal);
    padding: 80px 0px;
    position: relative;
    background-color: #0A0A0A;
    background-image: url('../img/Plannerie-Manage-BG-1.webp');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}

.serction-overflow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg-service-card.webp);
    z-index: 0;
}

.card-services-page {
    border: 1px solid #FFFFFF1A;
    padding: 40px 28px 28px 28px;
    border-radius: 30px;
    z-index: 3;
    position: relative;
    overflow: hidden;
}

.card-services-page::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff0;
    background-image: radial-gradient(at top left, #A8CF3C 0%, #020B1000 100%);
    opacity: .16;
    border-radius: 30px;
    z-index: -1;
}

.icon-card-service {
    border-radius: 50%;
    background: #ffffff12;
    display: inline-flex;
    width: 80px;
    height: 80px;
}

.icon-card-service svg {
    width: 40px;
    fill: #dfdf06;
    margin: auto;
}

.card-heading-service-page {
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    margin-top: 20px;
    margin-bottom: 15px;
}

.card-listing {
    padding-left: 25px;
    list-style: none;
}

.card-listing li {
    margin-bottom: 15px;
    position: relative;
    color: var(--light-grey);
    font-size: 17px;
}

.card-listing li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 2px;
    background-image: url(../img/check-mark.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
}

/* ==================== Service Page Design End=================== */
/* ==================== Contact Page Design Start=================== */
.card-contact {
    border: 1px solid #FFFFFF1A;
    padding: 40px 28px 28px 28px;
    border-radius: 20px;
    background-color: #1A1A1A;
}

.icon-connect {
    border-radius: 50%;
    background: #ffffff12;
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;

}

.icon-connect svg {
    width: 22px;
    fill: var(--yellow);
}

.content-connect {
    font-size: 18px;
    color: var(--cream);
    max-width: calc(100% - 60px);
    text-decoration: none;
    font-weight: 500;
}

.content-connect:hover {
    text-decoration: underline;
    color: var(--yellow);
}

.section-space {
    padding: 90px 0px 100px 0px;
}

/* About Us Section - Complete Redesign */
.about-us-section-new {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.about-us-section-new .row {
    align-items: center;
    min-height: 600px;
}

.about-us-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.about-us-section-new::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 550px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(212, 160, 23, 0.1) 0%, rgba(212, 160, 23, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-image {
    width: 100%;
    height: auto;
    min-height: 550px;
    object-fit: contain;
    object-position: center top;
    filter: grayscale(20%) brightness(0.95);
    transition: transform 0.5s ease;
    display: block;
}

.about-image-container:hover .about-main-image {
    transform: scale(1.05);
}

.image-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    pointer-events: none;
}



/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    align-self: flex-end;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(212, 160, 23, 0.15) 100%);
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 11px;
    color: #d1d5db;
    font-weight: 500;
    line-height: 1.3;
}

/* Content Wrapper */
.about-content-wrapper {
    padding: 20px 0 20px 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    height: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(212, 160, 23, 0.15) 0%, rgba(212, 160, 23, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: auto;
}

.label-icon {
    display: flex;
    align-items: center;
}

.label-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--yellow);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 17px;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(212, 160, 23, 0.12) 100%);
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.2);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--yellow) 0%, #f4c430 100%);
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.service-icon svg {
    width: 14px;
    height: 14px;
    fill: #000;
}

.service-item span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* CTA Button */
.cta-wrapper {
    margin-top: 35px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--yellow) 0%, #f4c430 100%);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.6);
    background: linear-gradient(135deg, #f4c430 0%, var(--yellow) 100%);
}

.btn-cta-primary svg {
    width: 20px;
    height: 20px;
    fill: #000;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-content-wrapper {
        padding-left: 0;
        padding-top: 40px;
        height: auto;
        min-height: auto;
    }

    .about-image-wrapper {
        min-height: auto;
        margin-bottom: 30px;
        justify-content: flex-start;
    }

    .about-image-container {
        min-height: 400px;
        height: auto;
    }

    .about-main-image {
        min-height: 400px;
        object-fit: contain;
        object-position: center top;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        align-self: stretch;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    .stat-card {
        padding: 12px 8px;
    }
}

@media (max-width: 768px) {
    .about-us-section-new {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-description {
        font-size: 15px;
    }

    .service-item {
        padding: 10px 14px;
        gap: 10px;
    }

    .service-item span {
        font-size: 13px;
    }

    .service-icon {
        width: 26px;
        height: 26px;
    }

    .service-icon svg {
        width: 13px;
        height: 13px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .btn-cta-primary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

.about-us-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15) 0%, rgba(212, 160, 23, 0.05) 100%);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 50px;
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-us-badge svg {
    fill: var(--yellow);
    width: 18px;
    height: 18px;
}

.first-img-progress {
    width: 100%;
    height: 670px;
    overflow: hidden;
    border-radius: 0 0 268px 268px;
    position: relative;
}

.first-img-progress img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: relative;
    z-index: 1;
    /* clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); */
    transition: 1000ms;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.first-img-progress::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 97%;
    background-color: #eef4fc;
    border-radius: 260px;
}

.rated-img {
    top: 12%;
    right: -20%;
}

.rated-img,
.searched-img {
    position: absolute;
}

.searched-img {
    bottom: -98px;
    right: -74px;
    z-index: 1;
}

.progress-listing {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1;
    max-width: 260px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15) 0%, rgba(212, 160, 23, 0.05) 100%),
        radial-gradient(circle, rgba(212, 160, 23, 0.15) 1px, transparent 1px);
    background-size: 100% 100%, 10px 10px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 30px 25px;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateX(5px);
    background: transparent;
    border: none;
    box-shadow: none;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--yellow);
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.4);
}

.stat-icon svg {
    width: 18px;
    height: 18px;
    fill: #000;
}

.stat-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.engage-right-wrapper {
    padding-left: 80px;
    padding-top: 40px;
    position: relative;
    z-index: 1;
}

.engage-content {
    position: relative;
    z-index: 1;
}

.title-engage {
    font-size: 32px;
    text-transform: capitalize;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.engage-para {
    font-size: 18px;
    position: relative;
    font-weight: 400;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-wrap ul {
    list-style: none;
}

.feature-wrap ul {
    padding-left: 0;
    margin: 20px 0;
}

.feature-wrap ul li {
    font-weight: 500;
    color: #ffffff;
    font-size: 17px;
    position: relative;
    margin-top: 14px;
    padding-left: 35px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-wrap ul li:hover {
    color: var(--yellow);
    transform: translateX(5px);
}

.feature-wrap ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow) 0%, #f4c430 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 11px 11px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.4), 0 0 0 2px rgba(212, 160, 23, 0.1);
    z-index: 1;
}

.learn-more-btn {
    background: linear-gradient(90deg, rgb(68 113 191) 0%, rgb(67 133 245) 100%);
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 15px 35px;
    border-radius: 25px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    font-weight: 550;
    /* display: block; */
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--yellow) 0%, #f4c430 100%);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-learn-more:hover::before {
    left: 100%;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
    background: linear-gradient(135deg, #f4c430 0%, var(--yellow) 100%);
}

.btn-learn-more svg {
    fill: #000;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover svg {
    transform: translateX(5px);
}

.icon-card {
    text-align: center;
}

/* ==================== Contact Page Design End=================== */
@media(max-width:1024px) {
    .grid-box-parent {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width:991px) {
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* ============================================
       MOBILE NAVBAR - REORGANIZED
       ============================================ */
    .navbar-dark {
        padding: 15px 0px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 15px 0;
        gap: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin: 0;
    }



    .navbar-nav .nav-item .nav-link {
        margin: 0;
        padding: 12px 20px;
        border-radius: 8px;
        display: block;
        width: 100%;
    }

    .navbar-nav .nav-item .nav-link:hover {
        background: rgba(212, 160, 23, 0.1);
        color: var(--yellow);
    }

    /* Mobile - Action Buttons */
    .navbar-nav .nav-item:has(.contact-btn) {
        margin-left: 0;
        margin-top: 8px;
    }

    .contact-btn {
        width: 100%;
        margin: 0;
        justify-content: center;
        padding: 12px 20px;
    }

    /* Mobile - Dropdowns */
    .menu-dropdown {
        border: 1px solid rgba(212, 160, 23, 0.3);
        margin-top: 5px;
        position: static;
        width: 100%;
    }

    .heading-banner {
        font-size: 32px;
    }

    .heading-big-about {
        margin-top: 10px;
    }

    .heading-wrappper-section {
        font-size: 23px;
    }

    .design-inside-numbering {
        background: none;
        margin: 40px 0px 0px 0px;
    }

    .webste-type-capsule {
        padding: 10px 15px;
        font-size: 13px;
    }

    .design-numbering {
        padding-bottom: 0px;
    }

    .design-mapping {
        padding-top: 40px;
    }

    .footer-card {
        padding: 58px 0px 0px 15px;
    }

    .btn-type-review {
        padding: 15px 5px;
    }

    .padding-right {
        padding: 0px 0 40px 0px;
    }

    .padding-left {
        padding: 0px 40px 40px 0;
    }

    #client-testimonial .owl-nav .owl-next {
        right: -15px;
    }

    #client-testimonial .owl-nav .owl-prev {
        left: -15px;
    }

    .user-name {
        font-size: 18px;
    }

    .flexing-btn-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .portfolio-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .contact-btn {
        font-size: 13px;
    }
}

@media(max-width:768px) {
    .menu-dropdown {
        min-width: 100%;
        max-width: 100%;
        max-height: 70vh;
    }

    .menu-dropdown.mega-menu {
        min-width: 100%;
    }

    .menu-dropdown .category-title {
        font-size: 12px;
        padding-top: 12px;
        padding-bottom: 6px;
    }

    .menu-dropdown .dropdown-item {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 14px;
    }

    .grid-box-parent {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }

    .testimonial-slider .owl-nav .owl-next {
        right: -15px;
    }

    .testimonial-slider .owl-nav .owl-prev {
        left: -15px;
    }

    .title-engage {
        font-size: 24px;
    }

    .rated-img,
    .searched-img {
        display: none;
    }

    .section-space {
        padding-bottom: 20px;
    }

    .engage-right-wrapper {
        padding-left: 0px;
        padding-top: 30px;
    }

    .about-us-section {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    }

    .title-engage {
        font-size: 28px;
        line-height: 1.3;
    }

    .engage-para {
        font-size: 16px;
    }

    .feature-wrap ul li {
        font-size: 15px;
        margin-top: 12px;
    }

    .about-us-badge {
        font-size: 13px;
        padding: 6px 14px;
    }

    .btn-learn-more {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .progress-listing {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 30px;
        max-width: 100%;
        gap: 10px;
    }

    .stat-item {
        padding: 10px 14px;
    }

    .stat-text {
        font-size: 13px;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
    }

    .stat-icon svg {
        width: 16px;
        height: 16px;
    }

    .whatsapp-btn,
    .get-started {
        padding: 7px 13px;
        font-size: 14px;
    }

    .heading-banner-service {
        font-size: 32px;
        text-align: start;
    }

    .address-block {
        padding: 20px 20px;
    }

    .services-page-banner {
        padding-bottom: 50px;
    }

    .address-block-title h2 {
        font-size: 32px;
    }

    .booking-form {
        padding: 30px 0px;
    }
}

/* Read More Button Styling */
.card-services-list .btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    background: transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.card-services-list:hover .btn {
    border-color: #000;
    color: #000;
}

.card-services-list .btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000 !important;
}