/* ---------------- HEADER STYLE ---------------- */

.top-header {
    width: 100%;
    padding: 20px 20px;
    background: url(../img/home-new.png) center no-repeat;
    min-height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.header-background-overlay {
    background-color: transparent;
    background-image: linear-gradient(270deg, #0000008A 100%, #00000000 0%);
    opacity: 0.77;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    inset: 0;
    position: absolute;
}
.header-container {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    border-radius: 40px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

/* Logo */
.header-logo img {
    width: 150px;
}


/* NAV (DESKTOP) */
.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    padding: 13px 20px;
}
.header-nav ul li a.active, .header-nav ul li a:hover {
    color: #DECFFF;
}
#mainNavbar ul li a{
    color: #202020;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}
.master-breadcrumb, .breadcrumb{
    background-color: #202020;
}
.breadcrumb-item{
    color:#fff;
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}
.breadcrumb-item.active{
    color: #DECFFF;
    fill: #DECFFF;
}
/* ---------------- MOBILE TOGGLE BUTTON ---------------- */

.menu-toggle {
    width: 32px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 9999;
}

.menu-toggle span {
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    transition: .3s ease;
}

/* Toggle animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(15px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-15px);
}

 .btn-outline-primary, .btn-success, .panel-add, #btnCompleteProductConfig, .listtable .btn-info, #btnAlreadyRegistered, #btnCompleteOrder, #btnCheckAvailability, .btn-warning, .btn-primary, .btn-transfer, .btn-secondary{
    background: #202020 !important;
    color: #fff !important;
    text-transform: uppercase;
    border-radius: 29px 29px 29px 29px;
    padding: 10px 20px 10px 20px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Rethink Sans", sans-serif;
    border-color: #202020;
}
 .btn-outline-primary{
    padding: 10px 0px;
}
#btnCheckAvailability{border-radius: 0;}

.btn-outline-primary:hover, .btn-success:hover, #order-modern .product:hover .btn-success, #btnCompleteProductConfig:hover, 
.panel-add:hover, #btnAlreadyRegistered:hover, #btnCompleteOrder:hover, #btnCheckAvailability:hover, .btn-warning:hover, .btn-primary:hover, .btn-transfer:hover, .listtable .btn-info:hover{
    background: #5623ca !important;
    border-color: #5623ca;
}
.tld-filters .badge-success, .tld-filters .badge-secondary:hover, .client-home-cards .btn-default:hover, .btn-secondary:hover{
    background-color: #5623ca !important ;
    color: #fff !important;
}
.tld-filters .badge-secondary, #btnKnowledgebaseSearch, .div-service-status .label, .client-home-cards .btn-default, .status-unpaid, .status-pending{background-color: #202020;color: #fff;}
#order-modern .product:hover, .list-group-item.active, #order-standard_cart .view-cart-items-header, #order-standard_cart .empty-cart .btn{
    background-color: #202020 !important;

}
.input-group-append .btn-default, .status-paid, .status-active{
    background-color: #5623ca;
    color: #fff;
}
#order-modern .product:hover .pricing, #order-modern .product:hover .name, .product:hover .description{
    color: #fff !important;
}
.breadcrumb-item a{color: #fff !important;}
#order-standard_cart .view-cart-items {
    margin: 0 0 20px 0;
    border-bottom: 2px solid #202020 !important;
}
 .pricing-card-title{
    font-family: "Rethink Sans", Sans-serif;
    font-size: 20px !important;
    font-weight: 500;
}
#btnTransfer, #btnDomainSearch{
    background: #202020 ;
    color: #fff;
    text-transform: uppercase;
    border-radius: 29px 29px 29px 29px !important;
    padding: 6px 16px;
}
#btnTransfer{
    background-color: #5623ca;
}
.home-domain-search h2, .primary-content h2{
    font-family: "Rethink Sans", Sans-serif;
    font-size: 50px;
    font-weight: 700;
}


/* ---------------- MOBILE RESPONSIVE (Below 767px) ---------------- */
@media (max-width: 767px) {

    .header-container {
        padding: 12px 15px;
    }

    /* Show toggle on right */
    .menu-toggle {
        display: flex;
        order: 3;
    }

    /* Center LOGO */
    .header-logo {
        order: 2;
        margin: 0;
    }
    .header-logo img {
    width: 90px;
}

    /* Mobile Menu (dropdown from top) */
    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #120d23;
        padding: 20px 25px;
        display: none;
    }

    /* When open */
    .header-nav.open {
        display: block;
        animation: dropdownSlide .3s ease;
    }

    /* Vertical list */
    .header-nav ul {
        flex-direction: column;
        gap: 18px;
    }

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


}


/* ---------------- FOOTER MAIN ---------------- */

.bottom-footer {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}
.bottom-footer.row{
    margin: 0 !important;
}

/* Left purple block */
.footer-left-block {
    width: 32%;
    background: #120d23;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 20px;
}

.footer-right {
    width: 68%;
    padding: 40px 60px;
}

/* Pills */
.footer-top-titles {
    margin-bottom: 20px;
}
.title-pill {
    background: #333333;
    padding: 2px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Rethink Sans", sans-serif;
    display: inline-flex;
}

.footer-divider {
    border-top: 1px solid #383544;
    margin: 15px 0 30px;
}

/* Columns */
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li a{
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
}
.footer-col ul li a:hover,
.footer-col ul li a.active {
    color:#DECFFF;
    fill: #DECFFF;
}
.footer-col ul li{
    margin-bottom: 12px;
}

/* Social */
.social-col {
    display: flex;
    gap: 15px;
}
.social-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    background-color: #000;
}
.social-btn:hover{
    color: #fff;
    text-decoration: none;
    background-color: #5623ca;
}

/* Newsletter */
.newsletter p {
    color: #ddd;
    font-size: 15px;
}
.newsletter-form {
    display: flex;
    position: relative;
}
.newsletter-form input {
    width: 100%;
    padding: 13px 140px 13px 18px;
    background: #1b1a26;
    border: 1px solid #333;
    border-radius: 30px;
    color: #fff;
}
.newsletter-form button {
    background: #fff;
    padding: 6px 18px;
    color: #5623ca;
    border: none;
    font-size: 15px;
    font-family: "Rethink Sans", Sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 29px 29px 29px 29px;
    position: absolute;
    right: 10px;
    top: 9px;
}
.newsletter-form button:hover{
    background-color: #000;
    color: #fff;
}

/* COPYRIGHT BAR */
.footer-copy-bar {
    background: #5623ca;
    color: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
}
.footer-copy-bar p{
    align-self: center;
    text-align: center;
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}
.copy-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
     font-family: "Lato", Sans-serif;
    font-size: 16px;
    font-weight: 400;
}
@media (max-width: 767px){
    .bottom-footer, .footer-top-titles, .footer-content,.footer-copy-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .footer-left-block, .footer-right{width: 100%; padding: 20px 20px;}
    .newsletter-form button{right: 30px;}
     .footer-links a {
        margin: 0 10px;
    }
    .social-col{justify-content: center;}
    .copy-links a{display: block;}
    .newsletter-form{ padding: 0 15px; }
}

@media (max-width:900px){
    .header-nav ul li a {
        padding: 13px 14px;
    }
    .home-domain-search h2, .primary-content h2{font-size: 30px;}
}
