        body {
            box-sizing: border-box;
        }
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        .gradient-primary {
            background: linear-gradient(135deg, #001e52 0%, #002a6b 50%, #003d8f 100%);
        }
        
        .text-primary {
            color: #001e52;
        }
        
        .bg-primary {
            background-color: #001e52;
        }
        
        .text-highlight {
            color: #fb572d;
        }
        
        .bg-highlight {
            background-color: #fb572d;
        }
        
        .dropdown {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .dropdown-parent:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .domain-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 15px 50px rgba(0, 30, 82, 0.15);
            border: 1px solid rgba(0, 30, 82, 0.1);
            transition: all 0.3s ease;
        }
        
        .domain-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(0, 30, 82, 0.2);
        }
        
        .search-input {
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(251, 87, 45, 0.2);
        }
        
        .feature-icon {
            background: linear-gradient(135deg, #fb572d 0%, #ff6b3d 100%);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .pricing-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 30px rgba(0, 30, 82, 0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 30, 82, 0.15);
            border-color: #fb572d;
        }
        
        .pricing-card.popular {
            border-color: #fb572d;
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: "Most Popular";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #fb572d;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }
        
        .info-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 30, 82, 0.1);
            border-left: 4px solid #fb572d;
            transition: all 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 30, 82, 0.15);
        }
        
        .form-group {
            margin-bottom: 0;
        }
        
        .input-group {
            display: flex;
            width: 100%;
        }
        
        .form-control {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #e5e7eb;
            border-radius: 0.75rem 0 0 0.75rem;
            font-size: 1.125rem;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #fb572d;
            box-shadow: 0 10px 30px rgba(251, 87, 45, 0.2);
        }
        
        .input-group-btn {
            display: flex;
        }
        
        .btn {
            padding: 1rem 2rem;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .btn-primary {
            background-color: #fb572d;
            color: white;
        }
        
        .ws-radious-left {
            border-radius: 0 0.75rem 0.75rem 0;
        }
        
        .btn-primary:hover {
            background-color: #e54a26;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 87, 45, 0.3);
        }
        
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }