/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Office Gallery Styles */
.office-gallery {
    padding: 20px 0;
}

.office-gallery img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.office-gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Section heading improvements */
.section-heading {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.section-subheading {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.content-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

/* Horizontal Timeline Styles */
.horizontal-timeline {
    position: relative;
    padding: 60px 0 40px;
    margin: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 280px;
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.timeline-marker {
    position: relative;
    margin-bottom: 30px;
}

.timeline-year {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(34, 186, 223, 0.4);
    border: 6px solid #ffffff;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(34, 186, 223, 0.6);
}

.timeline-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: var(--primary-color);
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Timeline */
@media (max-width: 992px) {
    .timeline-line {
        display: none;
    }
    
    .timeline-items {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        width: 100%;
        max-width: 500px;
        margin-bottom: 40px;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-year {
        width: 90px;
        height: 90px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .horizontal-timeline {
        padding: 40px 0 20px;
    }
    
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
}

/* Service Section improvements */
.service-section {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-section .plans.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.8rem;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.service-section .plans.badge.bg-blue {
    background: linear-gradient(45deg, #22badf, #007297);
}

.service-section .plans.badge.bg-green {
    background: linear-gradient(45deg, #28a745, #1e7e34);
}

.service-section .plans.badge.bg-purple {
    background: linear-gradient(45deg, #6f42c1, #5a2d91);
}

.service-section i {
    font-size: 60px;
    color: #22badf;
    margin: 20px 0;
    display: block;
}

.service-section .title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 20px 0 15px 0;
}

.service-section .subtitle {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    min-height: 100px;
}

.service-section .btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Wrap service improvements */
.wrap-service {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

/* Service row spacing */
.services .service-wrap .row {
    gap: 15px 0;
}

/* License pricing spacing */
.pricing.special {
    margin-bottom: 60px;
}

.pricing.special:last-of-type {
    margin-bottom: 0;
}

.pricing .row {
    gap: 20px 0;
}

.pricing .wrapper {
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.pricing .wrapper .list-info {
    flex-grow: 1;
    margin-bottom: 20px;
}

.wrap-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.wrap-service .heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 20px 0 15px 0;
}

.wrap-service .text-info {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

/* Overview section improvements */
.overview-info {
    padding: 20px 0;
}

.overview-info .section-heading {
    font-size: 2rem;
    margin-bottom: 20px;
}

.overview-txt {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.img-over {
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-over img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .office-gallery .row {
        margin: 0;
    }
    
    .office-gallery img {
        height: 120px !important;
        margin-bottom: 15px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .service-section {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    
    .service-section .subtitle {
        min-height: auto;
    }
    
    .wrap-service {
        margin-bottom: 30px;
    }
    
    .overview-info {
        text-align: center;
        margin-top: 30px;
    }
    
    .img-over {
        margin-bottom: 30px;
    }
}

/* Top header improvements */
.top-header {
    padding: 80px 0;
    position: relative;
}

.top-header .heading {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.top-header .subheding {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Team section improvements */
.team .wrapper {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team .wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Button improvements */
.btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== CUSTOMER PANEL DROPDOWN STYLES ===== */
.customer-panel-dropdown {
    position: relative;
    display: inline-block;
}

.customer-panel-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 8px;
    border: none;
    padding: 25px;
}

.customer-panel-dropdown:hover .dropdown-menu {
    display: block;
}

.customer-panel-dropdown .dropdown-menu:hover {
    display: block;
}

.customer-panel-dropdown .dropdown-menu h5 {
    color: #333;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.customer-panel-dropdown .dropdown-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.customer-panel-dropdown .dropdown-buttons .btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.customer-panel-dropdown .btn-login {
    background: linear-gradient(135deg, #22badf 0%, #007297 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(34,186,223,0.3);
}

.customer-panel-dropdown .btn-login:hover {
    background: linear-gradient(135deg, #007297 0%, #005a7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34,186,223,0.4);
    color: white;
    text-decoration: none;
}

.customer-panel-dropdown .btn-register {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
}

.customer-panel-dropdown .btn-register:hover {
    background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
    color: white;
    text-decoration: none;
}

.customer-panel-dropdown .dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
    margin: 5px 0;
}

/* ===== DOMAIN MEGA MENU STYLES ===== */
.domain-mega-menu {
    position: relative;
}

.domain-mega-menu .sub-menu {
    min-width: 600px;
    padding: 30px;
}

.domain-mega-menu .domain-search-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.domain-mega-menu .domain-search-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.domain-mega-menu .domain-search-section .domain-search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.domain-mega-menu .domain-search-form input[type="text"] {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.domain-mega-menu .domain-search-form button {
    padding: 12px 20px;
    background-color: #22badf;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.domain-mega-menu .domain-search-form button:hover {
    background-color: #007297;
}

.domain-mega-menu .domain-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.domain-mega-menu .domain-service-item {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.domain-mega-menu .domain-service-item:hover {
    background-color: #f8f9fa;
    border-color: #22badf;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34,186,223,0.15);
}

.domain-mega-menu .domain-service-item i {
    font-size: 32px;
    color: #22badf;
    margin-bottom: 15px;
    display: block;
}

.domain-mega-menu .domain-service-item h6 {
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.domain-mega-menu .domain-service-item p {
    color: #666;
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.domain-mega-menu .domain-service-item .btn {
    background: linear-gradient(135deg, #22badf 0%, #007297 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34,186,223,0.3);
}

.domain-mega-menu .domain-service-item .btn:hover {
    background: linear-gradient(135deg, #007297 0%, #005a7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34,186,223,0.4);
    color: white;
    text-decoration: none;
}

/* ===== REPLACE ALL PURPLE COLORS WITH BLUE TONES ===== */
/* Replace purple gradients with blue gradients */
.sec-grad-purple {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
}

.sec-grad-purple-light {
    background: linear-gradient(135deg, var(--primary-light) 0%, #0187b6 100%) !important;
}

.sec-grad-blue-to-purple-light {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
}

.sec-grad-purple-to-blue {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
}

/* Replace purple buttons with blue */
.btn-default-grad-purple-fill {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
    color: white !important;
}

.btn-default-grad-purple-fill:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0187b6 100%) !important;
}

/* Replace purple text colors with blue */
.text-purple {
    color: var(--primary-color) !important;
}

.text-purple-light {
    color: var(--primary-light) !important;
}

/* Replace purple borders with blue */
.border-purple {
    border-color: var(--primary-color) !important;
}

.border-purple-light {
    border-color: var(--primary-light) !important;
}

/* Replace purple backgrounds with blue */
.bg-purple {
    background-color: var(--primary-color) !important;
}

.bg-purple-light {
    background-color: var(--primary-light) !important;
}

/* Replace purple hover states with blue */
.hover-purple:hover {
    color: var(--primary-color) !important;
}

.hover-purple-bg:hover {
    background-color: var(--primary-color) !important;
}

/* Replace service section purple badge with blue */
.service-section .plans.badge.bg-purple {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light)) !important;
}

/* Replace any remaining purple variables */
:root {
    --purple-color: var(--primary-color);
    --purple-dark: var(--primary-dark);
    --purple-light: var(--primary-light);
}

/* TLD Logos Styles */
.popular-tlds {
    text-align: center;
}

.tld-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.tld-logo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.tld-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tld-logo img {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

/* Responsive TLD logos */
@media (max-width: 768px) {
    .tld-logos {
        gap: 15px;
    }
    
    .tld-logo {
        padding: 8px;
    }
    
    .tld-logo img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .tld-logos {
        gap: 10px;
    }
    
    .tld-logo {
        padding: 8px;
    }
    
    .tld-logo img {
        width: 22px;
        height: 22px;
    }
}

/* ===== SERVICE INFO TOOLTIP STYLES ===== */
.service-info-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #22badf 0%, #007297 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(34, 186, 223, 0.3);
}

.service-info-icon:hover {
    background: linear-gradient(135deg, #007297 0%, #005a7a 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(34, 186, 223, 0.5);
}

.service-info-icon i {
    color: white;
    font-size: 12px;
    line-height: 1;
}

.service {
    position: relative;
}

.service-info-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.service-info-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.service-info-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.service-info-tooltip::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #e9ecef;
}

.tooltip-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooltip-close:hover {
    color: #333;
}

.tooltip-content {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding-right: 15px;
}

/* Mobile responsive tooltip */
@media (max-width: 768px) {
    .service-info-tooltip {
        max-width: 250px;
        left: 0;
        transform: none;
        margin-top: 15px;
    }
    
    .service-info-tooltip.show {
        transform: translateY(5px);
    }
    
    .service-info-tooltip::before,
    .service-info-tooltip::after {
        left: 20px;
        transform: none;
    }
}

/* ===== MOBILE MENU IMPROVEMENTS ===== */
.menu-wrap.mobile .main-menu {
    background: white;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.menu-wrap.mobile .main-menu .menu-item-has-children > a {
    position: relative;
}

.menu-wrap.mobile .main-menu .menu-item-has-children > a::after {
    content: '+';
    position: absolute;
    right: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.menu-wrap.mobile .main-menu .menu-item-has-children.active > a::after {
    transform: rotate(45deg);
}

.menu-wrap.mobile .main-menu .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 10px;
}

.menu-wrap.mobile .main-menu .menu-item-has-children.active .sub-menu {
    max-height: 300px;
}

.menu-wrap.mobile .main-menu .sub-menu .menu-item {
    padding: 0;
}

.menu-wrap.mobile .main-menu .sub-menu .menu-item a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
}

.menu-wrap.mobile .main-menu .sub-menu .menu-item:last-child a {
    border-bottom: none;
}

.menu-wrap.mobile .main-menu .sub-menu .menu-item a:hover {
    background: #e9ecef;
    color: #333;
}

