/* ========================================
   Aryanipse Host - Premium Animated Theme
   Colorful + Font Awesome Icons + Responsive
   Prefix: hs-
   ======================================== */

/* --- CSS Variables --- */
:root {
    --hs-primary: #6c5ce7;
    --hs-primary-light: #a29bfe;
    --hs-secondary: #00cec9;
    --hs-accent: #fd79a8;
    --hs-warning: #fdcb6e;
    --hs-danger: #e74c3c;
    --hs-success: #00b894;
    --hs-info: #0984e3;
    --hs-purple: #a55eea;
    --hs-pink: #e84393;
    --hs-orange: #e17055;
    --hs-dark: #2d3436;
    --hs-light: #f8f9fa;
    --hs-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --hs-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --hs-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --hs-gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* --- Global Styles --- */
.hs-main-banner {
    position: relative;
    background: var(--hs-gradient-1);
    padding: 100px 0;
    overflow: hidden;
}

.hs-main-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1%, transparent 1%);
    background-size: 50px 50px;
    animation: hs-gridMove 20s linear infinite;
    pointer-events: none;
}

/* --- Hero Section Animated --- */
.hs-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    animation: hs-slideInLeft 0.8s ease-out;
}

.hs-gradient-text {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e, #ff7675);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: hs-pulse 2s ease-in-out infinite;
}

.hs-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    animation: hs-slideInRight 0.8s ease-out;
    line-height: 1.6;
}

.hs-price-highlight {
    background: linear-gradient(135deg, #fdcb6e, #f39c12);
    color: #2d3436;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    animation: hs-bounce 1s ease infinite;
}

.hs-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: hs-fadeInUp 0.8s ease-out;
}

/* --- Buttons with Icons --- */
.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.hs-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hs-btn:hover i {
    transform: translateX(5px);
}

.hs-btn-primary {
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.hs-btn-primary::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;
}

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

.hs-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
}

..hs-btn-outline,
.hs-btn-outline i,
.hs-btn-outline span {
    color: #fdcb6e !important;
}

.hs-btn-outline {
    border-color: #fdcb6e !important;
}

.hs-btn-outline:hover {
    background: #fdcb6e !important;
    color: #2d3436 !important;
}

.hs-btn-outline:hover i,
.hs-btn-outline:hover span {
    color: #2d3436 !important;
}

.hs-btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hs-btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* --- Features Section (Colorful Cards) --- */
.hs-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.hs-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.hs-feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hs-feature-card:nth-child(1)::before { background: var(--hs-gradient-1); }
.hs-feature-card:nth-child(2)::before { background: var(--hs-gradient-3); }
.hs-feature-card:nth-child(3)::before { background: var(--hs-gradient-2); }
.hs-feature-card:nth-child(4)::before { background: var(--hs-gradient-4); }

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

.hs-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hs-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: hs-float 3s ease-in-out infinite;
}

.hs-feature-card:nth-child(1) .hs-feature-icon { color: var(--hs-primary); }
.hs-feature-card:nth-child(2) .hs-feature-icon { color: var(--hs-info); }
.hs-feature-card:nth-child(3) .hs-feature-icon { color: var(--hs-success); }
.hs-feature-card:nth-child(4) .hs-feature-icon { color: var(--hs-pink); }

.hs-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin-bottom: 0.75rem;
}

.hs-feature-desc {
    color: #636e72;
    line-height: 1.5;
}

/* --- Products Section (Colorful Price Cards) --- */
.hs-products-section {
    padding: 80px 0;
    background: white;
}

.hs-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hs-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-pink), var(--hs-warning));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    animation: hs-shine 3s infinite;
}

.hs-section-subtitle {
    color: #636e72;
    font-size: 1.1rem;
}

.hs-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hs-product-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.hs-product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(108, 92, 231, 0.2);
    border-color: transparent;
}

.hs-product-card:nth-child(1):hover { background: linear-gradient(135deg, #fff5f5, #fff); }
.hs-product-card:nth-child(2):hover { background: linear-gradient(135deg, #f0fff4, #fff); }
.hs-product-card:nth-child(3):hover { background: linear-gradient(135deg, #ebf8ff, #fff); }

.hs-product-featured {
    border: 2px solid var(--hs-primary);
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.2);
    animation: hs-glow 2s ease-in-out infinite;
}

.hs-product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--hs-warning), var(--hs-orange));
    color: #2d3436;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hs-badge-best {
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-purple));
    color: white;
}

.hs-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin: 1rem 0;
}

.hs-product-title i {
    color: var(--hs-primary);
    margin-right: 8px;
}

.hs-product-price {
    margin: 1.5rem 0;
}

.hs-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hs-price-period {
    font-size: 0.9rem;
    color: #636e72;
}

.hs-product-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.hs-product-features li {
    padding: 0.6rem 0;
    color: #636e72;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hs-product-features li i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.hs-product-features li i.fa-check-circle {
    color: var(--hs-success);
}

.hs-product-features li i.fa-times-circle {
    color: var(--hs-danger);
}

/* --- Domain Section (Animated) --- */
.hs-domain-section {
    padding: 80px 0;
    background: var(--hs-gradient-3);
    position: relative;
    overflow: hidden;
}

.hs-domain-section::before {
    content: '✦';
    position: absolute;
    font-size: 3rem;
    color: rgba(255,255,255,0.1);
    animation: hs-floatAround 15s linear infinite;
}

.hs-domain-section .hs-section-title,
.hs-domain-section .hs-section-subtitle {
    color: white;
}

.hs-domain-search-wrapper {
    max-width: 700px;
    margin: 2rem auto;
}

.hs-domain-search-box {
    display: flex;
    background: white;
    border-radius: 60px;
    padding: 0.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: hs-pulse 2s ease-in-out infinite;
}

.hs-search-icon {
    padding: 0.8rem 0 0.8rem 1.5rem;
    font-size: 1.2rem;
    color: var(--hs-primary);
}

.hs-domain-input {
    flex: 1;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    outline: none;
}

.hs-search-buttons {
    display: flex;
    gap: 0.5rem;
}

.hs-domain-prices {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.hs-domain-price-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: hs-fadeInUp 0.5s ease-out backwards;
}

.hs-domain-price-item:nth-child(1) { animation-delay: 0s; }
.hs-domain-price-item:nth-child(2) { animation-delay: 0.1s; }
.hs-domain-price-item:nth-child(3) { animation-delay: 0.2s; }
.hs-domain-price-item:nth-child(4) { animation-delay: 0.3s; }
.hs-domain-price-item:nth-child(5) { animation-delay: 0.4s; }
.hs-domain-price-item:nth-child(6) { animation-delay: 0.5s; }

.hs-domain-price-item:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.35) !important;
    cursor: pointer;
}

.hs-domain-price-item span {
    font-weight: 700;
    margin-left: 0.5rem;
}

/* --- CTA Section (Animated) --- */
.hs-cta-section {
    padding: 80px 0;
    background: var(--hs-gradient-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hs-cta-section::after {
    content: '❤️';
    position: absolute;
    font-size: 2rem;
    animation: hs-heartBeat 1s ease infinite;
    bottom: 20px;
    right: 20px;
    opacity: 0.5;
}

.hs-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    animation: hs-rubberBand 1s ease;
}

.hs-cta-text {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hs-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hs-btn-white {
    background: white;
    color: var(--hs-pink);
}

.hs-btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* --- Responsive Navigation (Mobile Comfort) --- */
@media (max-width: 768px) {
    .hs-main-banner {
        padding: 60px 0;
    }
    
    .hs-hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hs-hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .hs-hero-buttons {
        justify-content: center;
    }
    
    .hs-features-grid,
    .hs-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hs-features-section,
    .hs-products-section,
    .hs-domain-section,
    .hs-cta-section {
        padding: 50px 20px;
    }
    
    .hs-section-title {
        font-size: 1.8rem;
    }
    
    /* Mobile-friendly search */
    .hs-domain-search-box {
        flex-direction: column;
        border-radius: 30px;
        padding: 1rem;
    }
    
    .hs-search-icon {
        display: none;
    }
    
    .hs-domain-input {
        text-align: center;
        padding: 12px;
        border-radius: 50px;
        background: #f5f5f5;
        margin-bottom: 10px;
    }
    
    .hs-search-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .hs-search-buttons .hs-btn {
        width: 100%;
    }
    
    /* Mobile product cards */
    .hs-product-card {
        padding: 1.5rem;
    }
    
    .hs-product-featured {
        transform: scale(1);
    }
    
    /* Mobile domain prices */
    .hs-domain-prices {
        gap: 0.75rem;
    }
    
    .hs-domain-price-item {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }
    
    /* Mobile CTA */
    .hs-cta-title {
        font-size: 1.8rem;
    }
    
    .hs-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hs-cta-buttons .hs-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .hs-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hs-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hs-hero-title {
        font-size: 2.8rem;
    }
}

/* Touch-friendly for mobile */
@media (hover: none) and (pointer: coarse) {
    .hs-btn,
    .hs-feature-card,
    .hs-product-card,
    .hs-domain-price-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hs-btn:active {
        transform: scale(0.98);
    }
    
    .hs-feature-card:active,
    .hs-product-card:active {
        transform: translateY(-5px);
    }
}

/* --- Animations Keyframes --- */
@keyframes hs-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hs-slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes hs-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes hs-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes hs-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes hs-shine {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes hs-glow {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(108, 92, 231, 0.2);
    }
    50% {
        box-shadow: 0 15px 45px rgba(108, 92, 231, 0.5);
    }
}

@keyframes hs-rubberBand {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.25, 0.75);
    }
    40% {
        transform: scale(0.75, 1.25);
    }
    50% {
        transform: scale(1.15, 0.85);
    }
    65% {
        transform: scale(0.95, 1.05);
    }
    75% {
        transform: scale(1.05, 0.95);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes hs-heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes hs-floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(200px, 0) rotate(180deg);
    }
    75% {
        transform: translate(100px, -50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes hs-gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* --- Loading Animation --- */
.hs-loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(108, 92, 231, 0.2);
    border-top-color: var(--hs-primary);
    border-right-color: var(--hs-pink);
    border-bottom-color: var(--hs-warning);
    border-left-color: var(--hs-success);
    border-radius: 50%;
    animation: hs-spin 1s linear infinite;
}

@keyframes hs-spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- Scroll Reveal Animation --- */
.hs-scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.hs-scroll-reveal.hs-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Koro Click Effect (Premium) --- */
.hs-koro-effect {
    position: relative;
    overflow: hidden;
}

.hs-koro-effect:active {
    animation: hs-ripple 0.4s ease-out;
}

@keyframes hs-ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.5);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(108, 92, 231, 0);
    }
}



/* ========================================
   Button Color Fixes - White & Yellow
   Search Box - Lagom Default Style
   ======================================== */

/* --- Get Hosting Now & Check Your Domain Buttons --- */
.hs-hero-buttons .hs-btn-primary,
.hs-hero-buttons .hs-btn-primary i,
.hs-hero-buttons .hs-btn-primary span {
    color: white !important;
    fill: white !important;
}

.hs-hero-buttons .hs-btn-outline,
.hs-hero-buttons .hs-btn-outline i,
.hs-hero-buttons .hs-btn-outline span {
    color: #fdcb6e !important;
    fill: #fdcb6e !important;
    border-color: #fdcb6e !important;
}

.hs-hero-buttons .hs-btn-outline:hover {
    background: #fdcb6e !important;
    color: #2d3436 !important;
}

.hs-hero-buttons .hs-btn-outline:hover i,
.hs-hero-buttons .hs-btn-outline:hover span {
    color: #2d3436 !important;
}

/* --- Search Box - Lagom Default Style (No CSS override) --- */
/* এই অংশটি গুরুত্বপূর্ণ - search box এ কোন extra CSS apply হবে না */
.hs-main-banner .domain-search-input,
.hs-main-banner .search-group,
.hs-main-banner .search-field,
.hs-main-banner .form-control,
.hs-main-banner .search-group-btn,
.hs-main-banner .btn-primary,
.hs-main-banner .btn-primary-faded {
    /* Reset any conflicting styles */
    all: revert;
}

/* শুধুমাত্র basic alignment maintain রাখা হচ্ছে */
.hs-main-banner .domain-search-input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hs-main-banner .search-field {
    flex: 1;
}

.hs-main-banner .search-group-btn {
    display: flex;
    gap: 0.5rem;
}

/* Ensure Lagom original styles work */
.hs-main-banner .form-control {
    border-radius: 0.3rem;
}

.hs-main-banner .btn-primary {
    background: #6c7ae0;
    border-color: #6c7ae0;
}

.hs-main-banner .btn-primary-faded {
    background: rgba(108,122,224,0.1);
    border: 1px solid rgba(108,122,224,0.3);
    color: #6c7ae0;
}

/* Mobile responsive for search box */
@media (max-width: 768px) {
    .hs-main-banner .domain-search-input {
        flex-direction: column;
    }
    
    .hs-main-banner .search-group-btn {
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .hs-main-banner .search-group-btn .btn {
        flex: 1;
    }
}





