   /* ===================================
           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);
        }

        /* ===================================
           MAIN NAVIGATION - Enhanced Design
           =================================== */
        .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;
        }

        /* ===================================
           LOGO & BRAND - Refined
           =================================== */
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-brand:hover {
            transform: translateY(-1px);
        }

        .logo {
            width: 42px;
            height: 42px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .logo i {
            font-size: 1.3rem;
            color: var(--white);
        }

        .nav-brand:hover .logo {
            transform: rotate(-3deg) scale(1.03);
        }

        .brand-name {
            font-size: 1.35rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===================================
           NAVIGATION MENU - Improved
           =================================== */
        .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);
            position: relative;
        }

        .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 - Compact & Optimized
           =================================== */
        .mega-menu {
            position: absolute;
            top: calc(100% + 0.75rem);
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            min-width: 380px;
            border-radius: 10px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            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 - Refined
           =================================== */
        .nav-auth {
            display: flex;
            gap: 0.625rem;
            align-items: center;
        }

        .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);
        }

        .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: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 24px;
            height: 2.5px;
            background: var(--primary-color);
            border-radius: 3px;
            transition: var(--transition);
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ===================================
           MODALS - Compact
           =================================== */
        .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);
        }

        .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 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(180px, 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;
            text-align: center;
        }

        .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);
        }

        /* ===================================
           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;
            }

            .brand-name {
                font-size: 1.15rem;
            }

            .logo {
                width: 38px;
                height: 38px;
            }

            .logo i {
                font-size: 1.15rem;
            }

            .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 */


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

.pricing h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e3f73;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease forwards;
}

/* Grid Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card Base */
.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
  border-top: 6px solid transparent;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.8s ease forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.2s; }
.pricing-card:nth-child(2) { animation-delay: 0.4s; }
.pricing-card:nth-child(3) { animation-delay: 0.6s; }

/* Distinguish Plans */
.pricing-card.starter {
  border-top-color: #6c757d;
}
.pricing-card.business {
  border-top-color: #ef470a;
}
.pricing-card.pro {
  border-top-color: #2c5aa0;
}

/* Popular Plan Highlight */
.pricing-card.popular {
  transform: scale(1.05);
  z-index: 1;
}
.popular-badge {
  background: #ef470a;
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(239, 71, 10, 0.3);
}

/* Plan Header */
.plan-header h3 {
  font-size: 1.7rem;
  color: #2c5aa0;
  margin-bottom: 10px;
  font-weight: 600;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3f73;
  margin-bottom: 25px;
}

.price span {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 400;
}

/* Plan Features */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.plan-features li {
  padding: 10px 0;
  font-size: 1rem;
  color: #444;
  border-bottom: 1px solid #eee;
}

/* Buttons */
.btn-plan {
  background: #2c5aa0;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-plan:hover {
  background: #1b3a68;
  transform: scale(1.05);
}

/* Highlighted Button */
.btn-plan.highlight {
  background: #ef470a;
}

.btn-plan.highlight:hover {
  background: #d63e08;
  transform: scale(1.08);
}

/* ✨ Hover Effects ✨ */
.pricing-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(44, 90, 160, 0.2);
}

.pricing-card:hover .btn-plan {
  animation: pulse 1.2s infinite;
}

/* ✨ Animations ✨ */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(44, 90, 160, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(44, 90, 160, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(44, 90, 160, 0); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 768px) {
  .pricing h2 {
    font-size: 2.2rem;
  }
  .price {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .pricing-card {
    padding: 1.5rem;
  }
  .plan-header h3 {
    font-size: 1.4rem;
  }
}




/* 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  */