
/* ================= HERO SECTION ================= */
.hero-center {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--sun-blue) 100%);
    padding: 120px 0;
    color: white;
}

.hero-center h1 {
    font-size: 52px;
    font-weight: 800;
}

.hero-center h1 span {
    color: var(--sun-orange);
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--sun-orange), var(--sun-blue));
    margin: 20px auto;
    border-radius: 2px;
}

.search-box-wrapper {
    max-width: 850px;
    background: white;
    border-radius: 50px;
    padding: 10px;
}

.search-box-wrapper .btn-primary {
    border-radius: 50px;
    height: 60px;
    background: var(--sun-orange);
    border: none;
}

.search-box-wrapper .btn-primary:hover {
    background: #d94f29;
}

/* ================= DOMAIN PRICING CARDS ================= */
.section-padding { padding: 90px 0; }
.bg-white { background-color: #ffffff; }
.bg-light-alt { background-color: #f8f9fa; }

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--sun-orange);
}

.section-description {
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-size: 16px;
    text-align: center;
}

/* UNIFIED CARD STYLES - All cards get the same hover effect */
.domain-card,
.service-card,
.pricing-card,
.pro-card,
.blog-post-card,
.testimonial-card,
.tech-box,
.plugin-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Subtle gradient border on hover for all cards */
.domain-card::after,
.service-card::after,
.pricing-card::after,
.pro-card::after,
.blog-post-card::after,
.testimonial-card::after,
.tech-box::after,
.plugin-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--sun-orange), var(--sun-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.domain-card:hover,
.service-card:hover,
.pricing-card:hover,
.pro-card:hover,
.blog-post-card:hover,
.testimonial-card:hover,
.tech-box:hover,
.plugin-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(31, 107, 154, 0.15);
}

.domain-card:hover::after,
.service-card:hover::after,
.pricing-card:hover::after,
.pro-card:hover::after,
.blog-post-card:hover::after,
.testimonial-card:hover::after,
.tech-box:hover::after,
.plugin-card:hover::after {
    opacity: 1;
}

/* Domain Cards Specific */
.domain-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.domain-extension {
    font-size: 22px;
    font-weight: 700;
    color: var(--sun-blue);
    margin-bottom: 5px;
}

.domain-tag {
    color: #94a3b8;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.domain-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-navy);
}

.domain-price-period {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 18px;
}

.btn-domain {
    background: var(--sun-orange);
    border: 1.5px solid var(--sun-orange);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    width: 100%;
    transition: 0.3s;
}

.btn-domain:hover {
    background: #d94f29;
    border-color: #d94f29;
    box-shadow: 0 5px 15px rgba(242, 100, 59, 0.2);
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    text-decoration: none;
    color: var(--sun-orange);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.service-link:hover {
    gap: 12px;
    color: var(--sun-blue);
}


/* Replace this entire section in your style.css */

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border: 1.5px solid #eef2f6;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Gradient border effect for all pricing cards on hover */
.pricing-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--sun-orange), var(--sun-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover::after {
    opacity: 1;
}

/* Featured card - always show the gradient border */
.pricing-card.featured::after {
    opacity: 1;
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
    border: none; /* Remove the solid border since we have gradient */
    box-shadow: 0 25px 50px -12px rgba(31, 107, 154, 0.25);
}

/* Adjust for mobile */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--sun-orange);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--sun-blue);
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 25px;
}

.pricing-card .price span {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--sun-orange);
    font-size: 16px;
}

/* Buttons */
.btn-pricing {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    border: 1.5px solid var(--sun-orange);
    background: transparent;
    color: var(--sun-orange);
    font-weight: 700;
    transition: 0.3s;
}

.btn-pricing:hover {
    background: var(--sun-orange);
    color: #fff;
    box-shadow: 0 15px 35px rgba(242, 100, 59, 0.2);
}

.featured-btn {
    background: var(--sun-orange);
    color: #fff;
    border: 1.5px solid var(--sun-orange);
}

.featured-btn:hover {
    background: #d94f29;
    border-color: #d94f29;
}

/* Pro Cards */
.pro-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
}

.pro-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

/* UNIFIED ICON STYLES - All icons use logo orange */
.icon-box,
.pro-icon-box,
.s-feature i,
.service-card .icon-box,
.testimonial-card i,
.faq-icon,
.contact-glass-card i,
footer i,
.chat-window i,
.nav-service-item i:not(.active i) {
    color: var(--sun-orange);
    transition: all 0.4s ease;
}

/* Icon hover effect - all icons get orange background on hover */
.icon-box,
.pro-icon-box,
.s-feature i,
.service-card .icon-box,
.testimonial-card i,
.tech-box i,
.plugin-card i {
    background: rgba(242, 100, 59, 0.1);
    transition: all 0.4s ease;
}

.service-card:hover .icon-box,
.pro-card:hover .pro-icon-box,
.s-feature:hover i,
.testimonial-card:hover i,
.tech-box:hover i,
.plugin-card:hover i {
    background: var(--sun-orange);
    color: #fff;
    transform: rotateY(180deg);
}

/* Specific icon boxes */
.icon-box {
    width: 65px;
    height: 65px;
    background: rgba(242, 100, 59, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.pro-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(242, 100, 59, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.s-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #475569;
}

.s-feature i {
    width: 35px;
    height: 35px;
    background: rgba(242, 100, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    min-width: calc(50% - 15px);
}

.stars {
    color: var(--sun-orange);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card h5 {
    color: var(--dark-navy);
    font-weight: 700;
    margin-top: 20px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-controls button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--sun-orange);
    background: transparent;
    color: var(--sun-orange);
    transition: 0.3s;
}

.carousel-controls button:hover {
    background: var(--sun-orange);
    color: white;
    border-color: var(--sun-orange);
}

/* Blog Cards */
.blog-post-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eef2f6;
}

.post-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-date {
    color: var(--sun-blue);
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.post-content h4 {
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-size: 20px;
}

.read-more {
    text-decoration: none;
    color: var(--sun-orange);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.read-more:hover {
    gap: 10px;
    color: var(--sun-blue);
}

/* Tech Boxes */
.tech-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tech-box i {
    font-size: 30px;
    color: var(--sun-orange);
    margin-bottom: 15px;
    display: block;
}

.tech-box h4 {
    color: white;
    margin-bottom: 10px;
}

.tech-box p {
    color: #94a3b8;
}

/* Plugin Cards */
.plugin-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plugin-card img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.plugin-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #f8fbff !important;
    color: var(--sun-blue) !important;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f2643b'%3e%3cpath fill-rule='evenodd' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f6b9a'%3e%3cpath fill-rule='evenodd' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateX(5px);
    border-left: 4px solid var(--sun-blue) !important;
}

/* Logo Slider */
.logo-slider {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    white-space: nowrap;
}

.logo-slider::before, .logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, white 0%, rgba(255,255,255,0) 100%);
}

.logo-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 30s linear infinite;
}

.logo-slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    width: 150px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.logo-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

/* Tech Power Section */
.tech-power-section {
    background: var(--dark-navy);
    padding: 100px 0;
    color: white;
}

.text-gradient {
    background: linear-gradient(90deg, var(--sun-orange), var(--sun-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-light-muted { 
    color: #94a3b8; 
}

.floating-anim { 
    animation: float 6s ease-in-out infinite; 
}

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

/* Service Navigation */
.service-nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-service-item {
    background: #fff;
    border: 1px solid #eef2f6;
    padding: 18px 25px;
    border-radius: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-navy);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.nav-service-item i {
    font-size: 20px;
    color: var(--sun-orange);
    transition: 0.3s;
}

.nav-service-item.active {
    background: var(--sun-blue);
    color: #fff;
    border-color: var(--sun-blue);
    box-shadow: 0 10px 20px rgba(31, 107, 154, 0.2);
}

.nav-service-item.active i {
    color: #fff;
}

.nav-service-item:hover:not(.active) {
    background: #f8fafc;
    border-color: var(--sun-blue);
    transform: translateX(5px);
}

.service-detail-card {
    background: #fcfdfe;
    border: 1px solid #eef2f6;
    border-radius: 30px;
    padding: 50px;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.02);
}

.service-detail-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 35px;
    color: var(--dark-navy);
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.service-content.active {
    display: block;
}

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


.contact-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-glass-card i {
    color: var(--sun-orange);
}

.contact-glass-card h5 {
    color: white;
}

.contact-glass-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
    
    .hero-center h1 {
        font-size: 42px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .service-detail-card {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .hero-center h1 {
        font-size: 32px;
    }
    
    .plugins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===== FIXES FOR CONSISTENT SPACING AND FEATURED CARD ===== */

/* 1. FIX FEATURED CARD BORDER EFFECT */
.pricing-card {
    position: relative;
    z-index: 1;
}

.pricing-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--sun-orange), var(--sun-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover::after {
    opacity: 1;
}

/* Featured card - always show the gradient border */
.pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
    border: none; /* Remove solid border */
    box-shadow: 0 25px 50px -12px rgba(31, 107, 154, 0.25);
}

.pricing-card.featured::after {
    opacity: 1;
}

/* 2. FIX SECTION SPACING - ALL SECTIONS 90px padding */
.section-padding,
section:not(.hero-center):not(.tech-power-section):not(.testimonial-section),
#domain-pricing,
#services,
#hosting-pricing,
#pro-plans,
#offered-services,
#blog,
.faq-section,
.clients-section {
    padding: 90px 0 !important;
}

/* 3. ADJUST FOR MOBILE */
@media (max-width: 768px) {
    .section-padding,
    section:not(.hero-center):not(.tech-power-section):not(.testimonial-section),
    #domain-pricing,
    #services,
    #hosting-pricing,
    #pro-plans,
    #offered-services,
    #blog,
    .faq-section,
    .clients-section {
        padding: 60px 0 !important;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* 4. ENSURE HERO SECTION KEEPS ITS SPACING */
.hero-center {
    padding: 120px 0 !important;
}

.tech-power-section {
    padding: 100px 0 !important;
}

/* 5. FIX ANY BOOTSTRAP OVERRIDES FOR BUTTONS */
.btn-primary,
.btn-check:checked + .btn-primary,
.btn.active.btn-primary,
.btn.show.btn-primary {
    background-color: var(--sun-orange) !important;
    border-color: var(--sun-orange) !important;
}

.btn-primary:hover {
    background-color: #d94f29 !important;
    border-color: #d94f29 !important;
}

/* Standardize section spacing */
.section-padding {
    padding: 90px 0;
}

/* Remove any inline styles that might override */
section {
    padding: 90px 0 !important;
}

/* Specific section overrides if needed */
#domain-pricing,
#services,
#hosting-pricing,
#pro-plans,
#offered-services,
#blog,
.faq-section,
.clients-section,
.cta-section {
    padding: 90px 0 !important;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .section-padding,
    section,
    #domain-pricing,
    #services,
    #hosting-pricing,
    #pro-plans,
    #offered-services,
    #blog,
    .faq-section,
    .clients-section,
    .cta-section {
        padding: 60px 0 !important;
    }
}
