
.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 {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-dark,
.btn.btn-outline-dark:hover {
    color: var(--bs-white);
    font-weight: 500;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    border-color: var(--bs-dark);
}

.btn.btn-dark:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.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;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 10px 0;
    color: var(--bs-secondery);
    font-size: 17px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .navbar-nav .dropdown-item:hover,
.navbar .navbar-nav .dropdown-item.active {
    background: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-light {
    font-weight: 500;
    color: var(--bs-secondery);
}

.navbar .btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}
/*** Hero - UI/UX Focused ***/
.hero-header {
    /* 1. Background Setup: Center the focus */
    background: url(../img/Adobe\ Express\ -\ file\ \(12\).png) center center no-repeat;
    background-size: cover;
    
    /* 2. Visual Balance: Use a fixed height for a clean initial view */
    /* This makes sure the header isn't unnecessarily long or short */
    min-height: 80vh; 
    
    /* 3. Text Readability & Alignment: Important for user experience */
    /* Assuming your text is directly inside .hero-header or a child element */
    display: flex; /* Use Flexbox to easily center content */
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Vertically center the content */
    align-items: center; /* Horizontally center the content */
    text-align: center; /* Center the text itself */
    color: #ffffff; /* Use a light color for text if the background is dark */
    padding: 20px; /* Add some padding so content doesn't touch the screen edges */
    z-index: 1; /* Ensure header is above any potential elements */
    position: relative; /* Needed for the pseudo-element overlay */
}

/* 4. Readability Fix: Add a dark semi-transparent overlay (Crucial for UX) */
.hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Creates a black, 30% transparent layer */
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: -1; /* Place the overlay *behind* the text/content */
}

/* 5. Mobile Optimization (Media Query) */
@media (max-width: 768px) {
    .hero-header {
        /* Reduce the height slightly on smaller screens */
        min-height: 60vh; 
        
        /* Remove background-attachment: fixed on mobile for better performance
           (You might need to add this directly to the main style if you use it there) */
        background-attachment: scroll; 
    }
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}

.page-header {
    background: url(../img/hero.jpg) center right no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-secondery)
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--bs-primary);
}


/*** Appointment ***/
@media (min-width: 992px) {
    .container.appointment {
        max-width: 100% !important;
    }

    .container.appointment .appointment-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.appointment .appointment-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.appointment .appointment-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.appointment .appointment-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.appointment .appointment-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.appointment .appointment-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.appointment .appointment-text {
    background: linear-gradient(rgba(205, 95, 55, .95), rgba(205, 95, 55, .95)), url(../img/service-4.jpg) center center no-repeat;
    background-size: cover;
}

.container.appointment .appointment-form {
    background: linear-gradient(rgba(72, 30, 11, .95), rgba(72, 30, 11, .95)), url(../img/service-1.jpg) center center no-repeat;
    background-size: cover;
}

.container.appointment .appointment-text .h-100,
.container.appointment .appointment-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item .service-text {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.service-item .service-img {
    transition: .5s;
}

.service-item:hover .service-img {
    transform: scale(1.2) rotate(7deg);
}



/*** Features ***/
.feature .feature-item .btn-square {
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border: 15px solid var(--bs-white);
}

.twentytwenty-wrapper {
    height: 100%;
}


/*** Team ***/
.team {
    position: relative;
}

.team::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 110px;
    left: 0;
    bottom: 3rem;
    background: var(--bs-light);
    z-index: -1;
}

.team .team-item {
    position: relative;
    overflow: hidden;
}

.team .team-item img {
    position: relative;
    transform: scale(1.1);
    transition: .5s;
}

.team .team-item:hover img {
    margin-top: -30px;
    padding-bottom: 30px;
}

.team .team-text {
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team .team-text-overflow {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-text-overflow {
    bottom: 0;
    opacity: 1;
}



/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    animation: pulse-img 5s ease-out infinite;
}

@keyframes pulse-img {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 0;
    }
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark);
}


/*** Footer ***/
.footer {
    color: rgba(256, 256, 256, .6);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(256, 256, 256, .6);
    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: rgba(256, 256, 256, .6);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(256, 256, 256, .6);
    border: 1px solid rgba(256, 256, 256, .6);
}

.footer .btn.btn-square:hover {
    color: var(--bs-white);
    border-color: var(--bs-primary);
    background: var(--bs-primary);
}

.footer .form-control {
    color: var(--bs-light);
    border-color: rgba(256, 256, 256, .6);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}































 .ekta-main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .ekta-header {
            text-align: center;
            margin-bottom: 60px;
            animation: ektaFadeIn 1s ease-out;
        }

        .ekta-title {
            font-size: 3.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, rgba(205, 95, 55, 0.95) 0%, #c4552a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            letter-spacing: 1px;
        }

        .ekta-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: rgba(205, 95, 55, 0.95);
            border-radius: 3px;
        }

        .ekta-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 800px;
            margin: 30px auto 0;
            font-weight: 300;
        }

        .ekta-services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .ekta-service-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            animation: ektaSlideUp 0.6s ease-out;
            animation-fill-mode: both;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .ekta-service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 35px rgba(205, 95, 55, 0.15);
        }

        .ekta-service-icon-container {
            background: linear-gradient(135deg, rgba(205, 95, 55, 0.95) 0%, #d46a3c 100%);
            color: white;
            padding: 25px;
            text-align: center;
            font-size: 2.8rem;
            position: relative;
            overflow: hidden;
        }

        .ekta-service-icon-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: all 0.4s ease;
        }

        .ekta-service-card:hover .ekta-service-icon-container::before {
            transform: rotate(45deg) translate(20px, 20px);
        }

        .ekta-service-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 5px 0 15px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            z-index: 2;
            position: relative;
        }

        .ekta-service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .ekta-service-list {
            list-style-type: none;
            flex-grow: 1;
        }

        .ekta-service-item {
            padding: 14px 0;
            border-bottom: 1px dashed #f0f0f0;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .ekta-service-item:last-child {
            border-bottom: none;
        }

        .ekta-service-item:hover {
            background: rgba(205, 95, 55, 0.05);
            padding-left: 10px;
        }

        .ekta-item-icon {
            margin-right: 15px;
            color: rgba(205, 95, 55, 0.95);
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
            flex-shrink: 0;
        }

        .ekta-service-text {
            flex: 1;
            font-weight: 500;
            color: #555;
        }

        /* Delayed animations for each service box */
        .ekta-ser1 { animation-delay: 0.1s; }
        .ekta-ser2 { animation-delay: 0.2s; }
        .ekta-ser3 { animation-delay: 0.3s; }
        .ekta-ser4 { animation-delay: 0.4s; }
        .ekta-ser5 { animation-delay: 0.5s; }
        .ekta-ser6 { animation-delay: 0.6s; }
        .ekta-ser7 { animation-delay: 0.7s; }
        .ekta-ser8 { animation-delay: 0.8s; }
        .ekta-ser9 { animation-delay: 0.9s; }
        .ekta-ser10 { animation-delay: 1.0s; }

        /* Keyframe animations */
        @keyframes ektaFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes ektaSlideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 1100px) {
            .ekta-services-container {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .ekta-title {
                font-size: 2.5rem;
            }
            
            .ekta-subtitle {
                font-size: 1.1rem;
            }
            
            .ekta-services-container {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .ekta-main-container {
                padding: 30px 15px;
            }
            
            .ekta-title {
                font-size: 2.2rem;
            }
            
            .ekta-service-icon-container {
                padding: 20px;
                font-size: 2.2rem;
            }
            
            .ekta-service-title {
                font-size: 1.3rem;
            }
            
            .ekta-service-content {
                padding: 20px;
            }
            
            .ekta-service-item {
                padding: 12px 0;
            }
        }

        /* Decorative elements */
        .ekta-bg-circle {
            position: fixed;
            border-radius: 50%;
            background: rgba(205, 95, 55, 0.08);
            z-index: -1;
        }
        
        .circle-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            left: -100px;
        }
        
        .circle-2 {
            width: 200px;
            height: 200px;
            bottom: 50px;
            right: -50px;
        }
        
        .circle-3 {
            width: 150px;
            height: 150px;
            bottom: 200px;
            left: 30%;
        }































            .achievements-container {
            width: 100%;
            min-height: 70vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
            padding: 60px 20px;
        }
        
        .container {
            max-width: 1200px;
            width: 100%;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h1 {
            font-size: 3.5rem;
            color: #2c3e50;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .section-title p {
            font-size: 1.25rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .title-divider {
            height: 4px;
            width: 80px;
            background: linear-gradient(to right, rgba(205, 95, 55, 0.3), rgba(205, 95, 55, 0.8));
            margin: 25px auto;
            border-radius: 2px;
        }
        
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }
        
        .achievement-box {
            background: #fff;
            border-radius: 20px;
            padding: 45px 35px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .achievement-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .achievement-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, rgba(205, 95, 55, 0.8), rgba(180, 70, 35, 0.8));
        }
        
        .icon-container {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: rgba(205, 95, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .achievement-box:hover .icon-container {
            background: rgba(205, 95, 55, 0.15);
            transform: scale(1.08);
        }
        
        .icon-container i {
            font-size: 40px;
            color: rgba(205, 95, 55, 0.95);
            transition: all 0.4s ease;
        }
        
        .achievement-box:hover .icon-container i {
            color: rgba(205, 95, 55, 1);
        }
        
        .counter-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .counter {
            font-size: 3.8rem;
            font-weight: 700;
            color: #2c3e50;
            transition: all 0.4s ease;
        }
        
        .achievement-box:hover .counter {
            color: rgba(205, 95, 55, 0.95);
        }
        
        .arrow-icon {
            font-size: 2.2rem;
            margin-left: 15px;
            color: rgba(205, 95, 55, 0.7);
            transition: all 0.4s ease;
        }
        
        .achievement-box:hover .arrow-icon {
            color: rgba(205, 95, 55, 0.9);
            transform: translateX(5px);
        }
        
        .achievement-label {
            font-size: 1.3rem;
            font-weight: 500;
            color: #7f8c8d;
            transition: all 0.4s ease;
        }
        
        .achievement-box:hover .achievement-label {
            color: rgba(205, 95, 55, 0.85);
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            background: rgba(205, 95, 55, 0.05);
            border-radius: 50%;
        }
        
        .shape-1 {
            width: 90px;
            height: 90px;
            top: -25px;
            right: -25px;
        }
        
        .shape-2 {
            width: 70px;
            height: 70px;
            bottom: -35px;
            left: 35px;
        }
        
        .shape-3 {
            width: 50px;
            height: 50px;
            top: 50%;
            right: -25px;
        }
        
        /* Animation for counters */
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .counter-animate {
            animation: countUp 1.5s ease-out forwards;
        }
        
        /* Subtle pulse animation for icons */
        @keyframes subtlePulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.03);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .icon-container {
            animation: subtlePulse 4s infinite ease-in-out;
        }
        
        /* Responsive design */
        @media (max-width: 1100px) {
            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .achievements-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .section-title h1 {
                font-size: 3rem;
            }
            
            .counter {
                font-size: 3.2rem;
            }
            
            .section-title p {
                font-size: 1.1rem;
            }
            
            .achievement-box {
                padding: 35px 25px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title h1 {
                font-size: 2.5rem;
            }
            
            .counter {
                font-size: 2.8rem;
            }
            
            .icon-container {
                width: 85px;
                height: 85px;
            }
            
            .icon-container i {
                font-size: 34px;
            }
            
            .achievement-label {
                font-size: 1.1rem;
            }
        }






















































 :root {
      --primary-color: #c4552a;
      --primary-dark: #a33f1f;
      --secondary-color: #2a5cc4;
      --light-bg: #f9f2ef;
      --text-dark: #222;
      --text-light: #555;
      --white: #fff;
      --shadow: 0 10px 30px rgba(0,0,0,0.08);
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    .abo1 {
      min-height: 70vh;
      display: flex;
      align-items: center;
      padding: 80px 20px;
      background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
      position: relative;
      overflow: hidden;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
    }
    
    .abo1::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(196, 85, 42, 0.05);
      top: -150px;
      right: -150px;
      z-index: 0;
    }
    
    .abo1::after {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(42, 92, 196, 0.05);
      bottom: -100px;
      left: -100px;
      z-index: 0;
    }
    
    .abo2 {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      position: relative;
      z-index: 1;
    }
    
    .abo3, .abo4 {
      flex: 1 1 45%;
      min-width: 300px;
    }
    
    .abo3 {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .abo5 {
      position: relative;
      width: 100%;
      max-width: 400px;
      height: 460px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .abo6 {
      position: absolute;
      width: 100%;
      height: 100%;
      background: var(--white);
      clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
      box-shadow: var(--shadow);
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      transition: var(--transition);
    }
    
    .abo6 img {
      width: 95%;
      height: 95%;
      object-fit: cover;
      clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
      transition: var(--transition);
      filter: grayscale(20%);
    }
    
    .abo6:hover {
      transform: scale(1.03) rotate(2deg);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .abo6:hover img {
      filter: grayscale(0%);
      transform: scale(1.05);
    }
    
    .abo7 {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }
    
    .abo8 {
      position: absolute;
      width: 60px;
      height: 60px;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 24px;
      box-shadow: 0 5px 15px rgba(196, 85, 42, 0.3);
      animation: float 6s ease-in-out infinite;
    }
    
    .abo8:nth-child(1) {
      top: 10%;
      left: 10%;
      animation-delay: 0s;
      background: var(--secondary-color);
    }
    
    .abo8:nth-child(2) {
      top: 70%;
      right: 10%;
      animation-delay: 2s;
      width: 40px;
      height: 40px;
      font-size: 18px;
    }
    
    .abo8:nth-child(3) {
      bottom: 20%;
      left: 5%;
      animation-delay: 4s;
      width: 50px;
      height: 50px;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(10deg); }
    }
    
    .abo4 h5 {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards 0.2s;
    }
    
    .abo4 h2 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.2;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards 0.4s;
    }
    
    .abo4 p {
      margin-bottom: 30px;
      color: var(--text-light);
      font-size: 17px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards 0.6s;
    }
    
    .abo9 {
      list-style: none;
      margin-bottom: 40px;
      padding: 5px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards 0.8s;
    }
    
    .abo9 li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      padding: 12px 15px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 8px;
      transition: var(--transition);
      border-left: 3px solid transparent;
    }
    
    .abo9 li:hover {
      transform: translateX(10px);
      border-left: 3px solid var(--primary-color);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .abo9 li i {
      color: var(--primary-color);
      font-size: 20px;
      margin-right: 15px;
      min-width: 25px;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .abo9 li:hover i {
      transform: scale(1.2);
      color: rgb(212, 142, 96);
    }
    
    .abo9 li span {
      display: inline-block;
      vertical-align: middle;
      line-height: 1.4;
    }
    
    .abo10 {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards 1s;
    }
    
    .abo11 {
      display: inline-flex;
      align-items: center;
      padding: 16px 35px;
      background: var(--primary-color);
      color: rgb(255, 255, 255);
      text-decoration: none;
      font-weight: 600;
      border-radius: 50px;
      box-shadow: 0 10px 20px rgba(196, 85, 42, 0.3);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    
    .abo11::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;
    }
    
    .abo11:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(163, 63, 31, 0.4);
    }
    
    .abo11:hover::before {
      left: 100%;
    }
    
    .abo11 i {
      margin-left: 10px;
      transition: transform 0.3s ease;
    }
    
    .abo11:hover i {
      transform: translateX(5px);
    }
    
    /* Animations */
    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .abo2 {
        flex-direction: column;
        gap: 40px;
      }
      
      .abo5 {
        max-width: 350px;
        height: 400px;
      }
      
      .abo4 h2 {
        font-size: 36px;
      }
    }
    
    @media (max-width: 576px) {
      .abo1 {
        padding: 60px 15px;
      }
      
      .abo4 h2 {
        font-size: 30px;
      }
      
      .abo5 {
        max-width: 280px;
        height: 320px;
      }
      
      .abo8 {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }
      
      .abo9 li {
        padding: 10px 12px;
      }
      
      .abo9 li i {
        font-size: 18px;
        margin-right: 12px;
        min-width: 22px;
      }
    }






















































 :root {
            --accent: #C4552A;
            --accent-light: #E57A4F;
            --bg: #f5f9fc;
            --card-bg: #ffffff;
            --text-dark: #223148;
            --text-muted: #617085;
        }

    
        .appo1 {
            min-height: 80vh;
            background: linear-gradient(135deg, var(--bg) 0%, #ffffff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }

        .appo1::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196, 85, 42, 0.1) 0%, rgba(196, 85, 42, 0) 70%);
            top: -250px;
            right: -250px;
            animation: appoFloat1 8s ease-in-out infinite;
        }

        .appo1::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(229, 122, 79, 0.08) 0%, rgba(229, 122, 79, 0) 70%);
            bottom: -200px;
            left: -200px;
            animation: appoFloat2 10s ease-in-out infinite;
        }

        .appo2 {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .appo3 {
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: appoFadeIn 1s ease forwards 0.5s;
            position: relative;
            display: inline-block;
        }

        .appo3::after {
            content: '';
            position: absolute;
            width: 0;
            height: 4px;
            background: var(--accent-light);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
            animation: appoLineExpand 1s ease forwards 1s;
        }

        .appo4 {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 60px;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            animation: appoFadeIn 1s ease forwards 0.8s;
        }

        .appo5 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .appo6 {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            animation: appoFadeIn 0.8s ease forwards;
            border: 1px solid rgba(196, 85, 42, 0.1);
        }

        .appo6:nth-child(1) {
            animation-delay: 1s;
        }

        .appo6:nth-child(2) {
            animation-delay: 1.2s;
        }

        .appo6:nth-child(3) {
            animation-delay: 1.4s;
        }

        .appo6::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .appo6:hover::before {
            transform: scaleX(1);
        }

        .appo6:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .appo7 {
            width: 90px;
            height: 90px;
            background: rgba(196, 85, 42, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            animation: appoIconFloat 3s ease-in-out infinite;
        }

        .appo7::after {
            content: '';
            position: absolute;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            border: 2px solid rgba(196, 85, 42, 0.1);
            animation: appoPulse 2s ease-out infinite;
        }

        .appo8 {
            font-size: 2.5rem;
            color: var(--accent);
        }

        .appo9 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .appo10 {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .appo11 {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--accent);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(196, 85, 42, 0.3);
            position: relative;
            overflow: hidden;
        }

        .appo11::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .appo11:hover::before {
            left: 100%;
        }

        .appo11:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(196, 85, 42, 0.4);
        }

        .appo12 {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .appo11:hover .appo12 {
            transform: rotate(-15deg) scale(1.2);
        }

        /* WhatsApp specific */
        .appo13 {
            color: #25D366;
        }

        /* Phone specific */
        .appo14 {
            color: var(--accent);
        }

        /* Email specific */
        .appo15 {
            color: var(--accent);
        }

        /* Animations */
        @keyframes appoFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes appoLineExpand {
            to {
                width: 120px;
            }
        }

        @keyframes appoFloat1 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(-20px, 20px) rotate(5deg);
            }
        }

        @keyframes appoFloat2 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(20px, -20px) rotate(-5deg);
            }
        }

        @keyframes appoIconFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
               
            }
        }

        @keyframes appoPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .appo3 {
                font-size: 2.5rem;
            }
            
            .appo5 {
                grid-template-columns: 1fr;
            }
        }




























.A001{
    padding: 10px;
    color: #000000;
    
}






















































 .Abc1 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            min-height: 100vh;
            position: relative;
        }

        .Abc2 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .Abc3 {
            position: absolute;
            background: rgba(196, 85, 42, 0.1);
            border-radius: 50%;
            animation: Abc4 8s infinite linear;
        }

        .Abc3:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .Abc3:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 70%;
            left: 80%;
            animation-delay: -2s;
        }

        .Abc3:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 50%;
            left: 20%;
            animation-delay: -4s;
        }

        .Abc3:nth-child(4) {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 70%;
            animation-delay: -6s;
        }

        .Abc3:nth-child(5) {
            width: 90px;
            height: 90px;
            top: 80%;
            left: 30%;
            animation-delay: -1s;
        }

        .Abc3:nth-child(6) {
            width: 70px;
            height: 70px;
            top: 30%;
            left: 90%;
            animation-delay: -3s;
        }

        @keyframes Abc4 {
            0% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.3;
            }
            25% {
                transform: translate(20px, -30px) rotate(90deg);
                opacity: 0.6;
            }
            50% {
                transform: translate(-15px, 20px) rotate(180deg);
                opacity: 0.8;
            }
            75% {
                transform: translate(25px, 15px) rotate(270deg);
                opacity: 0.6;
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
                opacity: 0.3;
            }
        }

        .Abc5 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }

        .Abc6 {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 320px;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            background: #fff;
            opacity: 0;
            animation: Abc7 0.8s ease forwards;
        }

        .Abc6:nth-child(1) { animation-delay: 0.1s; }
        .Abc6:nth-child(2) { animation-delay: 0.2s; }
        .Abc6:nth-child(3) { animation-delay: 0.3s; }
        .Abc6:nth-child(4) { animation-delay: 0.4s; }
        .Abc6:nth-child(5) { animation-delay: 0.5s; }
        .Abc6:nth-child(6) { animation-delay: 0.6s; }
        .Abc6:nth-child(7) { animation-delay: 0.7s; }
        .Abc6:nth-child(8) { animation-delay: 0.8s; }
        .Abc6:nth-child(9) { animation-delay: 0.9s; }

        .Abc6::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.6), 
                transparent);
            transition: left 0.8s ease;
            z-index: 2;
        }

        .Abc6:hover::before {
            left: 100%;
        }

        .Abc6::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(196, 85, 42, 0.1) 0%, 
                rgba(42, 85, 196, 0.05) 100%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 1;
        }

        .Abc6:hover::after {
            opacity: 1;
        }

        .Abc6 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s ease;
            filter: brightness(0.95) saturate(0.9);
        }

        .Abc6:hover {
            transform: 
                translateY(-12px) 
                scale(1.02) 
                rotateX(2deg);
            box-shadow: 
                0 25px 50px rgba(196, 85, 42, 0.25),
                0 15px 30px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .Abc6:hover img {
            transform: scale(1.08);
            filter: brightness(1.05) saturate(1.1);
        }

        .Abc6 .Abc8 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0) rotate(-180deg);
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #c4552a, #e67e22);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            z-index: 3;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 
                0 10px 25px rgba(196, 85, 42, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            opacity: 0;
        }

        .Abc6:hover .Abc8 {
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
            opacity: 1;
        }

        .Abc6 .Abc9 {
            position: absolute;
            width: 40px;
            height: 40px;
            opacity: 0;
            transition: all 0.5s ease;
            z-index: 2;
        }

        .Abc6 .Abc9:nth-child(3) {
            top: 20px;
            left: 20px;
            border-top: 3px solid #c4552a;
            border-left: 3px solid #c4552a;
            transform: translate(-10px, -10px);
        }

        .Abc6 .Abc9:nth-child(4) {
            top: 20px;
            right: 20px;
            border-top: 3px solid #c4552a;
            border-right: 3px solid #c4552a;
            transform: translate(10px, -10px);
        }

        .Abc6 .Abc9:nth-child(5) {
            bottom: 20px;
            left: 20px;
            border-bottom: 3px solid #c4552a;
            border-left: 3px solid #c4552a;
            transform: translate(-10px, 10px);
        }

        .Abc6 .Abc9:nth-child(6) {
            bottom: 20px;
            right: 20px;
            border-bottom: 3px solid #c4552a;
            border-right: 3px solid #c4552a;
            transform: translate(10px, 10px);
        }

        .Abc6:hover .Abc9 {
            opacity: 1;
            transform: translate(0, 0);
        }

        .Abc10 {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            animation: Abc11 0.4s ease;
        }

        .Abc12 {
            max-width: 85%;
            max-height: 85%;
            border-radius: 15px;
            box-shadow: 
                0 0 80px rgba(196, 85, 42, 0.3),
                0 20px 60px rgba(0, 0, 0, 0.5);
            animation: Abc13 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .Abc14 {
            position: absolute;
            top: 30px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.12);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: white;
            font-size: 28px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .Abc14:hover {
            background: rgba(196, 85, 42, 0.8);
            border-color: #c4552a;
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 0 30px rgba(196, 85, 42, 0.5);
        }

        @keyframes Abc7 {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes Abc11 {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes Abc13 {
            from {
                opacity: 0;
                transform: scale(0.7) rotate(-2deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        @media (max-width: 768px) {
            .Abc5 {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
            }
            
            .Abc6 {
                height: 280px;
            }

            .Abc14 {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        @media (max-width: 576px) {
            .Abc5 {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .Abc6 {
                height: 250px;
            }
            
            .Abc12 {
                max-width: 95%;
                max-height: 80%;
            }
        }

















































            /* Container & background decor */
    .seba1 {
      position: relative;
      padding: 80px 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #4a4e69;
      overflow-x: hidden;
    }
    
    /* Enhanced animated background elements */
    .seba-decor {
      position: absolute;
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
      filter: blur(50px);
      animation: sebaShape 10s ease-in-out infinite;
    }
    .seba-decor1 {
      width: 400px; height: 400px;
      top: 10%; left: 5%;
      background: linear-gradient(135deg, #C4552A 0%, #D67A52 100%);
      opacity: 0.12;
      animation-delay: 0s;
    }
    .seba-decor2 {
      width: 300px; height: 300px;
      bottom: 15%; right: 10%;
      background: linear-gradient(135deg, #C4552A 0%, #D67A52 100%);
      opacity: 0.1;
      animation-delay: 2s;
    }
    .seba-decor3 {
      width: 250px; height: 250px;
      top: 60%; left: 80%;
      background: linear-gradient(135deg, #C4552A 0%, #D67A52 100%);
      opacity: 0.08;
      animation-delay: 4s;
    }
    
    /* New floating particles */
    .seba-particle {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, #C4552A 0%, #D67A52 100%);
      opacity: 0.1;
      animation: sebaFloat 15s linear infinite;
      z-index: 0;
    }
    .seba-particle:nth-child(1) { width: 15px; height: 15px; top: 20%; left: 10%; animation-delay: 0s; }
    .seba-particle:nth-child(2) { width: 10px; height: 10px; top: 70%; left: 15%; animation-delay: 2s; }
    .seba-particle:nth-child(3) { width: 20px; height: 20px; top: 40%; left: 85%; animation-delay: 4s; }
    .seba-particle:nth-child(4) { width: 12px; height: 12px; top: 85%; left: 80%; animation-delay: 6s; }
    .seba-particle:nth-child(5) { width: 18px; height: 18px; top: 30%; left: 70%; animation-delay: 8s; }
    .seba-particle:nth-child(6) { width: 8px; height: 8px; top: 60%; left: 90%; animation-delay: 10s; }
    
    @keyframes sebaShape {
      0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
      }
      33% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
        transform: translate(30px, -20px) rotate(120deg);
      }
      66% {
        border-radius: 40% 30% 60% 50%/30% 50% 70% 60%;
        transform: translate(-20px, 15px) rotate(240deg);
      }
      100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
        transform: translate(0, 0) rotate(360deg);
      }
    }
    
    @keyframes sebaFloat {
      0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.1;
      }
      25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.15;
      }
      50% {
        transform: translateY(-40px) translateX(20px) rotate(180deg);
        opacity: 0.2;
      }
      75% {
        transform: translateY(-20px) translateX(10px) rotate(270deg);
        opacity: 0.15;
      }
      100% {
        transform: translateY(0) translateX(0) rotate(360deg);
        opacity: 0.1;
      }
    }

    /* Content wrapper */
    .seba6 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 10;
      width: 100%;
    }
    
    /* Enhanced header with animation */
    .seba7 {
      text-align: center;
      margin-bottom: 60px;
      animation: sebaFadeIn 1s ease-out;
    }
    
    .seba8 {
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #C4552A 0%, #D67A52 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
      display: inline-block;
      position: relative;
      animation: sebaTitlePulse 3s infinite alternate;
    }
    
    .seba8::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 3px;
      background: linear-gradient(135deg, #C4552A 0%, #D67A52 100%);
      border-radius: 1.5px;
      animation: sebaLineWidth 3s infinite alternate;
    }
    
    .seba9 {
      width: 80px;
      height: 4px;
      background: linear-gradient(135deg, #C4552A 0%, #D67A52 100%);
      margin: 0 auto 20px;
      border-radius: 2px;
      transform: skewX(-12deg);
      animation: sebaSkew 4s infinite alternate;
    }
    
    .seba10 {
      font-size: 1.2rem;
      color: #4a4e69;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
      animation: sebaFadeInUp 1s ease-out 0.3s both;
    }

    /* Grid of service cards */
    .seba11 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      perspective: 1000px;
    }
    
    @media (max-width: 992px) {
      .seba11 {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 600px) {
      .seba11 {
        grid-template-columns: 1fr;
      }
    }

    /* Enhanced card style with animations */
    .seba12 {
      background: #ffffff;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      height: auto;
      z-index: 1;
      animation: sebaCardAppear 0.6s ease-out both;
      transform-origin: center bottom;
    }
    
    .seba12:nth-child(1) { animation-delay: 0.1s; }
    .seba12:nth-child(2) { animation-delay: 0.2s; }
    .seba12:nth-child(3) { animation-delay: 0.3s; }
    .seba12:nth-child(4) { animation-delay: 0.4s; }
    .seba12:nth-child(5) { animation-delay: 0.5s; }
    .seba12:nth-child(6) { animation-delay: 0.6s; }
    .seba12:nth-child(7) { animation-delay: 0.7s; }
    
    .seba12::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #C4552A 0%, #D67A52 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
    }
    
    .seba12::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.7s ease;
      z-index: 2;
    }
    
    .seba12:hover::before {
      opacity: 0.02;
    }
    
    .seba12:hover::after {
      left: 100%;
    }
    
    .seba12:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
      border-color: rgba(196, 85, 42, 0.2);
      z-index: 20;
    }

    /* Active (expanded) card state */
    .seba-active {
      height: auto;
      z-index: 50;
      transform: translateY(-8px) scale(1.02);
      border-color: #D67A52;
      box-shadow: 0 20px 45px rgba(0,0,0,0.15);
      grid-row: span 2;
      animation: sebaCardActive 0.5s ease-out forwards;
    }
    
    .seba-active::before {
      opacity: 0.03;
    }

    /* Icon + title area */
    .seba21 {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
      padding-right: 50px; /* Space for button */
    }
    
    .seba22 {
      font-size: 2.5rem;
      margin-right: 15px;
      width: 60px; height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #C4552A 0%, #D67A52 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(196,85,42,0.3);
      transition: all 0.3s ease;
      animation: sebaIconFloat 4s ease-in-out infinite;
    }
    
    .seba12:hover .seba22 {
      transform: scale(1.1) rotate(6deg);
      animation: none;
    }

    .seba23 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #A3411E;
      margin: 0;
      flex: 1;
      position: relative;
    }
    
    .seba23::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 35px;
      height: 3px;
      background: #C4552A;
      transition: width 0.3s ease;
    }
    
    .seba12:hover .seba23::after {
      width: 80px;
    }

    /* Button positioned away from text */
    .seba24 {
      position: absolute;
      top: 25px;
      right: 25px;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: linear-gradient(135deg, #C4552A 0%, #D67A52 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 2;
      animation: sebaButtonPulse 2s infinite;
    }
    
    .seba24:hover {
      transform: scale(1.2);
      animation: none;
    }
    
    .seba-active .seba24 {
      transform: rotate(180deg);
      background: #A3411E;
      animation: none;
    }
    
    .seba-active .seba24:hover {
      transform: rotate(180deg) scale(1.2);
    }

    .seba25 {
      flex: 1;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 2;
    }
    
    .seba26 {
      list-style: none;
      padding: 0;
      margin: 0;
      display: none;
      flex-direction: column;
      opacity: 0;
      transition: opacity 0.4s ease, transform 0.4s ease;
      transform: translateY(20px);
    }
    
    .seba-active .seba26 {
      display: flex;
      opacity: 1;
      transform: translateY(0);
      animation: sebaListAppear 0.5s ease-out forwards;
    }
    
    .seba28 {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      padding: 12px;
      border-radius: 10px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      background: rgba(196, 85, 42, 0.08);
      animation: sebaListItemAppear 0.5s ease-out both;
    }
    
    .seba28:nth-child(1) { animation-delay: 0.1s; }
    .seba28:nth-child(2) { animation-delay: 0.2s; }
    .seba28:nth-child(3) { animation-delay: 0.3s; }
    .seba28:nth-child(4) { animation-delay: 0.4s; }
    .seba28:nth-child(5) { animation-delay: 0.5s; }
    
    .seba28::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(196,85,42,0.1),
        transparent
      );
      transition: left 0.5s ease;
    }
    
    .seba28:hover::before {
      left: 100%;
    }
    
    .seba28:hover {
      background: rgba(196,85,42,0.14);
      transform: translateX(5px);
    }
    
    .seba29 {
      flex-shrink: 0;
      margin-right: 12px;
      margin-top: 2px;
    }
    
    .seba30 {
      color: #C4552A;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      animation: sebaIconBounce 2s infinite;
    }
    
    .seba28:hover .seba30 {
      transform: scale(1.2);
      color: #A3411E;
      animation: none;
    }
    
    .seba31 {
      line-height: 1.4;
      flex: 1;
      font-size: 1rem;
      color: #2b2d42;
    }
    
    .seba31 b {
      color: #A3411E;
      font-weight: 700;
    }
    
    .seba32 {
      margin-top: 10px;
      color: #4a4e69;
      font-size: 0.95rem;
      line-height: 1.5;
      display: block;
    }
    
    .seba-active .seba32 {
      display: none;
    }
    
    /* Fix for grid layout when cards expand */
    .seba11 {
      align-items: start;
    }
    
    /* Auto animation styles */
    .seba-auto-animate {
      animation: sebaAutoSlide 20s infinite alternate;
    }
    
    /* Improved responsive behavior */
    @media (max-width: 768px) {
      .seba8 {
        font-size: 2.2rem;
      }
      .seba10 {
        font-size: 1.1rem;
      }
      .seba12 {
        padding: 20px;
      }
      .seba22 {
        font-size: 2rem;
        width: 50px;
        height: 50px;
      }
      .seba23 {
        font-size: 1.3rem;
      }
    }
    
    @media (max-width: 480px) {
      .seba1 {
        padding: 40px 0;
      }
      .seba8 {
        font-size: 1.8rem;
      }
      .seba10 {
        font-size: 1rem;
      }
      .seba12 {
        padding: 15px;
      }
      .seba22 {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
        margin-right: 10px;
      }
      .seba23 {
        font-size: 1.2rem;
      }
      .seba24 {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
      }
    }
    
    /* New animations */
    @keyframes sebaFadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes sebaFadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes sebaTitlePulse {
      from {
        transform: scale(1);
      }
      to {
        transform: scale(1.03);
      }
    }
    
    @keyframes sebaLineWidth {
      from {
        width: 120px;
      }
      to {
        width: 150px;
      }
    }
    
    @keyframes sebaSkew {
      from {
        transform: skewX(-12deg);
      }
      to {
        transform: skewX(12deg);
      }
    }
    
    @keyframes sebaCardAppear {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    
    @keyframes sebaCardActive {
      0% {
        transform: translateY(-8px) scale(1.02);
      }
      50% {
        transform: translateY(-12px) scale(1.04);
      }
      100% {
        transform: translateY(-8px) scale(1.02);
      }
    }
    
    @keyframes sebaIconFloat {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-5px);
      }
      100% {
        transform: translateY(0);
      }
    }
    
    @keyframes sebaButtonPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(196, 85, 42, 0.4);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(196, 85, 42, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(196, 85, 42, 0);
      }
    }
    
    @keyframes sebaListAppear {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes sebaListItemAppear {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes sebaIconBounce {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
    }
    
    /* Auto animation for cards */
    @keyframes sebaAutoSlide {
      0% {
        transform: translateY(0);
      }
      25% {
        transform: translateY(-5px);
      }
      50% {
        transform: translateY(0);
      }
      75% {
        transform: translateY(-3px);
      }
      100% {
        transform: translateY(0);
      }
    }










    
/* Container */
#revi1 {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Title */
#revi2 {
    text-align: center;
    margin-bottom: 60px;
}

#revi2 h2 {
    font-size: 2.8rem;
    color: #C4552A;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

#revi2 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #C4552A;
    border-radius: 2px;
}

#revi2 p {
    font-size: 1.1rem;
    color: #555;
}

/* Reviews Wrapper */
#revi3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Review Card */
.revi4 {
    position: relative;
    background: linear-gradient(145deg, #fff 0%, #ffe6dc 100%);
    border-radius: 25px;
    padding: 30px 25px 25px 25px;
    box-shadow: 0 15px 35px rgba(196,85,42,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.revi4:hover {
    transform: translateY(-15px) rotate(-1deg);
    box-shadow: 0 25px 45px rgba(196,85,42,0.3);
}

/* Floating Quote Icon */
.revi5 {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 60px;
    color: rgba(196,85,42,0.15);
    transform: rotate(180deg);
}

/* Decorative accent circle */
.revi4::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(196,85,42,0.05);
    top: -20px;
    left: -20px;
}

/* Client Info */
.revi6 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Emoji Avatar */
.revi7 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #C4552A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.revi8 h4 {
    font-size: 1.2rem;
    color: #C4552A;
    margin-bottom: 3px;
}

.revi8 p {
    color: #C4552A;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Rating */
.revi9 {
    color: #C4552A;
    margin-bottom: 15px;
}

/* Review Text */
.revi10 p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* Date */
.revi11 {
    text-align: right;
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    #revi3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .revi6 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .revi7 {
        margin-bottom: 10px;
        margin-right: 0;
    }
}





























 .abo-B1 {max-width:1200px; margin:50px auto; }

    .abo-B2 {text-align:center; margin-bottom:50px; position:relative;}
    .abo-B2 h1 {font-size:3rem; color:#C4552A; margin-bottom:10px; display:inline-block; position:relative;}
    .abo-B2 h1::after {content:''; position:absolute; width:80px; height:4px; background: linear-gradient(to right,#C4552A,#E67E51); bottom:-10px; left:50%; transform:translateX(-50%); border-radius:5px;}
    .abo-B2 p {font-size:1.2rem; color:#555; max-width:700px; margin:20px auto 0; line-height:1.6;}

    .abo-B3 {display:flex; flex-wrap:wrap; gap:30px; justify-content:center; align-items:flex-start;}

    .abo-B4 {flex:1; min-width:280px; max-width:400px;}
    .abo-B5 {background:#fff; border-radius:25px; padding:30px; box-shadow:0 10px 25px rgba(196,85,42,0.1); text-align:center; transition:all 0.4s ease;}
    .abo-B5:hover {transform:translateY(-8px); box-shadow:0 15px 40px rgba(196,85,42,0.2);}
    .abo-B6 {width:200px; height:200px; border-radius:50%; margin:0 auto 25px; overflow:hidden; border:5px solid #C4552A; transition:transform 0.5s ease;}
    .abo-B5:hover .abo-B6 {transform:scale(1.05);}
    .abo-B6 img {width:100%; height:100%; object-fit:cover;}
    .abo-B5 h2 {color:#C4552A; font-size:1.8rem; margin-bottom:10px;}
    .abo-B5 h3 {color:#E67E51; font-size:1.2rem; margin-bottom:20px; font-weight:500;}

    .abo-B7 {flex:2; min-width:280px; max-width:700px;}
    .abo-B8 {background:#fff; border-radius:25px; padding:40px; box-shadow:0 10px 25px rgba(196,85,42,0.1); transition:all 0.4s ease;}
    .abo-B8:hover {transform:translateY(-8px); box-shadow:0 15px 40px rgba(196,85,42,0.2);}
    .abo-B8 h3 {color:#C4552A; font-size:1.8rem; margin-bottom:25px;}
    .abo-B8 p {color:#000; line-height:1.7; margin-bottom:15px;}

    .abo-B9 {margin-top:30px;}
    .abo-B10 {margin-bottom:20px;}
    .abo-B11 {display:flex; justify-content:space-between; margin-bottom:8px;}
    .abo-B12 {font-weight:600; color:#333;}
    .abo-B13 {color:#C4552A; font-weight:600;}
    .abo-B14 {height:10px; background:#f0f0f0; border-radius:5px; overflow:hidden;}
    .abo-B15 {height:100%; background: linear-gradient(to right,#C4552A,#E67E51); border-radius:5px; width:0; transition:width 1.5s ease;}

    .abo-B16 {text-align:center; margin-top:50px; padding:20px; color:#777; border-top:1px solid #eee;}

    @media(max-width:992px){.abo-B3{flex-direction:column; align-items:center;}}
    @media(max-width:768px){.abo-B2 h1{font-size:2.2rem;} .abo-B2 p{font-size:1.1rem;} .abo-B5,.abo-B8{padding:25px;} .abo-B6{width:180px; height:180px;}}
    @media(max-width:480px){.abo-B2 h1{font-size:1.8rem;} .abo-B6{width:150px; height:150px;}}





















    .si{
      font-size: 10px;
    }






































































       .therb {
         
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .review-container {
            max-width: 1200px;
            width: 100%;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(196, 85, 42, 0.15);
            overflow: hidden;
            padding: 40px 30px;
            position: relative;
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        h1 {
            color: #C4552A;
            margin-bottom: 10px;
            font-size: 2.8rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
           
            border-radius: 2px;
        }
        
        .subtitle {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 25px auto 0;
            line-height: 1.6;
        }
        
        .mode-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            background-color: #f9f0ec;
            border-radius: 50px;
            padding: 5px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 4px 10px rgba(196, 85, 42, 0.1);
        }
        
        .mode-btn {
            padding: 12px 35px;
            border: none;
            background: transparent;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #7f8c8d;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .mode-btn.active {
            background: #C4552A;
            color: white;
            box-shadow: 0 4px 15px rgba(196, 85, 42, 0.3);
        }
        
        .cards-slider-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .cards-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 30px;
        }
        
        .review-card {
            min-width: calc(33.333% - 20px);
            background: white;
            border-radius: 18px;
            box-shadow: 0 10px 25px rgba(196, 85, 42, 0.08);
            padding: 30px;
            transition: all 0.4s ease;
            border: 1px solid #f5e9e4;
            position: relative;
            overflow: hidden;
        }
        
        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #C4552A;
        }
        
        .review-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 30px rgba(196, 85, 42, 0.15);
        }
        
        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .author-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            background: #f9f0ec;
            box-shadow: 0 5px 15px rgba(196, 85, 42, 0.1);
        }
        
        .author-info h3 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 1.3rem;
        }
        
        .author-info p {
            color: #C4552A;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .rating {
            color: #ffc107;
            font-size: 1.1rem;
            margin-bottom: 20px;
            display: flex;
            gap: 3px;
        }
        
        .review-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 25px;
            position: relative;
            padding-left: 20px;
        }
        
        .review-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: #f5e9e4;
            font-family: Georgia, serif;
        }
        
        .review-date {
            color: #95a5a6;
            font-size: 0.9rem;
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
        }
        
        .slider-btn {
            background: #C4552A;
            color: white;
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.4rem;
            cursor: pointer;
            margin: 0 25px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(196, 85, 42, 0.3);
        }
        
        .slider-btn:hover {
            background: #a84522;
            transform: scale(1.1);
        }
        
        .auto-info {
            text-align: center;
            margin-top: 20px;
            color: #C4552A;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .decoration {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(196, 85, 42, 0.05);
            z-index: 0;
        }
        
        .decoration-1 {
            top: -70px;
            right: -70px;
        }
        
        .decoration-2 {
            bottom: -70px;
            left: -70px;
        }
        
        /* Progress bar for auto mode */
        .progress-container {
            width: 200px;
            height: 4px;
            background: #f5e9e4;
            border-radius: 2px;
            margin: 15px auto 0;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: #C4552A;
            width: 0%;
            transition: width 0.1s linear;
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .review-card {
                min-width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .review-card {
                min-width: 100%;
            }
            
            .review-container {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .mode-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            
            .slider-btn {
                margin: 0 15px;
            }
        }
        
        @media (max-width: 480px) {
            .card-header {
                flex-direction: column;
                text-align: center;
            }
            
            .author-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .slider-btn {
                width: 45px;
                height: 45px;
                margin: 0 10px;
            }
            
            .mode-toggle {
                flex-direction: column;
                width: 100%;
                max-width: 250px;
            }
        }