/* hero section */
    
        .page-title {
            padding: 130px 0 70px;
        }

        .title-outer>h1 {
            font-size: 60px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .title-outer>p {
            font-size: 23px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        /* Tablet */
        @media (max-width: 991px) {
            .title-outer>h1 {
                font-size: 48px;
            }

            .title-outer>p {
                font-size: 18px;
            }
        }

        /* Mobile */
        @media (max-width: 767px) {
            .title-outer>h1 {
                font-size: 38px;
                margin-bottom: 15px;
            }

            .title-outer>p {
                font-size: 15px;
                line-height: 1.6;
                margin-bottom: 25px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .title-outer>h1 {
                font-size: 28px;
            }

            .title-outer>p {
                font-size: 14px;
            }
        }
    

    /* Why choose us section */
    
        /* Section Base Styles */
        .ks-choose-2-area {
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .ks-choose-2-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(201, 168, 108, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(201, 168, 108, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .auto-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 10px;
            position: relative;
            z-index: 1;
        }

        /* Centered Header */
        .choose-section-header {
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }


         .choose-section-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .sub-title {
            display: inline-block;
            font-size: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #B69D74;
            margin-bottom: 15px;
            position: relative;
            padding: 0 20px;
        }
        /* .sub-title:after {
            background: var(--theme-color1);
            bottom: 5px;
            content: "";
            height: 3px;
            position: absolute;
            right: -70px;
            width: 54px;
        } */

        /* .sub-title::before,
        .sub-title::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 1px;
            background: #B69D74;
        } */

        .sub-title::before {
            left: -20px;
        }

        .sub-title::after {
            right: -20px;
        }

        .main-title {
            font-size: 42px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 20px;
            text-transform: capitalize;
        }

        .section-description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Flip Cards Grid */
        .flip-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* Flip Card Styles */
        .flip-card {
            background: transparent;
            perspective: 1000px;
            height: 350px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        /* Front Side */
        .flip-card-front {
            background: #1e293b;
            border: 1px solid rgba(201, 168, 108, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .choose-card-icon {
            width: 80px;
            height: 80px;
            /* background: #B69D74; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(201, 168, 108, 0.3);
            transition: transform 0.3s ease;
        }
        .choose-card-icon > img{
            border-radius: 50%;
        }

        .flip-card:hover .choose-card-icon {
            transform: scale(1.1);
        }

        .choose-card-icon i {
            font-size: 32px;
            color: #ffffff;
        }

        .card-title {
            font-size: 20px;
            font-weight: 600;
            color: #B69D74;
            margin: 0;
        }

        .card-description{
         font-size: 12px;
           font-weight: 400;
            color: #ffffff;
            margin: 0;

        }

        /* Back Side */
        .flip-card-back {
            background: #B69D74;
            transform: rotateY(180deg);
            color: #ffffff;
        }

        .flip-card-back h4 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .flip-card-back p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
        }

        /* CTA Button */
        .mt-50 {
            margin-top: 50px;
        }

        .text-center {
            text-align: center;
        }

        /* Responsive Styles */
        @media (max-width: 991px) {
            .ks-choose-2-area {
                padding: 80px 0;
            }

            .main-title {
                font-size: 34px;
            }

            .flip-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .flip-card {
                height: 260px;
            }
        }

        @media (max-width: 767px) {
            .ks-choose-2-area {
                padding: 60px 0;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .main-title {
                font-size: 28px;
            }

            .section-description {
                font-size: 15px;
            }

            .flip-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .flip-card {
                height: 240px;
            }

            .choose-card-icon {
                width: 70px;
                height: 70px;
            }

            .choose-card-icon i {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 24px;
            }

            .sub-title {
                font-size: 12px;
                letter-spacing: 2px;
            }

            .card-title {
                font-size: 18px;
            }
        }
    

    /* Accordian section  */
    
        /* Modern FAQ Section */
        .faq-modern-section {
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .faq-modern-section::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: rgba(15, 23, 42, 0.03);
            border-radius: 50%;
            pointer-events: none;
        }

        .auto-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Section Header */

        .section-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #333333db;
            padding: 10px 24px;
            border: 2px solid #333333db;
            margin-bottom: 25px;
            position: relative;
        }

        /* Content Grid */
        .faq-content-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: start;
        }

        /* Modern Accordion */
        .faq-accordion-container {
            width: 100%;
        }

        .accordion-modern {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .acc-item {
            border-bottom: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
            background: #ffffff;
        }

        .acc-item:first-child {
            border-top: 1px solid #e2e8f0;
        }

        .acc-header {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 28px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            background: #ffffff;
        }

        .acc-number {
            font-size: 13px;
            font-weight: 700;
            color: #94a3b8;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #e2e8f0;
            border-radius: 50%;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .acc-header h5 {
            font-size: 18px;
            font-weight: 600;
            color: #0f172a;
            margin: 0;
            flex: 1;
            transition: color 0.3s ease;
            padding-right: 20px;
        }

        .acc-toggle {
            width: 32px;
            height: 32px;
            position: relative;
            flex-shrink: 0;
        }

        .acc-line {
            position: absolute;
            background: #0f172a;
            transition: all 0.3s ease;
        }

        .acc-line:first-child {
            width: 16px;
            height: 2px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .acc-line:last-child {
            width: 2px;
            height: 16px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Hover States */
        /* .acc-item:hover .acc-number {
            border-color: #B69D74;
            color: #B69D74;
        } */

        .acc-item:hover .acc-header h5 {
            color: #0f172a;
        }

        /* Active/Open States */
        .acc-item.is-open {
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            margin-bottom: 15px;
        }

/* 
        .acc-item.is-open .acc-number {
            background: #B69D74;
            color: #ffffff;
            border-color: #B69D74;
        } */


        .acc-number > img{
            border-radius: 50%;
        }

        .acc-item.is-open .acc-header h5 {
            color: #0f172a;
            font-weight: 700;
        }

        .acc-item.is-open .acc-line:last-child {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        /* Accordion Content - FIXED */
        .accc-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
            background: transparent;
        }

        .acc-item.is-open .accc-content {
            max-height: 500px;
            /* Increased for content visibility */
        }

        .acc-inner {
            padding: 0 0 25px 60px;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
        }

        .acc-item.is-open .acc-inner {
            opacity: 1;
            transform: translateY(0);
        }

        .acc-inner p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.8;
            margin: 0;
            max-width: 90%;
        }

        /* Visual Container */
        .faq-visual-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .visual-wrapper {
            position: sticky;
            top: 100px;
            padding: 20px;
        }

        .main-image-box {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
            margin-bottom: 30px;
        }

        .main-image-box img {
            width: 100%;
            /* height: 469px; */
            object-fit: contain;
            display: block;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Decorative Elements */
        .deco-circle {
            position: absolute;
            width: 150px;
            height: 150px;
            border: 2px dashed rgba(15, 23, 42, 0.1);
            border-radius: 50%;
            top: -30px;
            right: -30px;
            animation: spin 20s linear infinite;
            pointer-events: none;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .deco-dots {
            position: absolute;
            width: 80px;
            height: 80px;
            bottom: -10px;
            left: -10px;
            background-image: radial-gradient(circle, #0f172a 2px, transparent 2px);
            background-size: 12px 12px;
            opacity: 0.15;
            pointer-events: none;
        }

        /* Responsive */
        @media (max-width: 1199px) {
            .faq-content-grid {
                gap: 50px;
            }

            .faq-box {
                padding: 30px;
            }

            .faq-box h1 {
                font-size: 32px;
            }
        }

        @media (max-width: 991px) {
            .faq-modern-section {
                padding: 80px 0;
            }

            .faq-content-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .faq-visual-container {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }

            .visual-wrapper {
                position: relative;
                top: 0;
            }

            /* .main-image-box img {
                height: 350px;
            } */

            .deco-circle,
            .deco-dots {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .faq-modern-section {
                padding: 60px 0;
            }

            .section-tag {
                font-size: 11px;
                padding: 8px 18px;
            }

            .acc-header {
                padding: 20px 0;
                gap: 15px;
            }

            .acc-number {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }

            .acc-header h5 {
                font-size: 16px;
            }

            .acc-item.is-open {
                padding: 0 20px;
            }

            .acc-inner {
                padding: 0 0 20px 50px;
            }

            .acc-inner p {
                font-size: 14px;
                max-width: 100%;
            }

            /* .main-image-box img {
                height: 280px;
            } */

            .faq-box {
                padding: 25px;
            }

            .faq-box h1 {
                font-size: 28px;
            }

            .faq-box p {
                font-size: 14px;
            }

            .faq-btn {
                padding: 14px 28px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {

            .acc-header h5 {
                font-size: 15px;
            }

            .faq-box h1 {
                font-size: 24px;
            }
        }
    
    /* process */
    
        /* Process Section */
        .processs-section {
            background: #ffffff;
            position: relative;
        }

        .auto-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #B69D74;
            margin-bottom: 15px;
            padding: 8px 20px;
            border: 2px solid #B69D74;
            border-radius: 30px;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 17px;
            color: #64748b;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Main Layout */
        .process-layout {
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 40px;
            align-items: start;
        }

        /* Left Side - Steps Navigation */
        .steps-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 25px;
            background: #f8fafc;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .step-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #B69D74;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .step-item:hover {
            background: #ffffff;
            border-color: #e2e8f0;
            transform: translateX(5px);
        }

        /* .step-item.active {
            background: #0f172a;
            border-color: #0f172a;
        } */

        .step-item.active::before {
            transform: scaleY(1);
        }

        .step-number {
            font-size: 14px;
            font-weight: 800;
            color: #B69D74;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border-radius: 10px;
            border: 2px solid #B69D74;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .step-item.active .step-number {
            background: #B69D74;
            color: #0f172a;
        }

        .step-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }

        .step-content h3 {
            font-size: 16px;
            font-weight: 600;
            color: #0f172a;
            margin: 0;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .step-item.active .step-content h3 {
            color: #ffffff;
        }

        .step-arrow {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e2e8f0;
            border-radius: 8px;
            color: #64748b;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .step-item:hover .step-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        .step-item.active .step-arrow {
            background: #B69D74;
            color: #0f172a;
            opacity: 1;
            transform: translateX(0);
        }

        /* Right Side - Display Card */
        .process-display {
            position: sticky;
            top: 100px;
            min-height: 500px;
        }

        .display-card {
            background: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 40px;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            pointer-events: none;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .display-card.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
            position: relative;
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 2px solid #f1f5f9;
        }

        .process-card-icon {
            width: 60px;
            height: 60px;
            background: #B69D74;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #0f172a;
            flex-shrink: 0;
        }

        .card-header h3 {
            font-size: 24px;
            font-weight: 700;
            color: #0f172a;
            margin: 0;
            line-height: 1.3;
        }

        .card-body p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #0f172a;
            font-weight: 500;
            padding: 10px 15px;
            background: #f8fafc;
            border-radius: 8px;
            border-left: 3px solid #B69D74;
        }

        .feature-list li i {
            color: #B69D74;
            font-size: 12px;
        }

        .card-footer {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid #f1f5f9;
            display: flex;
            justify-content: flex-end;
        }

        .step-count {
            font-size: 13px;
            font-weight: 600;
            color: #B69D74;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .process-layout {
                grid-template-columns: 1fr;
            }

            .process-display {
                position: relative;
                top: 0;
                order: -1;
                min-height: auto;
            }

            .display-card {
                position: relative;
                opacity: 1;
                transform: none;
                pointer-events: all;
                margin-bottom: 20px;
                display: none;
            }

            .display-card.active {
                display: block;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .feature-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            .processs-section {
                padding: 60px 0;
            }

            .section-header h2 {
                font-size: 26px;
            }

            .step-content h3 {
                font-size: 14px;
            }

            .display-card {
                padding: 25px;
            }

            .card-header h3 {
                font-size: 20px;
            }

            .process-card-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
    

    /* solution section  */


        .solutions-section {
            padding: 120px 0;
            background: #0f172a;
            position: relative;
            overflow: hidden;
        }

        .auto-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Header */
        .solutions-section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #B69D74;
            margin-bottom: 20px;
            padding: 10px 25px;
            border: 2px solid #B69D74;
            border-radius: 30px;
        }

        .solutions-section-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .solutions-section-header p {
            font-size: 18px;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Cards Row - Horizontal Layout */
        .solutions-row {
            display: flex;
            flex-direction: row;
            gap: 30px;
            justify-content: center;
            align-items: stretch;
        }

        /* Solution Card */
        .solution-card {
            flex: 1;
            max-width: 350px;
            min-height: 400px;
            background: #1e293b;
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
        }

        /* Visible Content (Default State) */
        .card-visible {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
        }

        .solution-card-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 170, 23, 0.1);
            border: 2px solid #B69D74;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #B69D74;
            margin-bottom: 30px;
            transition: all 0.4s ease;
        }

        .solution-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .card-arrow {
            width: 50px;
            height: 50px;
            background: #B69D74;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f172a;
            font-size: 18px;
            margin-top: auto;
            transition: all 0.4s ease;
        }

        /* Hidden Content (Revealed on Hover) */
        .card-hidden {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #B69D74;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }

        .card-hidden p {
            font-size: 15px;
            color: #0f172a;
            line-height: 1.7;
            margin-bottom: 25px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.1s;
        }

        .card-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
            flex: 1;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.2s;
        }

        .card-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #0f172a;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 1px solid rgba(15, 23, 42, 0.1);
        }

        .card-features li:last-child {
            border-bottom: none;
        }

        .card-features li i {
            color: #0f172a;
            font-size: 12px;
        }

        .card-btn {
            display: inline-block;
            padding: 14px 30px;
            background: #0f172a;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 8px;
            text-align: center;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.3s;
        }

        .card-btn:hover {
            background: #ffffff;
            color: #0f172a;
        }

        /* Hover Effects - Zoom In */
        .solution-card:hover {
            transform: scale(1.1);
            z-index: 10;
            border-color: #B69D74;
            box-shadow: 0 30px 60px rgba(255, 170, 23, 0.2);
        }

        .solution-card:hover .card-visible {
            opacity: 0;
            transform: scale(0.8);
        }

        .solution-card:hover .card-hidden {
            opacity: 1;
            transform: scale(1);
            pointer-events: all;
        }

        .solution-card:hover .card-hidden p,
        .solution-card:hover .card-hidden .card-features,
        .solution-card:hover .card-hidden .card-btn {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .solutions-section {
                padding: 80px 0;
            }

            .solutions-section-header h2 {
                font-size: 32px;
            }

            .solutions-row {
                flex-direction: column;
                align-items: center;
            }

            .solution-card {
                max-width: 100%;
                width: 100%;
                min-height: 350px;
            }

            .solution-card:hover {
                transform: scale(1.05);
            }
        }

        @media (max-width: 767px) {
            .solutions-section {
                padding: 60px 0;
            }

            .solutions-section-header h2 {
                font-size: 26px;
            }

            .solution-card {
                padding: 30px 20px;
                min-height: 300px;
            }

            .solution-card-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .solution-card h3 {
                font-size: 20px;
            }

            .card-hidden {
                padding: 30px 20px;
            }
        }
    

    
        /* ============================================
           SECTION 1: FEATURES GRID (4 CARDS)
           ============================================ */
        .features-grid-section {
            padding: 100px 0;
            background: #ffffff;
        }

        .auto-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #B69D74;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .section-header p {
            font-size: 16px;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Features Grid - 2x2 Layout */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* Feature Card */
        .feature-card {
            position: relative;
            height: 280px;
            background: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .feature-card:hover {
            border-color: #0f172a;
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
        }

        /* Card Front */
        .card-front {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            background: #ffffff;
            transition: all 0.4s ease;
        }

        .feature-card-icon {
            width: 70px;
            height: 70px;
            /* border: 2px solid #0f172a; */
            /* border-radius: 50%; */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #0f172a;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

         .feature-card-icon > img {
            border-radius: 50%;
         
        }

        .feature-card:hover .feature-card-icon {
            background: #B69D74;
            border-color: #B69D74;
            color: #0f172a;
            transform: scale(1.1);
        }

        .card-front h4 {
            font-size: 18px;
            font-weight: 600;
            color: #0f172a;
            text-align: center;
            line-height: 1.4;
            margin: 0;
        }

        /* Card Back */
        .card-back {
            position: absolute;
            inset: 0;
            background: #0f172a;
            padding: 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            pointer-events: none;
        }

        .feature-card:hover .card-back {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .feature-card:hover .card-front {
            opacity: 0;
            transform: translateY(-20px);
        }

        .card-back p {
            font-size: 15px;
            color: #cbd5e1;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #B69D74;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .card-link:hover {
            gap: 15px;
            color: #ffffff;
        }

        /* ============================================
           SECTION 2: SERVICES FLIP (3 CARDS)
           ============================================ */
        .services-flip-section {
            padding: 100px 0;
            background: #f8fafc;
        }

        .services-flip-section .section-header h2 {
            font-size: 28px;
        }

        /* Services Row - 3 Cards Horizontal */
        .services-row {
            display: flex;
            flex-direction: row;
            gap: 30px;
            justify-content: center;
        }

        /* Flip Service Card */
        
      /* ============================================
   SECTION 2: SERVICES FLIP (3 CARDS) - FIXED
   ============================================ */
.services-flip-section {
    padding: 100px 0;
    background: #f8fafc;
}

.services-flip-section .section-header h2 {
    font-size: 28px;
}

/* Services Row - 3 Cards Horizontal */
.services-row {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

/* Flip Service Card */
.flip-service-card {
    flex: 1;
    max-width: 380px;
    min-width: 0; /* Prevents flexbox shrinking issues */
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-service-card:hover .flip-inner {
    transform: rotateX(180deg);
}

/* Flip Front */
.flip-front {
    position: absolute;
    inset: 0;
    background: #0f172a;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backface-visibility: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.flip-service-card:hover .flip-front {
    border-color: #B69D74;
}

.service-icon {
    width: 80px;
    height: 80px;
    border: 3px solid #B69D74;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #B69D74;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.flip-front h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* Flip Back */
.flip-back {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backface-visibility: hidden;
    transform: rotateX(180deg);
    border: 3px solid #B69D74;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    overflow-y: auto;
}

.flip-back h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #B69D74;
    flex-shrink: 0;
}

.flip-back p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.flip-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.flip-back ul li {
    font-size: 14px;
    color: #0f172a;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}

.flip-back ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #B69D74;
    border-radius: 50%;
}

/* ============================================
   RESPONSIVE - FIXED FOR TABLET/MOBILE
   ============================================ */
@media (max-width: 991px) {
    .services-flip-section {
        padding: 80px 0;
    }

    .services-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .flip-service-card {
        flex: none; /* Remove flex constraints */
        max-width: 500px; /* Wider on tablet */
        width: 100%; /* Full width within container */
        height: 350px; /* Slightly taller */
    }
}

@media (max-width: 767px) {
    .services-flip-section {
        padding: 60px 0;
    }

    .services-row {
        gap: 20px;
    }

    .flip-service-card {
        max-width: 100%; /* Full width on mobile */
        height: 320px;
    }

    .flip-front {
        padding: 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .flip-front h3 {
        font-size: 18px;
    }

    .flip-back {
        padding: 25px;
    }

    .flip-back h4 {
        font-size: 18px;
    }

    .flip-back p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .flip-back ul li {
        font-size: 13px;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .flip-service-card {
        height: 300px;
    }

    .flip-front {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .flip-front h3 {
        font-size: 16px;
    }

    .flip-back {
        padding: 20px;
    }

    .flip-back h4 {
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .flip-back p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .flip-back ul li {
        font-size: 12px;
        padding: 5px 0;
        padding-left: 18px;
    }

    .flip-back ul li::before {
        width: 6px;
        height: 6px;
    }
}

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 991px) {
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .services-row {
                flex-direction: column;
                align-items: center;
            }

            .flip-service-card {
                max-width: 100%;
                width: 100%;
            }
        }

        @media (max-width: 767px) {

            .features-grid-section,
            .services-flip-section {
                padding: 60px 0;
            }

            .section-header h2 {
                font-size: 24px;
            }

            .feature-card {
                height: 260px;
            }

            .flip-service-card {
                height: 300px;
            }
        }
    