   /* ===================================
           GLOBAL STYLES & RESET
           =================================== */
           @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

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

        :root {
            --primary-color: #2c5aa0;
            --secondary-color: #4a90e2;
            --accent-color: #1e40af;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --border-color: #e5e7eb;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ===================================
           TOP BAR - Compact Design
           =================================== */
        .top-bar {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 0.5rem 0;
            font-size: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left {
            display: flex;
            gap: 1.5rem;
        }

        .top-bar-left span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .top-bar-left i {
            font-size: 0.75rem;
            opacity: 0.9;
        }

        .top-bar-right {
            display: flex;
            gap: 0.5rem;
        }

        .top-bar-right a {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            font-size: 0.85rem;
        }

        .top-bar-right a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }


 /* ===================================
           CSS VARIABLES
           =================================== */
           :root {
            --primary-color: #2c5aa0;
            --primary-dark: #1e3f72;
            --primary-light: #4a7bc8;
            --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
            --white: #ffffff;
            --bg-light: #f4f7fb;
            --text-dark: #1a2332;
            --text-light: #6b7a90;
            --border-color: #e2e8f0;
            --shadow-sm: 0 1px 4px rgba(44, 90, 160, 0.08);
            --shadow-md: 0 4px 16px rgba(44, 90, 160, 0.14);
            --shadow-lg: 0 8px 32px rgba(44, 90, 160, 0.18);
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
 
        /* ===================================
           RESET & BASE
           =================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
 
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: var(--text-dark);
            background: var(--bg-light);
            min-height: 100vh;
        }
 
        a {
            text-decoration: none;
            color: inherit;
        }
 
        ul { list-style: none; }
 
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        /* ===================================
           MAIN NAVIGATION
           =================================== */
        .navbar {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }
 
        .navbar.scrolled {
            box-shadow: var(--shadow-md);
        }
 
        .navbar-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.875rem 0;
            gap: 2rem;
        }
 
 
       
 
        
 
       
 
        /* ===================================
           NAVIGATION MENU
           =================================== */
        .nav-menu {
            flex: 1;
            display: flex;
            justify-content: center;
        }
 
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            align-items: center;
        }
 
        .nav-item { position: relative; }
 
        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.625rem 1rem;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.875rem;
            border-radius: 8px;
            transition: var(--transition);
            white-space: nowrap;
            cursor: pointer;
        }
 
        .nav-link i:first-child {
            font-size: 0.875rem;
            color: var(--primary-color);
        }
 
        .nav-link:hover,
        .nav-item.active .nav-link {
            color: var(--primary-color);
            background: rgba(44, 90, 160, 0.06);
        }
 
        .dropdown-icon {
            font-size: 0.65rem;
            transition: transform 0.3s ease;
            margin-left: 0.15rem;
        }
 
        .nav-item.active .dropdown-icon {
            transform: rotate(180deg);
        }
 
        /* ===================================
           MEGA MENU
           =================================== */
        .mega-menu {
            position: absolute;
            top: calc(100% + 0.75rem);
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            background: var(--white);
            min-width: 380px;
            border-radius: 10px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 100;
            border: 1px solid var(--border-color);
        }
 
        .dropdown:hover .mega-menu,
        .dropdown.active .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
 
        .mega-menu::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 6px solid var(--white);
        }
 
        .mega-menu-content { padding: 1.25rem; }
 
        .mega-menu-header {
            padding-bottom: 0.875rem;
            margin-bottom: 0.875rem;
            border-bottom: 1px solid var(--border-color);
        }
 
        .mega-menu-header h3 {
            color: var(--primary-color);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
 
        .mega-menu-header p {
            color: var(--text-light);
            font-size: 0.8rem;
            line-height: 1.4;
        }
 
        .mega-menu-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }
 
        .mega-menu-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            border-radius: 7px;
            transition: var(--transition);
            border: 1px solid transparent;
        }
 
        .mega-menu-item:hover {
            background: var(--bg-light);
            border-color: var(--primary-color);
            transform: translateX(3px);
        }
 
        .mega-item-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
        }
 
        .mega-item-icon i {
            font-size: 1rem;
            color: var(--white);
        }
 
        .mega-item-content h4 {
            color: var(--text-dark);
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.15rem;
        }
 
        .mega-item-content p {
            color: var(--text-light);
            font-size: 0.75rem;
            line-height: 1.3;
        }
 
        /* ===================================
           AUTH BUTTONS
           =================================== */
        .nav-auth {
            display: flex;
            gap: 0.625rem;
            align-items: center;
            flex-shrink: 0;
        }
 
        .btn-login, .btn-cta {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.625rem 1.25rem;
            border: none;
            border-radius: 7px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
 
        .btn-login {
            background: transparent;
            color: var(--primary-color);
            border: 1.5px solid var(--primary-color);
        }
 
        .btn-login:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }
 
        .btn-cta {
            background: var(--gradient-primary);
            color: var(--white);
            border: 1.5px solid transparent;
            box-shadow: var(--shadow-sm);
        }
 
        .btn-cta:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }
 
        /* ===================================
           MOBILE MENU TOGGLE
           =================================== */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            border-radius: 6px;
            transition: var(--transition);
        }
 
        .mobile-menu-toggle:hover {
            background: var(--bg-light);
        }
 
        .mobile-menu-toggle span {
            width: 24px;
            height: 2.5px;
            background: var(--primary-color);
            border-radius: 3px;
            transition: var(--transition);
            display: block;
        }
 
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5.5px, 5.5px);
        }
 
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
 
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5.5px, -5.5px);
        }
 
        /* ===================================
           MODALS
           =================================== */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease;
        }
 
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
 
        .modal-content {
            background: var(--white);
            margin: 5% auto;
            padding: 2rem;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
        }
 
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
 
        .close-modal {
            position: absolute;
            right: 1rem;
            top: 1rem;
            font-size: 1.75rem;
            cursor: pointer;
            color: var(--text-light);
            background: none;
            border: none;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
            line-height: 1;
        }
 
        .close-modal:hover {
            background: var(--bg-light);
            color: var(--text-dark);
            transform: rotate(90deg);
        }
 
        .modal h2 {
            color: var(--primary-color);
            margin-bottom: 0.75rem;
            text-align: center;
            font-size: 1.5rem;
        }
 
        .modal h2 i { margin-right: 0.5rem; }
 
        .modal > .modal-content > p {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.5;
            font-size: 0.9rem;
        }
 
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 0.875rem;
            margin-top: 1.25rem;
        }
 
        .service-card {
            padding: 1.25rem;
            border: 1.5px solid var(--border-color);
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            background: var(--white);
        }
 
        .service-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
        }
 
        .service-card i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
            display: block;
        }
 
        .service-card h4 {
            margin-bottom: 0.375rem;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 600;
        }
 
        .service-card p {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.4;
            margin: 0;
        }
 
        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 0.875rem 1.75rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }
 
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
 
        /* ===================================
           RESPONSIVE — 1100px (large tablet)
           =================================== */
        @media (max-width: 1100px) {
            .nav-list { gap: 0; }
 
            .nav-link {
                padding: 0.55rem 0.75rem;
                font-size: 0.82rem;
            }
 
            .mega-menu { min-width: 340px; }
        }
 
        /* ===================================
           RESPONSIVE — 1024px (tablet landscape)
           =================================== */
        @media (max-width: 1024px) {
            .nav-link {
                padding: 0.625rem 0.875rem;
                font-size: 0.825rem;
            }
 
            .mega-menu { min-width: 350px; }
 
            .brand-name { font-size: 1.2rem; }
        }
 
        /* ===================================
           RESPONSIVE — 900px (small landscape tablet)
           =================================== */
        @media (max-width: 900px) {
            .nav-link i:first-child { display: none; }
 
            .nav-link {
                padding: 0.55rem 0.65rem;
                font-size: 0.8rem;
            }
 
            .btn-login,
            .btn-cta {
                padding: 0.55rem 0.9rem;
                font-size: 0.8rem;
            }
        }
 
        /* ===================================
           RESPONSIVE — 768px (tablet portrait / mobile)
           =================================== */
        @media (max-width: 768px) {
            /* Top bar */
            .top-bar { font-size: 0.75rem; }
            .top-bar-left span { font-size: 0.75rem; }
 
            /* Show hamburger */
            .mobile-menu-toggle { display: flex; }
 
            /* Hide desktop auth */
            .nav-auth.desktop-auth { display: none !important; }
 
            .navbar-wrapper { padding: 0.75rem 0; }
 
            /* Full-screen overlay menu */
            .nav-menu {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--white);
                padding-top: 80px;
                overflow-y: auto;
                flex-direction: column;
                justify-content: flex-start;
                z-index: 999;
            }
 
            .nav-menu.active {
                display: flex;
                animation: slideDown 0.3s ease;
            }
 
            @keyframes slideDown {
                from { opacity: 0; transform: translateY(-16px); }
                to { opacity: 1; transform: translateY(0); }
            }
 
            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
                padding: 1rem 1.25rem;
                align-items: stretch;
            }
 
            .nav-item { width: 100%; }
 
            .nav-link {
                width: 100%;
                justify-content: space-between;
                padding: 0.9rem 1rem;
                border-radius: 8px;
                margin-bottom: 0.25rem;
                font-size: 0.95rem;
            }
 
            .nav-link i:first-child { display: inline-block; }
 
            .dropdown-icon { margin-left: auto; }
 
            /* Mobile mega menu: accordion style */
            .mega-menu {
                position: static;
                transform: none !important;
                min-width: 100%;
                box-shadow: none;
                border: none;
                border-radius: 8px;
                background: var(--bg-light);
                margin-bottom: 0.5rem;
                display: none;
                opacity: 1;
                visibility: visible;
            }
 
            .mega-menu::before { display: none; }
 
            .dropdown.active .mega-menu {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: none !important;
            }
 
            .mega-menu-content { padding: 0.875rem 1rem; }
 
            .mega-menu-grid {
                grid-template-columns: 1fr;
                gap: 0.4rem;
            }
 
            .mega-menu-item { padding: 0.65rem 0.75rem; }
            .mega-menu-item:hover { transform: translateX(0); }
 
            /* Mobile auth buttons inside nav menu */
            .mobile-auth {
                display: flex !important;
                flex-direction: row;
                width: 100%;
                padding: 1rem 1.25rem 1.5rem;
                gap: 0.625rem;
                border-top: 1px solid var(--border-color);
                margin-top: 0.5rem;
            }
 
            .mobile-auth .btn-login,
            .mobile-auth .btn-cta {
                flex: 1;
                justify-content: center;
                padding: 0.8rem 1rem;
                font-size: 0.875rem;
            }
        }
 
        /* ===================================
           RESPONSIVE — 480px (small phones)
           =================================== */
        @media (max-width: 480px) {
            .top-bar-right { gap: 0.625rem; }
            .top-bar-left span { font-size: 0.72rem; }
 


            .modal-content {
                padding: 1.5rem 1.25rem;
                margin: 8% auto;
            }
 
            .modal h2 { font-size: 1.25rem; }
 
            .service-grid {
                grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            }
 
            .mobile-auth {
                flex-direction: column;
            }
        }
 
        /* ===================================
           RESPONSIVE — 360px (very small phones)
           =================================== */
        @media (max-width: 360px) {
            .container { padding: 0 0.875rem; }
 

            .nav-link { font-size: 0.875rem; padding: 0.8rem 0.875rem; }
 
            .top-bar-left span { display: none; }
        }
 
        /* ===================================
           DEMO CONTENT AREA
           =================================== */
        .demo-content {
            padding: 4rem 1.25rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
 
        .demo-content h1 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
 
        .demo-content p { color: var(--text-light); line-height: 1.6; }











        
        /* ===================================
           HERO SECTION
           =================================== */
        .main-content {
            margin-top: 0;
        }

        .hero-section {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 5rem 0;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-section p {
            font-size: 1.15rem;
            margin-bottom: 1.75rem;
            opacity: 0.95;
        }

        .btn-hero {
            background: var(--white);
            color: var(--primary-color);
            padding: 0.875rem 2.25rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .btn-hero:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* ===================================
           RESPONSIVE DESIGN
           =================================== */

        @media (max-width: 1024px) {
            .nav-list {
                gap: 0.15rem;
            }

            .nav-link {
                padding: 0.625rem 0.875rem;
                font-size: 0.825rem;
            }

            .mega-menu {
                min-width: 350px;
            }
        }

        @media (max-width: 768px) {
            .top-bar-left span:last-child {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .navbar-wrapper {
                padding: 0.75rem 0;
            }

            .nav-menu {
                display: none;
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: var(--white);
                box-shadow: var(--shadow-lg);
                padding: 1rem 0;
                max-height: calc(100vh - 64px);
                overflow-y: auto;
            }

            .nav-menu.active {
                display: block;
                animation: slideDown 0.3s ease;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
                padding: 0 1rem;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                width: 100%;
                justify-content: space-between;
                padding: 0.875rem 1rem;
                border-radius: 8px;
                margin-bottom: 0.25rem;
            }

            .dropdown-icon {
                margin-left: auto;
            }

            .mega-menu {
                position: static;
                transform: none;
                min-width: 100%;
                box-shadow: none;
                border: none;
                border-radius: 8px;
                background: var(--bg-light);
                margin-top: 0.375rem;
                margin-bottom: 0.5rem;
                display: none;
            }

            .mega-menu::before {
                display: none;
            }

            .dropdown.active .mega-menu {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            .mega-menu-content {
                padding: 1rem;
            }

            .mega-menu-grid {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .mega-menu-item {
                padding: 0.75rem;
            }

            .mega-menu-item:hover {
                transform: translateX(0);
            }

            .nav-auth {
                display: flex;
                flex-direction: row;
                width: 100%;
                padding: 1rem;
                gap: 0.5rem;
                border-top: 1px solid var(--border-color);
                margin-top: 0.5rem;
            }

            .btn-login,
            .btn-cta {
                flex: 1;
                justify-content: center;
                padding: 0.75rem 1rem;
                font-size: 0.85rem;
            }

            .hero-section {
                padding: 3.5rem 0;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .modal-content {
                padding: 1.75rem 1.25rem;
                width: 95%;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

         

            .top-bar-right {
                gap: 0.375rem;
            }

            .top-bar-right a {
                width: 26px;
                height: 26px;
                font-size: 0.75rem;
            }

            .hero-section h1 {
                font-size: 1.75rem;
            }

            .btn-login,
            .btn-cta {
                font-size: 0.8rem;
                padding: 0.7rem 0.875rem;
            }
        }

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

        a:focus,
        button:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

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

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

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





          /* ===================================
           FEATURES SECTION - PROFESSIONAL REDESIGN
           =================================== */
           .features {
            padding: 5rem 0;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            background: rgba(44, 90, 160, 0.1);
            color: var(--primary-color);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            font-weight: 800;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
            border: 2px solid var(--border-color);
            position: relative;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15);
            border-color: var(--primary-color);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card-inner {
            padding: 2rem;
        }

        .feature-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.75rem;
            box-shadow: 0 8px 20px rgba(44, 90, 160, 0.25);
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .feature-badge {
            padding: 0.375rem 0.875rem;
            background: rgba(16, 185, 129, 0.1);
            color: #059669;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .feature-card h3 {
            font-size: 1.35rem;
            margin-bottom: 0.875rem;
            color: var(--text-dark);
            font-weight: 700;
            line-height: 1.3;
        }

        .feature-card > .feature-card-inner > p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.25rem;
            font-size: 0.95rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.625rem 0;
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .feature-list li i {
            color: #059669;
            font-size: 0.875rem;
            width: 20px;
            height: 20px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* ===================================
           TRUST FEATURES
           =================================== */
        .trust-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            padding: 2.5rem;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid var(--border-color);
        }

        .trust-feature-item {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .trust-feature-item i {
            font-size: 2.25rem;
            color: var(--primary-color);
            width: 60px;
            height: 60px;
            background: rgba(44, 90, 160, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .trust-feature-content h4 {
            font-size: 1.05rem;
            margin-bottom: 0.25rem;
            color: var(--text-dark);
            font-weight: 700;
        }

        .trust-feature-content p {
            font-size: 0.875rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.5;
        }

        /* ===================================
           RESPONSIVE - FEATURES SECTION
           =================================== */
        @media (max-width: 1024px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .trust-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .features {
                padding: 3rem 0;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card-inner {
                padding: 1.5rem;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .trust-features {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .trust-stats {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .stat-number {
                font-size: 1.75rem;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .feature-card h3 {
                font-size: 1.15rem;
            }

            .trust-feature-item {
                flex-direction: column;
                text-align: center;
            }

            .trust-feature-item i {
                font-size: 2rem;
            }
        }
/* start of domain search  */

        .domain-search {
            background: white;
            border: none;
            padding: 3.5rem 4rem;
            border-radius: 20px;
            width: 100%;
            max-width: 100%;
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .domain-search h3 {
            margin-bottom: 0.5rem;
            font-size: 1.8rem;
            color: #1a1a1a;
            text-align: center;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .domain-search-subtitle {
            text-align: center;
            color: #666666;
            font-size: 0.95rem;
            margin-bottom: 2.5rem;
            line-height: 1.5;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(74, 127, 255, 0.4);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(74, 127, 255, 0.1);
            margin-bottom: 2rem;
        }

        .search-box:focus-within {
            border-color: #4a7fff;
            box-shadow: 0 15px 50px rgba(74, 127, 255, 0.25);
            background: rgba(255, 255, 255, 0.12);
        }

        .search-box input {
            flex: 1;
            padding: 1.1rem 1.6rem;
            border: none;
            outline: none;
            font-size: 1rem;
            background: transparent;
            color: white;
            font-weight: 500;
        }

        .search-box input::placeholder {
            color: #78909c;
        }

        .search-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 0.5rem;
        }

        .search-icon {
            color: #64b5f6;
            font-size: 1.1rem;
            margin: 0 0.8rem;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .search-box:focus-within .search-icon {
            opacity: 1;
            color: #4a7fff;
        }

        .search-btn {
            background: linear-gradient(135deg, #ef470a 0%, #e55a2b 100%);
            color: white;
            border: none;
            padding: 1.1rem 2.2rem;
            cursor: pointer;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .search-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .search-btn:hover::before {
            left: 100%;
        }

        .search-btn:hover {
            transform: translateY(-3px);
        }

        .search-btn:active {
            transform: translateY(-1px);
        }

        .search-btn i {
            font-size: 1.1rem;
        }

        .domain-results {
            margin-top: 1.5rem;
            text-align: left;
            max-height: 300px;
            overflow-y: auto;
        }

        .domain-result-item {
            background: rgba(74, 127, 255, 0.1);
            border: 1px solid rgba(74, 127, 255, 0.3);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .domain-result-item:hover {
            background: rgba(74, 127, 255, 0.2);
            border-color: #4a7fff;
            padding-left: 2rem;
        }

        .domain-name {
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .domain-price {
            color: #64b5f6;
            font-weight: 700;
            font-size: 1rem;
        }

        .domain-status {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .status-badge {
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-available {
            background: rgba(76, 175, 80, 0.15);
            color: #2d7a1a;
            border: 1px solid #4caf50;
        }

        .status-taken {
            background: rgba(244, 67, 54, 0.15);
            color: #b71c1c;
            border: 1px solid #f44336;
        }

        .cart-btn {
            background: linear-gradient(135deg, #2d5fd9 0%, #1a3a7d 100%);
            border: none;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            white-space: nowrap;
        }

        .cart-btn:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #1a3a7d 0%, #0f2455 100%);
        }

        .quick-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .quick-link {
            background: white;
            border: 2px solid #2d5fd9;
            color: #2d5fd9;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .quick-link:hover {
            background: #2d5fd9;
            color: white;
            transform: translateY(-2px);
        }

        .error-message {
            color: #b71c1c;
            font-size: 0.85rem;
            margin-top: 0.5rem;
            text-align: center;
        }

        .success-message {
            color: #2d7a1a;
            font-size: 0.85rem;
            margin-top: 0.5rem;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .domain-search {
                padding: 3rem 3rem;
            }
        }

        @media (max-width: 768px) {
            .domain-search {
                padding: 2.5rem 2rem;
            }

            .domain-search h3 {
                font-size: 1.5rem;
            }

            .search-box {
                flex-direction: column;
            }

            .search-btn {
                width: 100%;
                justify-content: center;
            }

            .quick-links {
                flex-direction: column;
            }

            .quick-link {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 600px) {
            .domain-search {
                padding: 2rem 1.5rem;
            }

            .domain-search h3 {
                font-size: 1.4rem;
            }

            .domain-search-subtitle {
                font-size: 0.9rem;
            }

            .search-box input {
                padding: 0.9rem 1.2rem;
                font-size: 0.95rem;
            }

            .search-btn {
                padding: 0.9rem 1.8rem;
                font-size: 0.85rem;
            }
        }

        /* end domain search  */



        /* pricing plans  */

     /* ✅ CSS: Professional Hosting Pricing Section with Animation */
/* ── Section Wrapper ── */
.pricing-wrap {
    background: #0a0f1e;
    padding: 72px 24px 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }

  .pricing-wrap::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  /* ── Segment Tabs ── */
  .seg-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
  }

  .seg {
    display: flex;
    background: #0e1528;
    border: 1px solid #1b2540;
    border-radius: 99px;
    padding: 4px;
    gap: 4px;
  }

  .seg-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all 0.22s;
    color: #6b7a99;
    background: transparent;
    letter-spacing: 0.02em;
  }

  .seg-btn.active {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 2px 12px rgba(37,99,235,0.3);
  }

  /* ── Header ── */
  .pricing-eyebrow {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s;
  }

  .eyebrow-shared   { color: #3b82f6; }
  .eyebrow-reseller { color: #a78bfa; }

  .pricing-title {
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #f0f4ff;
    margin: 0 0 8px;
    line-height: 1.15;
  }

  .pricing-sub {
    text-align: center;
    font-size: 15px;
    color: #6b7a99;
    margin: 0 0 48px;
  }

  /* ── Billing Toggle ── */
  .toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
  }

  .toggle-label {
    font-size: 13px;
    color: #6b7a99;
    font-weight: 500;
  }

  .toggle-label.active { color: #f0f4ff; }

  .toggle-switch {
    width: 44px; height: 24px;
    background: #1e2d4a;
    border-radius: 99px;
    border: 1px solid #2a3d5e;
    position: relative;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
  }

  .toggle-switch.on                 { background: #2563eb; border-color: #3b82f6; }
  .toggle-switch.on.reseller-mode   { background: #7c3aed; border-color: #8b5cf6; }

  .toggle-knob {
    position: absolute;
    top: 3px; left: 3px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: left 0.3s;
  }

  .toggle-switch.on .toggle-knob { left: 23px; }

  .save-badge {
    font-size: 11px;
    font-weight: 600;
    background: rgba(34,197,94,0.12);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.25);
    padding: 2px 8px;
    border-radius: 99px;
  }

  /* ── Panel ── */
  .panel--hidden { display: none; }

  /* ── Cards Grid ── */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
  }

  /* ── Card Base ── */
  .pcard {
    background: #0e1528;
    border: 1px solid #1b2540;
    border-radius: 18px;
    padding: 28px 24px 24px;
    position: relative;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    cursor: default;
  }

  .pcard:hover {
    transform: translateY(-6px);
    border-color: #2a3d5e;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  }

  /* ── Featured – Blue (Shared) ── */
  .pcard.featured {
    background: linear-gradient(160deg, #0f1d3a 0%, #0b1830 100%);
    border: 1.5px solid #2563eb;
    box-shadow: 0 0 0 1px rgba(37,99,235,0.15), 0 24px 48px rgba(37,99,235,0.12);
    padding-top: 40px;
  }

  .pcard.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 0 1px rgba(37,99,235,0.3), 0 32px 64px rgba(37,99,235,0.2);
  }

  /* ── Featured – Purple (Reseller) ── */
  .pcard.featured-reseller {
    background: linear-gradient(160deg, #150e2e 0%, #100a28 100%);
    border: 1.5px solid #7c3aed;
    box-shadow: 0 0 0 1px rgba(124,58,237,0.15), 0 24px 48px rgba(124,58,237,0.12);
    padding-top: 40px;
  }

  .pcard.featured-reseller:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 0 1px rgba(124,58,237,0.3), 0 32px 64px rgba(124,58,237,0.2);
  }

  .featured-chip {
    position: absolute;
    top: -13px; left: 50%; transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 99px;
    white-space: nowrap;
    color: #fff;
  }

  .chip-blue   { background: #2563eb; }
  .chip-purple { background: #7c3aed; }

  /* ── Plan Icon ── */
  .plan-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
  }

  .icon-starter { background: rgba(100,116,139,0.12); }
  .icon-biz     { background: rgba(37,99,235,0.12); }
  .icon-pro     { background: rgba(139,92,246,0.12); }
  .icon-res-a   { background: rgba(20,184,166,0.12); }
  .icon-res-b   { background: rgba(245,158,11,0.12); }
  .icon-res-c   { background: rgba(239,68,68,0.12); }

  /* ── Plan Info ── */
  .plan-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #c5d0e8;
    margin: 0 0 4px;
  }

  .plan-desc {
    font-size: 12.5px;
    color: #4a5878;
    margin: 0 0 20px;
    line-height: 1.5;
  }

  /* ── Pricing ── */
  .price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
  }

  .price-curr { font-size: 1.1rem; color: #6b7a99; font-weight: 500; }

  .price-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #f0f4ff;
    line-height: 1;
    transition: all 0.3s;
  }

  .price-per { font-size: 13px; color: #4a5878; font-weight: 400; }

  .price-annual-note {
    font-size: 11.5px;
    color: #4ade80;
    margin: 0 0 22px;
    min-height: 18px;
  }

  /* ── Divider ── */
  .divider { height: 1px; background: #1b2540; margin: 0 0 20px; }

  /* ── Feature List ── */
  .feat-list { list-style: none; padding: 0; margin: 0 0 24px; }

  .feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #4a5878;
    padding: 6px 0;
    line-height: 1.4;
  }

  .feat-list li.on { color: #c5d0e8; }

  .check {
    width: 16px; height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px;
  }

  .check-yes        { background: rgba(37,99,235,0.15);  color: #3b82f6; }
  .check-no         { background: rgba(255,255,255,0.04); color: #2a3d5e; }
  .check-yes-purple { background: rgba(124,58,237,0.15); color: #a78bfa; }

  .pcard.featured .check-yes { background: rgba(37,99,235,0.2); color: #60a5fa; }

  /* ── CTA Buttons ── */
  .cta-btn {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }

  .cta-ghost { background: rgba(255,255,255,0.04); color: #7a8ba8; border: 1px solid #1b2540; }
  .cta-ghost:hover { background: rgba(255,255,255,0.07); color: #c5d0e8; border-color: #2a3d5e; }

  .cta-primary { background: #2563eb; color: #fff; }
  .cta-primary:hover { background: #1d4ed8; box-shadow: 0 8px 24px rgba(37,99,235,0.35); transform: translateY(-1px); }

  .cta-pro { background: linear-gradient(135deg, #7c3aed, #4f46e5); color: #fff; }
  .cta-pro:hover { box-shadow: 0 8px 24px rgba(124,58,237,0.35); transform: translateY(-1px); }

  .cta-reseller-a { background: rgba(20,184,166,0.12); color: #2dd4bf; border: 1px solid rgba(20,184,166,0.25); }
  .cta-reseller-a:hover { background: rgba(20,184,166,0.2); transform: translateY(-1px); }

  .cta-reseller-b { background: #7c3aed; color: #fff; }
  .cta-reseller-b:hover { background: #6d28d9; box-shadow: 0 8px 24px rgba(124,58,237,0.35); transform: translateY(-1px); }

  .cta-reseller-c { background: linear-gradient(135deg, #dc2626, #9333ea); color: #fff; }
  .cta-reseller-c:hover { box-shadow: 0 8px 24px rgba(220,38,38,0.3); transform: translateY(-1px); }

  /* ── Trust Bar ── */
  .trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 44px;
    flex-wrap: wrap;
  }

  .trust-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: #4a5878; }

  .trust-dot { width: 6px; height: 6px; border-radius: 50%; background: #1e3a5e; }

  /* ── Responsive ── */
  @media (max-width: 600px) {
    .pricing-title { font-size: 1.8rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .trust-row { gap: 14px; }
  }


/* testimonial section  */


/* 🌟 Redesigned Testimonial Section */

.testimonial {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f9fbff 0%, #eaf1ff 100%);
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.testimonial h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e3f73;
  margin-bottom: 4rem;
  animation: fadeDown 1s ease forwards;
}

/* Layout Grid */
.testimonial-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeUp 1s ease forwards;
}

/* Client Photo Styling */
.client-photo {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.client-photo .photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.9);
}

.client-photo:hover .photo {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Rating Overlay */
.photo-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.rating-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.rating-badge .stars {
  color: #ffc107;
}

.rating-badge span {
  font-weight: 700;
  color: #2c5aa0;
  font-size: 1.1rem;
}

.client-photo:hover .rating-badge {
  transform: translateY(-5px) scale(1.05);
}

/* Testimonial Text Card */
.testimonial-text {
  background: #fff;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-text:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(44, 90, 160, 0.15);
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: -25px;
  left: 3rem;
  background: #2c5aa0;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* Main Text */
.testimonial-text blockquote {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #333;
  margin: 2rem 0;
  font-style: italic;
}

.testimonial-text blockquote strong {
  color: #2c5aa0;
}

.testimonial-details {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.testimonial-details em {
  color: #ef470a;
  font-weight: 600;
  font-style: normal;
}

/* Client Info */
.client-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.client-details h4 {
  font-size: 1.3rem;
  color: #2c5aa0;
  margin-bottom: 0.25rem;
}

.client-details p {
  color: #666;
  font-weight: 500;
}

.client-details .company {
  color: #ef470a;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Company Logo */
.company-logo .logo-placeholder {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #2c5aa0, #4a90e2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(44, 90, 160, 0.3);
  transition: transform 0.4s ease;
}

.company-logo .logo-placeholder:hover {
  transform: rotate(10deg) scale(1.1);
}

/* Stats Section */
.testimonial-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 2rem;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #2c5aa0;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.stat:hover .stat-number {
  color: #ef470a;
  transform: scale(1.1);
}

/* ✨ Animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .testimonial-content {
    grid-template-columns: 1fr;
  }
  .client-photo {
    height: auto;
  }
  .testimonial-text {
    margin-top: 2rem;
  }
}
@media (max-width: 600px) {
  .testimonial h2 {
    font-size: 2rem;
  }
  .testimonial-text {
    padding: 2rem;
  }
  .quote-icon {
    left: 2rem;
  }
}


/* end of testimonial section  */