/* Marquee Styles */
.marquee-area {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    width: 200px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    transition: all 0.3s;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hover & Color Utilities */
.hover-text-theme:hover {
    color: var(--theme) !important;
}

.text-theme {
    color: var(--theme);
}

.text-theme-dark {
    color: var(--theme2);
}

.pricing-card-items:hover {
    border-color: var(--theme) !important;
}

/* Hero Slider Styles */
.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
}

.hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--theme);
    opacity: 1;
}

.hero-slider .hero-1 {
    padding: 20px 0 60px !important;
    /* Reduced top padding */
}

@media (max-width: 1199px) {
    .hero-slider .hero-1 {
        padding: 40px 0 60px !important;
    }
}

@media (max-width: 767px) {
    .hero-slider .hero-1 {
        padding: 30px 0 50px !important;
    }
}

.hero-content {
    margin-top: -10px;
}

/* Update H1 Styling with High Specificity */
.hero-slider .hero-1 .hero-content h1 {
    font-size: 55px !important;
    font-weight: 700;
    line-height: 1.2;
    color: var(--theme2) !important;
    /* Force Brand Color */
    margin-bottom: 20px;
}

.hero-slider .hero-1 .hero-content h1::first-line {
    color: #000000 !important;
    /* Force Black */
}

/* Update Button Color */
.hero-author .theme-btn {
    background-color: var(--theme) !important;
    /* Brand color */
}

.hero-content h6 {
    margin-top: 5px;
    margin-bottom: 15px;
    color: #33413e !important;
    /* Update description color to match 2nd line */
}

.hero-author {
    margin-top: 5px !important;
}

.hero-slider .array-button {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 10;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-slider .array-button button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slider .array-button button:hover {
    background: var(--theme);
    border-color: var(--theme);
}

.doming-name-wrapper .doming-list li::before {
    display: none;
}

@media (max-width: 767px) {
    .hero-slider .array-button {
        display: none;
    }
}

/* Responsive Improvements */
.responsive-section {
    padding: 80px 0 !important;
}

@media (max-width: 991px) {
    .responsive-section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 767px) {
    .responsive-section {
        padding: 50px 0 !important;
    }

    .doming-name-area {
        padding: 30px 15px !important;
    }

    .doming-name-wrapper {
        padding: 30px 20px !important;
        margin-top: 30px !important;
    }

    .cta-contact-left h2 {
        font-size: 28px !important;
    }
}

.responsive-cta {
    padding: 80px 0;
    min-height: 48vh;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .responsive-cta {
        padding: 60px 0;
        min-height: auto;
    }

    .cta-contact-image img {
        margin-top: 30px;
        max-height: 300px !important;
    }
}

/* Domain Card Styles */
.domain-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.domain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--theme);
}

.domain-card .tld-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--theme);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.domain-card .domain-tld {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.domain-card .domain-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 20px;
}

.domain-card .domain-price span {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
}

.domain-card .price-details {
    margin-bottom: 24px;
    flex-grow: 1;
}

.domain-card .price-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #f1f5f9;
}

.domain-card .price-item:last-child {
    border-bottom: none;
}

.domain-card .price-label {
    color: #64748b;
    font-size: 14px;
}

.domain-card .price-value {
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}

.domain-card .cta-btn {
    background: var(--theme);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
}

.domain-card .cta-btn:hover {
    background: var(--theme2);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.rounded-xl {
    border-radius: 1rem !important;
}


/* Floating Contact Icons */
.floating-contact-stack {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    cursor: pointer;
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: white;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background-color: #3b82f6;
}

.btn-phone:hover {
    background-color: #2563eb;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-chat {
    background-color: var(--theme);
    position: relative;
    color: var(--white);
    /* Dark text for contrast against bright theme */
}

.btn-chat:hover {
    background-color: var(--theme2);
    box-shadow: 0 6px 20px var(--box-shadow);
}

/* Adjustments for mobile */
@media (max-width: 575px) {
    .floating-contact-stack {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Chat Box Styles */
.chat-box {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
    animation: slideUp 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.chat-box.active {
    display: flex;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-header {
    background: var(--theme) !important;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chat-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-body {
    padding: 20px;
    background: #f8f9fa;
    height: 300px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.message.received {
    background: white;
    padding: 12px 15px;
    border-radius: 0 15px 15px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: #333;
}

.message .time {
    display: block;
    font-size: 10px;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

.chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
}

.chat-footer .form-control {
    border-radius: 20px;
    padding-left: 15px;
    border: 1px solid #e0e0e0;
}

.chat-footer .form-control:focus {
    box-shadow: none;
    border-color: var(--theme);
}

.chat-footer .btn-emerald {
    background: var(--theme) !important;
    color: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s;
}

@media (max-width: 575px) {
    .chat-box {
        bottom: 80px;
        right: 15px;
        width: calc(100% - 30px);
    }
}