/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

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


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

















































  :root {
            --primary-color: #B78D65;
            --secondary-color: #D4B996;
            --accent-color: #9A7B4F;
            --light-accent: #E8D9C6;
            --text-color: #2C3E50;
            --light-text: #6C757D;
            --bg-color: #FFFFFF;
            --bg-gradient: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
            --card-shadow: 0 8px 24px rgba(183, 141, 101, 0.06);
            --card-hover-shadow: 0 16px 40px rgba(183, 141, 101, 0.12);
            --border-color: #F0E6DC;
            --transition-speed: 0.4s;
        }

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

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light-accent);
        }

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

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

        .ser1 {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            padding: 0 15px;
        }

        /* Header Section */
        .ser2 {
            text-align: center;
            padding: 50px 0;
            position: relative;
           
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
        }

        .ser2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(183, 141, 101, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 185, 150, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .ser3 {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #FFFFFF;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 50px;
            margin-bottom: 25px;
            letter-spacing: 1.2px;
            box-shadow: 0 6px 20px rgba(183, 141, 101, 0.3);
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            animation: pulse 2s ease-in-out infinite alternate;
            z-index: 1;
        }

        .ser3::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        .ser3::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            animation: badge-pulse 2s ease-in-out infinite;
        }

        .ser4 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-color);
            margin-bottom: 20px;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }

        .ser4::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
            background-size: 200% 100%;
            border-radius: 2px;
            animation: gradient-shift 3s ease-in-out infinite;
        }

        .ser5 {
            font-size: 1rem;
            color: var(--light-text);
            max-width: 100%;
            margin: 30px auto 0;
            font-weight: 400;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Services Section */
        .ser6 {
            padding: 40px 0 50px;
            min-height: 100vh;
            position: relative;
        }

        .ser7 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .ser8 {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 12px 32px rgba(183, 141, 101, 0.15);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 2px solid rgba(183, 141, 101, 0.25);
            cursor: pointer;
            opacity: 0;
            transform: translateY(30px) scale(0.98);
        }

        .ser8.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .ser8::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(183, 141, 101, 0.02) 0%, rgba(212, 185, 150, 0.02) 100%);
            z-index: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .ser8::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            background-size: 200% 100%;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
            z-index: 1;
        }

        .ser8:hover::before {
            opacity: 1;
        }

        .ser8:active {
            transform: scale(0.99) translateY(2px);
        }

        .ser8:hover {
            box-shadow: 0 20px 50px rgba(183, 141, 101, 0.25);
            transform: translateY(-8px);
            border-color: rgba(183, 141, 101, 0.4);
        }

        .ser8:hover::after {
            transform: scaleX(1);
            animation: gradient-flow 2s ease-in-out infinite;
        }

        .ser9 {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            gap: 16px;
        }

        .ser10 {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #FFFFFF;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 8px 20px rgba(183, 141, 101, 0.3);
            transition: all 0.4s ease;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .ser10::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .ser10::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.6s ease;
        }

        .ser8:hover .ser10 {
            transform: scale(1.05);
            box-shadow: 0 12px 25px rgba(183, 141, 101, 0.4);
        }

        .ser8:hover .ser10::before {
            transform: translateX(100%);
        }

        .ser8:hover .ser10::after {
            transform: translate(-50%, -50%) scale(1);
        }

        .ser8:active .ser10 {
            transform: scale(0.98);
        }

        .ser11 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-color);
            line-height: 1.3;
            flex: 1;
            position: relative;
        }

        .ser11::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transition: width 0.3s ease;
        }

        .ser8:hover .ser11::after {
            width: 40px;
        }

        .ser12 {
            color: var(--light-text);
            line-height: 1.6;
            margin-bottom: 18px;
            font-size: 0.85rem;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .ser12 p {
            margin: 0;
            position: relative;
            padding-left: 20px;
        }

        .ser12 p::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary-color);
            opacity: 0.8;
        }

        .ser13 {
            background: linear-gradient(135deg, var(--light-accent) 0%, rgba(232, 217, 198, 0.7) 100%);
            padding: 14px 16px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-color);
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .ser13::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(183, 141, 101, 0.15), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .ser8:hover .ser13 {
            background: linear-gradient(135deg, var(--border-color) 0%, rgba(240, 230, 220, 0.8) 100%);
            transform: translateX(5px);
            border-left-color: var(--accent-color);
        }

        .ser8:hover .ser13::before {
            transform: translateX(100%);
        }

        .ser8:active .ser13 {
            transform: translateX(3px);
        }

        .ser13 p {
            color: var(--text-color);
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 0;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        .ser14 {
            margin-top: auto;
            position: relative;
            z-index: 2;
            padding-top: 8px;
        }

        .ser15 {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #FFFFFF;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 12px 24px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 6px 16px rgba(183, 141, 101, 0.3);
            width: 100%;
            min-height: 46px;
            letter-spacing: 0.4px;
            text-decoration: none;
            transform-style: preserve-3d;
        }

        .ser15::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.6s ease;
            z-index: 1;
        }

        .ser15::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: 0;
        }

        .ser15 span {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ser15 i {
            font-size: 0.85rem;
            transition: transform 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .ser15:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(183, 141, 101, 0.4);
        }

        .ser15:hover::before {
            left: 100%;
        }

        .ser15:hover i {
            transform: translateX(4px);
        }

        .ser15:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(183, 141, 101, 0.3);
        }

        .ser15:active::after {
            width: 250px;
            height: 250px;
        }

        .ser15:focus-visible {
            outline: 3px solid var(--primary-color);
            outline-offset: 3px;
        }

        .ser8:focus-visible {
            outline: 3px solid var(--primary-color);
            outline-offset: 4px;
        }

        /* Special Service Card */
        .ser16 {
            grid-column: 1 / -1;
            display: flex;
            justify-content: flex-start;
        }

        .ser16 .ser8 {
            width: 100%;
            background: linear-gradient(135deg, #FFFFFF 0%, rgba(232, 217, 198, 0.15) 100%);
        }

        /* Stats Section */
        .ser17 {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 12px 32px rgba(183, 141, 101, 0.15);
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 50px;
            border: 2px solid rgba(183, 141, 101, 0.25);
            position: relative;
            overflow: hidden;
        }

        .ser17::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(183, 141, 101, 0.02) 0%, rgba(212, 185, 150, 0.02) 100%);
            z-index: 0;
        }

        .ser17::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(183, 141, 101, 0.03) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .ser18 {
            text-align: center;
            padding: 20px 16px;
            border-radius: 12px;
            transition: all 0.4s ease;
            background: rgba(183, 141, 101, 0.05);
            border: 1px solid rgba(183, 141, 101, 0.2);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .ser18::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(183, 141, 101, 0.1) 0%, rgba(212, 185, 150, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .ser18::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(183, 141, 101, 0.15) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: -1;
        }

        .ser18:hover::before {
            opacity: 1;
        }

        .ser18:hover::after {
            width: 200px;
            height: 200px;
        }

        .ser18:active {
            transform: scale(0.98);
        }

        .ser18:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 12px 25px rgba(183, 141, 101, 0.15);
            border-color: rgba(183, 141, 101, 0.4);
        }

        .ser19 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 8px;
            display: block;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .ser18:hover .ser19 {
            transform: scale(1.1);
        }

        .ser20 {
            font-size: 0.85rem;
            color: var(--light-text);
            font-weight: 500;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .ser18:hover .ser20 {
            color: var(--primary-color);
        }

        /* Background Elements */
        .ser21 {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }

        .ser22 {
            position: absolute;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.08;
            animation: float-random 20s infinite ease-in-out;
            background: var(--primary-color);
            filter: blur(30px);
        }

        .ser23 {
            position: fixed;
            z-index: -1;
            opacity: 0.05;
        }

        .ser24 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(45deg, rgba(183, 141, 101, 0.02) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(183, 141, 101, 0.02) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(183, 141, 101, 0.02) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(183, 141, 101, 0.02) 75%);
            background-size: 60px 60px;
            background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
            pointer-events: none;
            z-index: -1;
            opacity: 0.3;
        }

        .ser25 {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary-color);
            color: white;
            padding: 10px;
            z-index: 100;
            transition: top 0.3s;
            border-radius: 0 0 8px 0;
        }

        .ser25:focus {
            top: 0;
        }

        /* Animations */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 6px 20px rgba(183, 141, 101, 0.3);
            }
            100% {
                transform: scale(1.03);
                box-shadow: 0 8px 25px rgba(183, 141, 101, 0.4);
            }
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        @keyframes badge-pulse {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }

        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes gradient-flow {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 200% 50%;
            }
        }

        @keyframes float-random {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            33% {
                transform: translateY(-20px) rotate(5deg) scale(1.1);
            }
            66% {
                transform: translateY(10px) rotate(-3deg) scale(0.9);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .ser6 {
                padding: 40px 0;
            }

            .ser7 {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }

            .ser17 {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                padding: 32px 28px;
            }

            .ser15 {
                width: auto;
                min-width: 140px;
            }

            .ser16 .ser8 {
                max-width: calc(50% - 14px);
            }
        }

        @media (min-width: 1024px) {
            .ser6 {
                padding: 50px 0;
            }

            .ser7 {
                grid-template-columns: repeat(3, 1fr);
            }

            .ser17 {
                grid-template-columns: repeat(4, 1fr);
            }

            .ser16 .ser8 {
                max-width: calc(33.333% - 18px);
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

































































           .Revi1, .Revi2, .Revi3, .Revi4, .Revi5, .Revi6, .Revi7, .Revi8, .Revi9, .Revi10 {
            background: #ffffff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid rgba(183, 141, 101, 0.1);
            animation: cardFloat 4s ease-in-out infinite;
        }

        .Revi1 { animation-delay: 0.2s; }
        .Revi2 { animation-delay: 0.4s; }
        .Revi3 { animation-delay: 0.6s; }
        .Revi4 { animation-delay: 0.8s; }
        .Revi5 { animation-delay: 1.0s; }
        .Revi6 { animation-delay: 1.2s; }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-4px) rotate(0.3deg); }
            50% { transform: translateY(-2px) rotate(-0.3deg); }
            75% { transform: translateY(-3px) rotate(0.2deg); }
        }

        .Revi1::before, .Revi2::before, .Revi3::before, .Revi4::before, .Revi5::before, 
        .Revi6::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #B78D65, #D4A574, #E5C29F, #D4A574, #B78D65);
            background-size: 300% 100%;
            animation: borderFlow 2s linear infinite;
        }

        @keyframes borderFlow {
            0% { background-position: 300% 0; }
            100% { background-position: -300% 0; }
        }

        .Revi1::after, .Revi2::after, .Revi3::after, .Revi4::after, .Revi5::after, 
        .Revi6::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(183, 141, 101, 0.05) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(183, 141, 101, 0.04) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            animation: backgroundPulse 6s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 0; }
            50% { opacity: 0.2; }
        }

        .Revi1:hover::after, .Revi2:hover::after, .Revi3:hover::after, .Revi4:hover::after, 
        .Revi5:hover::after, .Revi6:hover::after {
            opacity: 0.3;
            animation: none;
        }

        .ReviDeco1, .ReviDeco2, .ReviDeco3, .ReviDeco4, .ReviDeco5, .ReviDeco6 {
            position: absolute;
            z-index: 1;
            opacity: 0.1;
            animation: shapeFloat 5s ease-in-out infinite;
        }

        @keyframes shapeFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            25% { transform: translate(5px, -8px) rotate(90deg) scale(1.05); }
            50% { transform: translate(-3px, -12px) rotate(180deg) scale(1.1); }
            75% { transform: translate(8px, -5px) rotate(270deg) scale(1.03); }
        }

        .ReviDeco1 { top: -20px; right: -20px; width: 80px; height: 80px; background: #B78D65; border-radius: 50%; animation-delay: 0s; }
        .ReviDeco2 { bottom: -25px; left: -25px; width: 90px; height: 90px; background: #B78D65; clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); animation-delay: 1s; }
        .ReviDeco3 { top: 15px; right: 15px; width: 60px; height: 60px; background: #B78D65; border-radius: 10px; animation-delay: 2s; }
        .ReviDeco4 { bottom: 15px; right: 15px; width: 70px; height: 50px; background: #B78D65; border-radius: 25px 25px 0 25px; animation-delay: 3s; }
        .ReviDeco5 { top: 50%; left: -15px; width: 60px; height: 60px; background: #B78D65; clip-path: polygon(0% 0%, 100% 50%, 0% 100%); animation-delay: 4s; }
        .ReviDeco6 { top: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 40px; background: #B78D65; border-radius: 40px 40px 0 0; animation-delay: 5s; }

        .Revi1:hover, .Revi2:hover, .Revi3:hover, .Revi4:hover, .Revi5:hover, 
        .Revi6:hover {
            transform: translateY(-6px) scale(1.02) rotate(0.5deg);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: rgba(183, 141, 101, 0.2);
            animation-play-state: paused;
        }

        .ReviHeader1, .ReviHeader2, .ReviHeader3, .ReviHeader4, .ReviHeader5, 
        .ReviHeader6 {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 15px;
            position: relative;
            z-index: 3;
        }

        .ReviInfo1, .ReviInfo2, .ReviInfo3, .ReviInfo4, .ReviInfo5, 
        .ReviInfo6 {
            display: flex;
            align-items: center;
        }

        .ReviAvatar1, .ReviAvatar2, .ReviAvatar3, .ReviAvatar4, .ReviAvatar5, 
        .ReviAvatar6 {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #B78D65, #D4A574);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(183, 141, 101, 0.3);
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
            animation: avatarPulse 3s ease-in-out infinite;
        }

        @keyframes avatarPulse {
            0%, 100% { box-shadow: 0 4px 12px rgba(183, 141, 101, 0.3); transform: scale(1) rotate(0deg); }
            50% { box-shadow: 0 6px 18px rgba(183, 141, 101, 0.5); transform: scale(1.03) rotate(3deg); }
        }

        .Revi1:hover .ReviAvatar1, .Revi2:hover .ReviAvatar2, .Revi3:hover .ReviAvatar3, 
        .Revi4:hover .ReviAvatar4, .Revi5:hover .ReviAvatar5, .Revi6:hover .ReviAvatar6 {
            transform: scale(1.08) rotate(5deg);
            animation: none;
            box-shadow: 0 6px 20px rgba(183, 141, 101, 0.6);
        }

        .ReviDetails1 h4, .ReviDetails2 h4, .ReviDetails3 h4, .ReviDetails4 h4, .ReviDetails5 h4, 
        .ReviDetails6 h4 {
            font-size: 1.1rem;
            margin-bottom: 3px;
            color: #333;
            font-weight: 600;
            position: relative;
            z-index: 3;
        }

        .ReviDetails1 p, .ReviDetails2 p, .ReviDetails3 p, .ReviDetails4 p, .ReviDetails5 p, 
        .ReviDetails6 p {
            font-size: 0.85rem;
            color: #6c757d;
            position: relative;
            z-index: 3;
        }

        .ReviQuote1, .ReviQuote2, .ReviQuote3, .ReviQuote4, .ReviQuote5, 
        .ReviQuote6 {
            font-size: 1.6rem;
            color: #B78D65;
            opacity: 0.8;
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
            animation: quoteOrbit 5s linear infinite;
        }

        @keyframes quoteOrbit {
            0% { transform: rotate(0deg) scale(1); }
            25% { transform: rotate(90deg) scale(1.05); }
            50% { transform: rotate(180deg) scale(1.1); }
            75% { transform: rotate(270deg) scale(1.05); }
            100% { transform: rotate(360deg) scale(1); }
        }

        .Revi1:hover .ReviQuote1, .Revi2:hover .ReviQuote2, .Revi3:hover .ReviQuote3, 
        .Revi4:hover .ReviQuote4, .Revi5:hover .ReviQuote5, .Revi6:hover .ReviQuote6 {
            transform: scale(1.15) rotate(8deg);
            color: #8C6849;
            animation: none;
        }

        .ReviContent1, .ReviContent2, .ReviContent3, .ReviContent4, .ReviContent5, 
        .ReviContent6 {
            margin-bottom: 15px;
            flex-grow: 1;
            position: relative;
            z-index: 3;
        }

        .ReviText1, .ReviText2, .ReviText3, .ReviText4, .ReviText5, 
        .ReviText6 {
            line-height: 1.5;
            font-size: 0.9rem;
            color: #333;
            position: relative;
            padding-left: 18px;
            border-left: 2px solid #D4A574;
        }

        .ReviText1::before, .ReviText2::before, .ReviText3::before, .ReviText4::before, .ReviText5::before, 
        .ReviText6::before {
            content: """;
            position: absolute;
            left: 0;
            top: -5px;
            font-size: 2rem;
            color: #D4A574;
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .ReviRating1, .ReviRating2, .ReviRating3, .ReviRating4, .ReviRating5, 
        .ReviRating6 {
            display: flex;
            margin-bottom: 12px;
            position: relative;
            z-index: 3;
        }

        .ReviStar1, .ReviStar2, .ReviStar3, .ReviStar4, .ReviStar5, 
        .ReviStar6 {
            color: #B78D65;
            margin-right: 3px;
            font-size: 1rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            animation: starTwinkle 3s ease-in-out infinite;
        }

        .ReviStar1 { animation-delay: 0.3s; }
        .ReviStar2 { animation-delay: 0.6s; }
        .ReviStar3 { animation-delay: 0.9s; }
        .ReviStar4 { animation-delay: 1.2s; }
        .ReviStar5 { animation-delay: 1.5s; }
        .ReviStar6 { animation-delay: 1.8s; }

        @keyframes starTwinkle {
            0%, 100% { opacity: 1; transform: scale(1) translateY(0); }
            50% { opacity: 0.8; transform: scale(1.1) translateY(-2px); }
        }

        .Revi1:hover .ReviStar1, .Revi2:hover .ReviStar2, .Revi3:hover .ReviStar3, 
        .Revi4:hover .ReviStar4, .Revi5:hover .ReviStar5, .Revi6:hover .ReviStar6 {
            transform: scale(1.2);
            animation: none;
        }

        .ReviFooter1, .ReviFooter2, .ReviFooter3, .ReviFooter4, .ReviFooter5, 
        .ReviFooter6 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid rgba(183, 141, 101, 0.1);
            position: relative;
            z-index: 3;
        }

        .ReviDate1, .ReviDate2, .ReviDate3, .ReviDate4, .ReviDate5, 
        .ReviDate6 {
            font-size: 0.8rem;
            color: #6c757d;
            font-weight: 500;
        }

        .ReviCompany1, .ReviCompany2, .ReviCompany3, .ReviCompany4, .ReviCompany5, 
        .ReviCompany6 {
            font-size: 0.8rem;
            font-weight: 600;
            color: #B78D65;
            background: rgba(183, 141, 101, 0.1);
            padding: 4px 10px;
            border-radius: 15px;
            transition: all 0.3s ease;
            animation: tagBounce 3s ease-in-out infinite;
        }

        @keyframes tagBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-2px) scale(1.03); }
        }

        .Revi1:hover .ReviCompany1, .Revi2:hover .ReviCompany2, .Revi3:hover .ReviCompany3, 
        .Revi4:hover .ReviCompany4, .Revi5:hover .ReviCompany5, .Revi6:hover .ReviCompany6 {
            background: rgba(183, 141, 101, 0.15);
            transform: translateY(-2px) scale(1.05);
            animation: none;
        }

        .ReviStats {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px 20px;
            margin-top: 30px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: center;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(183, 141, 101, 0.1);
            position: relative;
            overflow: hidden;
        }

        .ReviStats::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #B78D65, #D4A574, #E5C29F, #D4A574, #B78D65);
            background-size: 300% 100%;
            animation: borderFlow 2s linear infinite;
        }

        .ReviStatItem {
            padding: 10px;
            min-width: 120px;
            position: relative;
            z-index: 2;
        }

        .ReviStatNumber {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #B78D65;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ReviStatIcon {
            margin-right: 8px;
            font-size: 1.8rem;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-3px) scale(1.05); }
        }

        .ReviStatLabel {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 600;
        }

        .ReviContainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
        }

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

        @media (max-width: 768px) {
            .ReviGrid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .ReviStats {
                flex-direction: column;
                align-items: center;
                padding: 20px 15px;
                margin-top: 20px;
            }
            
            .ReviStatItem {
                margin-bottom: 15px;
            }
            
            .ReviContainer {
                padding: 15px 10px;
            }
        }