/* ============================================
   Custom Styles for Hostmkn - Enhanced UI
   ============================================ */

/* Color Variables - Primary Brand Color */
:root {
    --primary-color: #674cc4;
    --primary-light: #5a3fb4;
    --primary-dark: #4a3a94;
    --primary-gradient: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
    --primary-gradient-reverse: linear-gradient(135deg, #5a3fb4 0%, #674cc4 100%);
    --primary-gradient-horizontal: linear-gradient(90deg, #674cc4, #5a3fb4);
    --primary-shadow: rgba(103, 76, 196, 0.3);
    --primary-shadow-hover: rgba(103, 76, 196, 0.4);
}

/* ============================================
   Top Bar Styles - Sticky (Always on Top)
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
    color: #ffffff;
    padding: 0.35rem 0; /* Reduced from 0.5rem */
    font-size: 0.875rem;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1002 !important; /* Higher than main navbar to stay on top */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-height: 25px; /* Reduced from 50px */
    display: flex;
    align-items: center;
}

.top-bar .container,
.top-bar .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 767px) {
    .top-bar .container,
    .top-bar .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.top-bar-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

.top-bar-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.top-bar i.bi {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar .social-icon {
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0.25rem;
    border-radius: 0;
    background: transparent !important;
    border: none !important;
}

.top-bar .social-icon:hover {
    color: rgba(255, 255, 255, 0.8);
    background: transparent !important;
    transform: translateY(-2px);
    box-shadow: none;
    border: none !important;
}

.top-bar .social-icon i,
.top-bar .social-icon svg {
    font-size: 1.1rem;
    width: auto;
    height: auto;
}

/* Desktop view - Remove background and padding */
@media (min-width: 992px) {
    .top-bar .social-icon {
        width: auto !important;
        height: auto !important;
        padding: 0.25rem !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    .top-bar .social-icon:hover {
        background: transparent !important;
        border: none !important;
    }
}

/* Responsive Top Bar - Hide on Mobile */
@media (max-width: 991px) {
    /* Hide top bar completely on mobile and tablet */
    .top-bar {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
}

@media (max-width: 575px) {
    /* Top bar already hidden on mobile via 991px breakpoint */
    .top-bar {
        display: none !important;
    }
}

/* Main Content Padding - Accounts for sticky bars */
.main-content {
    padding-top: 128px; /* Top bar (38px) + Navbar (60px) + spacing (30px) */
}

@media (max-width: 991px) {
    .main-content {
        padding-top: 100px; /* Only navbar on mobile (no top bar) */
    }
}

@media (max-width: 767px) {
    .main-content {
        padding-top: 90px; /* Only navbar on mobile (no top bar) */
    }
}

@media (max-width: 575px) {
    .main-content {
        padding-top: 85px; /* Only navbar on small mobile (no top bar) */
    }
}

/* Logo Fix and Animation - Display in Original Colors */
.navbar-brand {
    display: flex !important;
    align-items: center;
    position: relative;
    z-index: 1000;
    padding: 0.5rem 0;
}

.navbar-brand img,
.logo-img,
.navbar-brand .logo-img,
.offcanvas-header img {
    transition: all 0.3s ease;
    object-fit: contain;
    opacity: 1 !important;
    max-width: 100%;
    height: auto;
    /* Remove any filters to show original colors */
    filter: none !important;
    -webkit-filter: none !important;
    /* Ensure original colors are preserved */
    filter: brightness(1) invert(0) grayscale(0) !important;
    /* Remove any color modifications */
    mix-blend-mode: normal !important;
    /* Ensure proper display */
    display: block !important;
    visibility: visible !important;
    position: relative;
    z-index: 1001;
}

.navbar-brand img:hover,
.logo-img:hover,
.navbar-brand .logo-img:hover {
    transform: scale(1.05);
    filter: none !important;
    -webkit-filter: none !important;
}

/* Override any theme CSS that might affect logo colors */
.navbar-light .navbar-brand img,
.navbar-light .logo-img,
.transparent .navbar-brand img,
.navbar-transparent .navbar-brand img {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

/* Offcanvas logo also in original colors */
.offcanvas-header img,
.text-inverse img,
.offcanvas-header .text-inverse img,
a.text-inverse img {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    /* Override any color inversion */
    color: inherit !important;
    /* Ensure image displays in original colors */
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

/* Logo Loading Fallback */
.navbar-brand img[src=""],
.navbar-brand img:not([src]) {
    display: none;
}

/* Smooth Navbar Transitions */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.transparent,
.navbar.navbar-transparent {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #674cc4, #5a3fb4);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: #674cc4 !important;
}

/* Button Enhancements */
.btn-primary {
    background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(103, 76, 196, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 76, 196, 0.4);
    background: linear-gradient(135deg, #5a3fb4 0%, #674cc4 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    border: 2px solid #674cc4;
    color: #674cc4;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
    color: white;
    border-color: #674cc4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 76, 196, 0.4);
}

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(103, 76, 196, 0.05) 0%, rgba(90, 63, 180, 0.05) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Card Animations */
.card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(103, 76, 196, 0.2);
    border-color: #674cc4;
}

.paymentcard {
    position: relative;
    overflow: hidden;
}

.paymentcard::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(103, 76, 196, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.paymentcard:hover::before {
    opacity: 1;
}

/* Pricing Card Enhancements */
.offerpop {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.paymentcardmain h2 {
    background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Feature List Animations */
.paymasterhover {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.paymasterhover:hover {
    background: rgba(103, 76, 196, 0.1);
    transform: translateX(5px);
    padding-left: 12px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 45px !important;
        max-width: 150px !important;
    }
    
    .hero-section {
        padding: 2rem 0 !important;
    }
    
    .card {
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .offerpop {
        right: -25px;
        padding: 6px 30px;
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
}

/* Footer Enhancements */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #674cc4, #5a3fb4);
}

/* WhatsApp Button Animation */
a[href*="whatsapp"] {
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

a[href*="whatsapp"]:hover {
    transform: scale(1.1);
    animation: none;
}

/* Domain Search Section */
.bg-pattern {
    position: relative;
    overflow: hidden;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(103, 76, 196, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Input Field Enhancements */
.form-control {
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.form-control:focus {
    border-color: #674cc4;
    box-shadow: 0 0 0 0.2rem rgba(103, 76, 196, 0.25);
    outline: none;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }
}

/* Image Hover Effects */
img.avatar {
    transition: all 0.3s ease;
}

img.avatar:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Smooth Transitions for All Interactive Elements */
a, button, .card, .nav-link {
    transition: all 0.3s ease;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #674cc4, #5a3fb4);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a3fb4, #674cc4);
}

/* Ripple Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

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

.animate-slide-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInFromRight 0.8s ease-out;
}

/* Navbar Sticky Effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Ensure navbar is always visible with proper background */
.navbar,
.navbar.navbar-light,
.navbar.transparent,
.navbar.navbar-transparent {
    background-color: #ffffff !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 0.5rem 0;
}

/* Remove transparent effect */
.navbar.transparent,
.navbar.navbar-transparent {
    background-color: #ffffff !important;
    opacity: 1 !important;
}

/* Prevent logo from appearing as background */
body::before,
body::after,
.navbar::before,
.navbar::after,
header::before,
header::after,
.hero-section::before {
    content: none !important;
    background-image: none !important;
}

/* Ensure hero section doesn't have logo as background */
.hero-section {
    position: relative;
    z-index: 1;
}

.hero-section::before {
    display: none !important;
}

/* Mobile Menu Enhancements */
.offcanvas-nav {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.offcanvas-nav .nav-link {
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem !important;
}

.offcanvas-nav .nav-link:hover {
    background: rgba(139, 61, 255, 0.1);
    padding-left: 1.5rem !important;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Modern Hosting Plans Section - Redesigned
   ============================================ */
.hosting-plans-section {
	position: relative;
	overflow: hidden;
	padding: 3.5rem 0;
}

.hosting-plans-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(103, 76, 196, 0.05) 0%, transparent 70%);
	animation: rotate 30s linear infinite;
	z-index: 0;
}

.hosting-plans-section .container {
	position: relative;
	z-index: 1;
}

/* Gradient Text */
.gradient-text {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Utility Classes */
.py-10 {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

.mb-8 {
	margin-bottom: 3rem;
}

/* Hosting Plan Card */
.hosting-plan-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 1rem 1.75rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 2px solid transparent;
}

.hosting-plan-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #674cc4, #5a3fb4);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.hosting-plan-card:hover::before {
	transform: scaleX(1);
}

.hosting-plan-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 60px rgba(103, 76, 196, 0.25);
	border-color: #674cc4;
}

/* Popular Plan Badge */
.plan-popular {
	border: 2px solid #674cc4;
	position: relative;
}

.plan-popular::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 60px 60px 0;
	border-color: transparent #674cc4 transparent transparent;
}

.popular-badge {
	position: absolute;
	top: 30px;
	right: -48px;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	color: #ffffff;
	padding: 0.5rem 2.5rem;
	font-size: 0.55rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	transform: rotate(45deg);
	box-shadow: 0 4px 15px rgba(103, 76, 196, 0.4);
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	animation: pulse-badge 2s ease-in-out infinite;
    text-align: center;
}

.popular-badge i {
	font-size: 0.7rem;
}

@keyframes pulse-badge {
	0%, 100% {
		transform: rotate(45deg) scale(1);
	}
	50% {
		transform: rotate(45deg) scale(1.05);
	}
}

/* Plan Header */
.plan-header {
	text-align: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(103, 76, 196, 0.1);
}

.plan-name {
	font-size: 1.75rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.hosting-plan-card:hover .plan-name {
	transform: scale(1.05);
}

.plan-subtitle {
	color: #666;
	font-size: 0.95rem;
	margin: 0;
	font-weight: 400;
}

/* Plan Price */
.plan-price {
	text-align: center;
	margin-bottom: 2rem;
	padding: 1.25rem 0;
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.05) 0%, rgba(90, 63, 180, 0.05) 100%);
	border-radius: 15px;
	position: relative;
	overflow: hidden;
}

.plan-price::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(103, 76, 196, 0.1) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
}

.price-wrapper {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
	position: relative;
	z-index: 1;
}

.currency {
	font-size: 1.5rem;
	font-weight: 600;
	color: #674cc4;
	align-self: flex-start;
	margin-top: 0.5rem;
}

.amount {
	font-size: 3.5rem;
	font-weight: 800;
	color: #674cc4;
	line-height: 1;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.decimal {
	font-size: 1.5rem;
	font-weight: 600;
	color: #674cc4;
}

.period {
	display: block;
	font-size: 1rem;
	color: #666;
	margin-top: 0.5rem;
	font-weight: 500;
}

/* Plan Features */
.plan-features {
	flex-grow: 1;
	margin-bottom: 1.5rem;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-item::before {
	content: '';
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(103, 76, 196, 0.05), transparent);
	transition: left 0.5s ease;
}

.hosting-plan-card:hover .feature-item::before {
	left: 100%;
}

.feature-item:hover {
	padding-left: 0.5rem;
	background: rgba(103, 76, 196, 0.03);
	border-radius: 8px;
	margin: 0 -0.5rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.feature-icon {
	color: #674cc4;
	font-size: 1.25rem;
	flex-shrink: 0;
	animation: checkPulse 2s ease-in-out infinite;
	animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes checkPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

.feature-item span {
	color: #333;
	font-size: 0.95rem;
	line-height: 1.6;
}

.feature-item strong {
	color: #674cc4;
	font-weight: 600;
}

/* Plan Action Button */
.plan-action {
	margin-top: auto;
	padding-top: 1.25rem;
}

.btn-plan-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	color: #ffffff;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(103, 76, 196, 0.3);
	position: relative;
	overflow: hidden;
	border: none;
}

.btn-plan-primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-plan-primary:hover::before {
	width: 300px;
	height: 300px;
}

.btn-plan-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(103, 76, 196, 0.4);
	color: #ffffff;
}

.btn-plan-primary span {
	position: relative;
	z-index: 1;
}

.btn-plan-primary i {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

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

.plan-popular .btn-plan-primary {
	background: linear-gradient(135deg, #5a3fb4 0%, #674cc4 100%);
	box-shadow: 0 6px 20px rgba(103, 76, 196, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
	.hosting-plans-section {
		padding: 2.5rem 0;
	}
	
	.hosting-plan-card {
		padding: 1.75rem 1.5rem;
		margin-bottom: 1.5rem;
	}
	
	.plan-name {
		font-size: 1.5rem;
	}
	
	.amount {
		font-size: 3rem;
	}
	
	.popular-badge {
		top: 15px;
		right: -25px;
		padding: 0.4rem 2rem;
		font-size: 0.7rem;
	}
}

@media (max-width: 767px) {
	.hosting-plans-section {
		padding: 2rem 0;
	}
	
	.hosting-plan-card {
		padding: 1.5rem 1.25rem;
		border-radius: 15px;
	}
	
	.plan-header {
		margin-bottom: 1.25rem;
		padding-bottom: 0.875rem;
	}
	
	.plan-name {
		font-size: 1.35rem;
	}
	
	.plan-price {
		margin-bottom: 1.75rem;
		padding: 1rem 0;
	}
	
	.amount {
		font-size: 2.75rem;
	}
	
	.currency {
		font-size: 1.25rem;
	}
	
	.feature-item {
		padding: 0.75rem 0;
		font-size: 0.9rem;
	}
	
	.btn-plan-primary {
		padding: 0.875rem 1.5rem;
		font-size: 0.95rem;
	}
	
	.popular-badge {
		top: 20px;
		right: -30px;
		padding: 0.35rem 1.5rem;
		font-size: 0.45rem;
	}
}

@media (max-width: 575px) {
	.hosting-plan-card {
		padding: 1.5rem 1rem;
	}
	
	.amount {
		font-size: 2.5rem;
	}
	
	.plan-name {
		font-size: 1.25rem;
	}
}

/* ============================================
   Modern Domain Search Section - Redesigned
   ============================================ */
.domain-search-section {
	position: relative;
	padding: 3.5rem 0;
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.03) 0%, rgba(90, 63, 180, 0.03) 100%);
}

.domain-search-card {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	border-radius: 25px;
	padding: 3.5rem 2.5rem;
	box-shadow: 0 20px 60px rgba(103, 76, 196, 0.3);
	position: relative;
	overflow: hidden;
}

.domain-search-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: rotate 25s linear infinite;
	z-index: 0;
}

.domain-search-content {
	position: relative;
	z-index: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.domain-search-content .row {
	justify-content: center;
	margin: 0 auto;
}

.domain-search-content .col-lg-12 {
	max-width: 350px;
	margin: 0 auto;
}

.domain-search-content .row[style*="overflow-x"] {
	justify-content: center;
	overflow-x: visible !important;
}

.domain-search-content .row[style*="overflow-x"] .col-4,
.domain-search-content .row[style*="overflow-x"] .col-sm-2 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.domain-search-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff !important;
	margin-bottom: 1rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	background: none !important;
	-webkit-text-fill-color: #ffffff !important;
}

.domain-search-subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	font-weight: 400;
}

.domain-search-form-wrapper {
	margin-top: 2.5rem;
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
}

.domain-search-input-group {
	position: relative;
	display: flex;
	align-items: center;
	background: #ffffff;
	border-radius: 15px;
	padding: 0.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.domain-search-input-group:focus-within {
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.domain-search-icon {
	position: absolute;
	left: 1.5rem;
	color: #674cc4;
	font-size: 1.5rem;
	z-index: 2;
}

.domain-search-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 1.25rem 1.25rem 1.25rem 3.5rem;
	font-size: 1.1rem;
	color: #333;
	background: transparent;
	border-radius: 12px;
}

.domain-search-input::placeholder {
	color: #999;
	font-weight: 400;
}

.domain-search-btn {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 2.5rem;
	background: linear-gradient(135deg, #5a3fb4 0%, #674cc4 100%);
	color: #ffffff;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.domain-search-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.domain-search-btn:hover::before {
	width: 300px;
	height: 300px;
}

.domain-search-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	color: #ffffff;
}

.domain-search-btn span,
.domain-search-btn i {
	position: relative;
	z-index: 1;
}

.domain-search-btn i {
	transition: transform 0.3s ease;
}

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

.popular-domains {
	text-align: center;
}

.popular-domains-label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.domain-extensions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.domain-extension-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 1.5rem;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	cursor: pointer;
	min-width: 120px;
}

.domain-extension-item:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.domain-extension-item img {
	width: 60px;
	height: auto;
	filter: brightness(0) invert(1);
	transition: transform 0.3s ease;
}

.domain-extension-item:hover img {
	transform: scale(1.1);
}

.domain-extension-item span {
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
	.domain-search-card {
		padding: 2.5rem 2rem;
	}
	
	.domain-search-title {
		font-size: 2rem;
		color: #ffffff !important;
		background: none !important;
		-webkit-text-fill-color: #ffffff !important;
	}
	
	.domain-search-input-group {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
	}
	
	.domain-search-icon {
		position: static;
		align-self: flex-start;
	}
	
	.domain-search-input {
		padding: 1rem 1rem 1rem 1rem;
		width: 100%;
	}
	
	.domain-search-btn {
		width: 100%;
		justify-content: center;
		padding: 1rem 2rem;
	}
	
	.domain-extensions {
		gap: 1.5rem;
	}
}

@media (max-width: 767px) {
	.domain-search-section {
		padding: 2.5rem 0;
	}
	
	.domain-search-card {
		padding: 2rem 1.5rem;
		border-radius: 20px;
	}
	
	.domain-search-title {
		font-size: 1.75rem;
		color: #ffffff !important;
		background: none !important;
		-webkit-text-fill-color: #ffffff !important;
	}
	
	.domain-search-subtitle {
		font-size: 1rem;
	}
	
	.domain-extensions {
		gap: 1rem;
	}
	
	.domain-extension-item {
		min-width: 100px;
		padding: 1rem 1.25rem;
	}
	
	.domain-extension-item img {
		width: 50px;
	}
}

@media (max-width: 575px) {
	.domain-search-card {
		padding: 1.75rem 1.25rem;
	}
	
	.domain-search-title {
		font-size: 1.5rem;
		color: #ffffff !important;
		background: none !important;
		-webkit-text-fill-color: #ffffff !important;
	}
	
	.domain-search-input {
		font-size: 1rem;
		padding: 0.875rem;
	}
	
	.domain-search-btn {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}
	
	.domain-extensions {
		gap: 0.75rem;
	}
	
	.domain-extension-item {
		min-width: 90px;
		padding: 0.875rem 1rem;
	}
	
	.domain-extension-item img {
		width: 45px;
	}
	
	.domain-extension-item span {
		font-size: 0.9rem;
	}
}

/* ============================================
   Modern Hosting Services Section - Redesigned
   ============================================ */
.hosting-services-section {
	position: relative;
	padding: 3.5rem 0;
	overflow: hidden;
}

.services-row-wrapper {
	position: relative;
	margin-bottom: 2rem;
}

.services-scroll-container {
	overflow: hidden;
	padding-bottom: 1rem;
	position: relative;
}

.services-scroll-container::-webkit-scrollbar {
	height: 8px;
}

.services-scroll-container::-webkit-scrollbar-track {
	background: rgba(103, 76, 196, 0.1);
	border-radius: 10px;
}

.services-scroll-container::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	border-radius: 10px;
}

.services-scroll-container::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #5a3fb4 0%, #674cc4 100%);
}

.services-row {
	display: flex;
	align-items: stretch;
	gap: 1.5rem;
	min-width: max-content;
	padding: 0.5rem 0;
}

.services-row-1 {
	animation: scroll-right 30s linear infinite;
}

.services-row-2 {
	animation: scroll-left 30s linear infinite;
}

@keyframes scroll-right {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-50% - 0.75rem));
	}
}

@keyframes scroll-left {
	0% {
		transform: translateX(calc(-50% - 0.75rem));
	}
	100% {
		transform: translateX(0);
	}
}

.service-card {
	flex: 0 0 280px;
	min-width: 280px;
	display: flex;
	height: auto;
}

.service-card-inner {
	background: #ffffff;
	border-radius: 20px;
	padding: 2rem 1.75rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	flex-direction: column;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	min-height: 350px;
}

.service-card-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #674cc4, #5a3fb4);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover .service-card-inner::before {
	transform: scaleX(1);
}

.service-card:hover .service-card-inner {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(103, 76, 196, 0.25);
	border-color: #674cc4;
}

.service-icon-wrapper {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.1) 0%, rgba(90, 63, 180, 0.1) 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-icon-wrapper::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(103, 76, 196, 0.2) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
}

.service-card:hover .service-icon-wrapper {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	transform: scale(1.1) rotate(5deg);
}

.service-icon {
	width: 50px;
	height: 50px;
	object-fit: contain;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
	filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(243deg) brightness(95%) contrast(92%);
}

.service-icon-icon {
	font-size: 2.5rem;
	color: #674cc4;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
	display: block;
}

.service-card:hover .service-icon {
	filter: brightness(0) invert(1);
	transform: scale(1.1);
}

.service-card:hover .service-icon-icon {
	color: #ffffff;
	transform: scale(1.1);
}

.service-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.service-card:hover .service-title {
	transform: translateX(5px);
}

.service-description {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
	flex-grow: 1;
}

/* Responsive Design */
@media (min-width: 1200px) {
	.services-row {
		justify-content: center;
	}
	
	.service-card {
		flex: 0 0 300px;
		min-width: 300px;
	}
}

@media (max-width: 991px) {
	.hosting-services-section {
		padding: 2.5rem 0;
	}
	
	.service-card {
		flex: 0 0 260px;
		min-width: 260px;
	}
	
	.service-card-inner {
		padding: 1.75rem 1.5rem;
		min-height: 300px;
	}
	
	.service-icon-wrapper {
		width: 60px;
		height: 60px;
	}
	
	.service-icon {
		width: 45px;
		height: 45px;
	}
	
	.service-icon-icon {
		font-size: 2rem;
	}
	
	.service-title {
		font-size: 1.25rem;
	}
	
	.service-description {
		font-size: 0.9rem;
	}
}

@media (max-width: 767px) {
	.hosting-services-section {
		padding: 2rem 0;
	}
	
	.services-row {
		gap: 1.25rem;
	}
	
	.service-card {
		flex: 0 0 240px;
		min-width: 240px;
	}
	
	.service-card-inner {
		padding: 1.5rem 1.25rem;
		border-radius: 15px;
		min-height: 280px;
	}
	
	.service-icon-wrapper {
		width: 50px;
		height: 50px;
		margin-bottom: 1rem;
	}
	
	.service-icon {
		width: 40px;
		height: 40px;
	}
	
	.service-icon-icon {
		font-size: 1.75rem;
	}
	
	.service-title {
		font-size: 1.15rem;
		margin-bottom: 0.75rem;
	}
	
	.service-description {
		font-size: 0.875rem;
		line-height: 1.6;
	}
}

@media (max-width: 575px) {
	.service-card {
		flex: 0 0 220px;
		min-width: 220px;
	}
	
	.service-card-inner {
		padding: 1.25rem 1rem;
		min-height: 260px;
	}
	
	.service-icon-wrapper {
		width: 45px;
		height: 45px;
		margin-bottom: 0.875rem;
	}
	
	.service-icon {
		width: 35px;
		height: 35px;
	}
	
	.service-icon-icon {
		font-size: 1.5rem;
	}
	
	.service-title {
		font-size: 1.05rem;
		margin-bottom: 0.625rem;
	}
	
	.service-description {
		font-size: 0.85rem;
	}
}

/* ============================================
   Modern Key Features Section - Redesigned
   ============================================ */
.key-features-section {
	position: relative;
	padding: 3.5rem 0 2rem 0;
	overflow: hidden;
}

.key-features-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(103, 76, 196, 0.05) 0%, transparent 70%);
	animation: rotate 35s linear infinite;
	z-index: 0;
}

.key-features-section .container {
	position: relative;
	z-index: 1;
}

.key-feature-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 2px solid transparent;
	cursor: pointer;
}

.key-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #674cc4, #5a3fb4);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	z-index: 2;
}

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

.key-feature-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 70px rgba(103, 76, 196, 0.3);
	border-color: #674cc4;
}

.feature-image-wrapper {
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.05) 0%, rgba(90, 63, 180, 0.05) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.feature-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	z-index: 1;
}

.key-feature-card:hover .feature-image {
	transform: scale(1.1) rotate(2deg);
}

.feature-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(103, 76, 196, 0) 0%, rgba(90, 63, 180, 0) 100%);
	transition: all 0.4s ease;
	z-index: 1;
}

.key-feature-card:hover .feature-overlay {
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.1) 0%, rgba(90, 63, 180, 0.1) 100%);
}

.feature-icon-badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(103, 76, 196, 0.4);
	z-index: 3;
	transition: all 0.3s ease;
	opacity: 0;
	transform: scale(0.8);
}

.key-feature-card:hover .feature-icon-badge {
	opacity: 1;
	transform: scale(1) rotate(5deg);
}

.feature-icon-badge i {
	color: #ffffff;
	font-size: 1.5rem;
}

.feature-content {
	padding: 2rem 1.75rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.feature-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
	line-height: 1.4;
}

.key-feature-card:hover .feature-title {
	transform: translateX(5px);
}

.feature-description {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
	flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1199px) {
	.key-feature-card {
		margin-bottom: 2rem;
	}
}

@media (max-width: 991px) {
	.key-features-section {
		padding: 2.5rem 0;
	}
	
	.feature-image-wrapper {
		height: 220px;
		padding: 1.5rem;
	}
	
	.feature-content {
		padding: 1.75rem 1.5rem;
	}
	
	.feature-title {
		font-size: 1.25rem;
	}
	
	.feature-description {
		font-size: 0.9rem;
	}
}

@media (max-width: 767px) {
	.key-features-section {
		padding: 2rem 0;
	}
	
	.feature-image-wrapper {
		height: 200px;
		padding: 1.25rem;
	}
	
	.feature-content {
		padding: 1.5rem 1.25rem;
	}
	
	.feature-title {
		font-size: 1.15rem;
		margin-bottom: 0.875rem;
	}
	
	.feature-description {
		font-size: 0.875rem;
		line-height: 1.6;
	}
	
	.feature-icon-badge {
		width: 45px;
		height: 45px;
		top: 1.25rem;
		right: 1.25rem;
	}
	
	.feature-icon-badge i {
		font-size: 1.25rem;
	}
}

@media (max-width: 575px) {
	.key-features-section {
		padding: 1.75rem 0;
	}
	
	.feature-image-wrapper {
		height: 180px;
		padding: 1rem;
	}
	
	.feature-content {
		padding: 1.25rem 1rem;
	}
	
	.feature-title {
		font-size: 1.05rem;
		margin-bottom: 0.75rem;
	}
	
	.feature-description {
		font-size: 0.85rem;
	}
	
	.feature-icon-badge {
		width: 40px;
		height: 40px;
		top: 1rem;
		right: 1rem;
	}
	
	.feature-icon-badge i {
		font-size: 1.1rem;
	}
}

/* ============================================
   Modern FAQ Section - Redesigned
   ============================================ */
.faq-section {
	position: relative;
	padding: 2rem 0 3.5rem 0;
	overflow: hidden;
}

.faq-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(103, 76, 196, 0.03) 0%, transparent 70%);
	animation: rotate 40s linear infinite;
	z-index: 0;
}

.faq-section .container {
	position: relative;
	z-index: 1;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.faq-item {
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.faq-item:hover {
	box-shadow: 0 10px 30px rgba(103, 76, 196, 0.15);
	border-color: rgba(103, 76, 196, 0.2);
}

.faq-header {
	cursor: pointer;
	padding: 0;
	background: transparent;
	border: none;
	width: 100%;
	text-align: left;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	margin: 0;
	font-size: 1.15rem;
	font-weight: 600;
	color: #333;
	transition: all 0.3s ease;
	position: relative;
}

.faq-question span {
	flex: 1;
	padding-right: 1rem;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-icon {
	font-size: 1.25rem;
	color: #674cc4;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.faq-header[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
	color: #5a3fb4;
}

.faq-header[aria-expanded="true"] .faq-question {
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.05) 0%, rgba(90, 63, 180, 0.05) 100%);
}

.faq-header[aria-expanded="true"] .faq-question span {
	background: linear-gradient(135deg, #5a3fb4 0%, #674cc4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-answer {
	padding: 0 2rem 1.5rem 2rem;
	color: #666;
	font-size: 0.95rem;
	line-height: 1.8;
	animation: fadeInDown 0.3s ease;
}

.faq-answer p {
	margin: 0;
}

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

/* Responsive Design */
@media (max-width: 991px) {
	.faq-section {
		padding: 2.5rem 0;
	}
	
	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: 1.05rem;
	}
	
	.faq-answer {
		padding: 0 1.5rem 1.25rem 1.5rem;
		font-size: 0.9rem;
	}
}

@media (max-width: 767px) {
	.faq-section {
		padding: 2rem 0;
	}
	
	.faq-accordion {
		gap: 1rem;
	}
	
	.faq-question {
		padding: 1.125rem 1.25rem;
		font-size: 1rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
	
	.faq-question span {
		padding-right: 0;
	}
	
	.faq-icon {
		align-self: flex-end;
	}
	
	.faq-answer {
		padding: 0 1.25rem 1.125rem 1.25rem;
		font-size: 0.875rem;
		line-height: 1.7;
	}
}

@media (max-width: 575px) {
	.faq-section {
		padding: 1.75rem 0;
	}
	
	.faq-question {
		padding: 1rem 1.125rem;
		font-size: 0.95rem;
	}
	
	.faq-answer {
		padding: 0 1.125rem 1rem 1.125rem;
		font-size: 0.85rem;
	}
	
	.faq-icon {
		font-size: 1.1rem;
	}
}

/* ============================================
   Modern Footer - Light Theme
   ============================================ */
.modern-footer {
	background: #ffffff;
	border-top: 1px solid #e9ecef;
	margin-top: 4rem;
}

.footer-main {
	padding: 4rem 0 2.5rem 0;
	background: #ffffff;
}

.footer-column {
	height: 100%;
}

.footer-logo-img {
	max-width: 180px;
	height: auto;
	display: block;
}

.footer-heading {
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1.25rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.footer-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	border-radius: 2px;
}

/* Newsletter Form */
.footer-newsletter {
	margin-bottom: 2rem;
}

.newsletter-form .input-group {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.newsletter-input {
	border: 1px solid #e9ecef;
	border-right: none;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
}

.newsletter-input:focus {
	border-color: #674cc4;
	box-shadow: none;
}

.newsletter-btn {
	border: none;
	padding: 0.75rem 1.25rem;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	color: #ffffff;
	font-weight: 600;
	transition: all 0.3s ease;
}

.newsletter-btn:hover {
	background: linear-gradient(135deg, #5a3fb4 0%, #674cc4 100%);
	transform: translateX(2px);
}

/* Social Links */
.footer-social {
	margin-top: 1.5rem;
}

.social-links {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.1) 0%, rgba(90, 63, 180, 0.1) 100%);
	color: #674cc4;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.social-link:hover {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(103, 76, 196, 0.3);
	border-color: transparent;
}

/* About Us Section */
.footer-about {
	margin-top: 0.5rem;
}

.footer-text-justify {
	font-size: 0.9rem;
	line-height: 1.8;
	color: #666;
	margin-bottom: 1rem;
	text-align: justify;
}

.footer-text-justify:last-child {
	margin-bottom: 0;
}

/* Footer Links */
.footer-links-group {
	margin-bottom: 2rem;
}

.footer-links-group:last-child {
	margin-bottom: 0;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links li:last-child {
	margin-bottom: 0;
}

.footer-links a {
	color: #666;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	padding-left: 0;
}

.footer-links a::before {
	content: '→';
	position: absolute;
	left: -15px;
	opacity: 0;
	transition: all 0.3s ease;
	color: #674cc4;
}

.footer-links a:hover {
	color: #674cc4;
	padding-left: 15px;
}

.footer-links a:hover::before {
	opacity: 1;
	left: 0;
}

.footer-text-small {
	font-size: 0.85rem;
	color: #999;
	font-style: italic;
	margin-top: 0.5rem;
}

/* Managed By Highlight */
.footer-managed-by {
	margin-bottom: 1rem !important;
	padding: 0.75rem 1rem;
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.08) 0%, rgba(90, 63, 180, 0.08) 100%);
	border-left: 4px solid #674cc4;
	border-radius: 8px;
}

.managed-by-text {
	font-size: 0.95rem;
	color: #333;
	font-weight: 500;
	display: block;
	line-height: 1.6;
}

.managed-by-text strong {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
	font-size: 1.05rem;
}

/* Contact Information */
.footer-contact {
	margin-top: 0.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.1) 0%, rgba(90, 63, 180, 0.1) 100%);
	color: #674cc4;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.contact-details {
	flex: 1;
}

.contact-label {
	font-size: 0.75rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.25rem;
	font-weight: 600;
}

.contact-value {
	font-size: 0.95rem;
	color: #333;
	margin: 0;
	text-decoration: none;
	display: block;
	transition: color 0.3s ease;
}

.contact-value:hover {
	color: #674cc4;
}

/* Footer Bottom */
.footer-bottom {
	background: #f8f9fa;
	border-top: 1px solid #e9ecef;
	padding: 1.5rem 0;
}

.footer-copyright {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
	text-align: center;
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-bottom-links a {
	color: #666;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: #674cc4;
}

.footer-bottom-links .separator {
	color: #ddd;
	font-size: 0.9rem;
}

/* Footer Credit - JST CLICK */
.footer-credit {
	font-size: 0.9rem;
	color: #666;
	text-align: center;
}

.footer-credit-link {
	color: #674cc4;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.footer-credit-link:hover {
	color: #5a3fb4;
}

.footer-credit-link strong {
	font-weight: 700;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.footer-credit-link:hover strong {
	background: linear-gradient(135deg, #5a3fb4 0%, #674cc4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-credit-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	transition: width 0.3s ease;
}

.footer-credit-link:hover::after {
	width: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
	.footer-main {
		padding: 3rem 0 2rem 0;
	}
	
	.footer-column {
		margin-bottom: 2.5rem;
	}
	
	.footer-column:last-child {
		margin-bottom: 0;
	}
	
	.footer-logo-img {
		max-width: 150px;
	}
}

@media (max-width: 767px) {
	.modern-footer {
		margin-top: 3rem;
	}
	
	.footer-main {
		padding: 2.5rem 0 1.5rem 0;
	}
	
	.footer-heading {
		font-size: 1rem;
	}
	
	.footer-text-justify {
		font-size: 0.85rem;
		text-align: left;
	}
	
	.footer-links a {
		font-size: 0.85rem;
	}
	
	.contact-value {
		font-size: 0.9rem;
	}
	
	.footer-copyright {
		font-size: 0.85rem;
		text-align: center;
		margin-bottom: 0.75rem;
	}
	
	.footer-bottom-links {
		justify-content: center;
	}
	
	.social-links {
		justify-content: flex-start;
	}
}

@media (max-width: 575px) {
	.footer-main {
		padding: 2rem 0 1.25rem 0;
	}
	
	.footer-logo-img {
		max-width: 120px;
	}
	
	.newsletter-input {
		font-size: 0.85rem;
		padding: 0.65rem 0.85rem;
	}
	
	.newsletter-btn {
		padding: 0.65rem 1rem;
	}
	
	.social-link {
		width: 38px;
		height: 38px;
		font-size: 1rem;
	}
	
	.contact-icon-wrapper {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}
}

/* ============================================
   CRITICAL: Logo Original Colors Override
   ============================================ */
/* Force logo to display in original colors - Highest Priority */
.navbar-brand img[src*="LogoH"],
.navbar-brand img[alt*="Logo"],
.navbar-brand .logo-img,
.offcanvas-header img[src*="LogoH"],
.offcanvas-header img[alt*="Logo"],
a.text-inverse img[src*="LogoH"],
a.text-inverse img[alt*="Logo"] {
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    filter: brightness(1) invert(0) grayscale(0) !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    color: inherit !important;
    /* Ensure logo is in navbar, not background */
    position: relative !important;
    z-index: 1001 !important;
    background: transparent !important;
}

/* Remove any background logo effects */
.navbar-brand::before,
.navbar-brand::after,
header::before,
header::after,
.hero-section::before {
    background-image: none !important;
    content: none !important;
}

/* Ensure navbar brand is properly positioned */
.navbar-brand {
    background: transparent !important;
    position: relative !important;
    z-index: 1001 !important;
}

/* ============================================
   Page Preloader
   ============================================ */
.page-preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.preloader-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.preloader-gif {
	max-width: 150px;
	height: auto;
	display: block;
}

/* Responsive Preloader */
@media (max-width: 767px) {
	.preloader-gif {
		max-width: 120px;
	}
}

@media (max-width: 575px) {
	.preloader-gif {
		max-width: 100px;
	}
}

/* ============================================
   AI Chatbot - Modern Design
   ============================================ */
.ai-chatbot-container {
	position: fixed;
	bottom: 90px;
	right: 20px;
	z-index: 9999;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Chatbot Toggle Button */
.chatbot-toggle-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	border: none;
	color: #ffffff;
	font-size: 1.5rem;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(103, 76, 196, 0.4);
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.chatbot-toggle-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(103, 76, 196, 0.5);
}

.chatbot-pulse {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	animation: pulse 2s infinite;
	opacity: 0.6;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.3;
	}
	100% {
		transform: scale(1);
		opacity: 0.6;
	}
}

/* Chatbot Window */
.chatbot-window {
	position: absolute;
	bottom: 80px;
	right: 0;
	width: 380px;
	height: 600px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	display: none;
	flex-direction: column;
	overflow: hidden;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.3s ease;
}

.chatbot-window.active {
	display: flex;
	transform: translateY(0);
	opacity: 1;
}

/* Chatbot Header */
.chatbot-header {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	padding: 1.25rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #ffffff;
}

.chatbot-header-content {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.chatbot-avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.chatbot-info h4 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.chatbot-status {
	margin: 0;
	font-size: 0.75rem;
	opacity: 0.9;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.chatbot-status::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4ade80;
	animation: blink 2s infinite;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.chatbot-close-btn {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #ffffff;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chatbot-close-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}

/* Chatbot Messages Area */
.chatbot-messages {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	background: #f8f9fa;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.chatbot-message {
	display: flex;
	gap: 0.75rem;
	animation: fadeInUp 0.3s ease;
}

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

.message-avatar {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.1rem;
}

.bot-message .message-avatar {
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.1) 0%, rgba(90, 63, 180, 0.1) 100%);
	color: #674cc4;
}

.user-message {
	flex-direction: row-reverse;
}

.user-message .message-avatar {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	color: #ffffff;
}

.message-content {
	flex: 1;
	max-width: 75%;
}

.bot-message .message-content p {
	background: #ffffff;
	padding: 0.75rem 1rem;
	border-radius: 15px 15px 15px 5px;
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #333;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-message .message-content p {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	color: #ffffff;
	padding: 0.75rem 1rem;
	border-radius: 15px 15px 5px 15px;
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
	box-shadow: 0 2px 8px rgba(103, 76, 196, 0.2);
}

/* Quick Action Buttons */
.quick-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.quick-action-btn {
	background: linear-gradient(135deg, rgba(103, 76, 196, 0.1) 0%, rgba(90, 63, 180, 0.1) 100%);
	border: 2px solid rgba(103, 76, 196, 0.2);
	color: #674cc4;
	padding: 0.6rem 1rem;
	border-radius: 10px;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
}

.quick-action-btn:hover {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	color: #ffffff;
	border-color: transparent;
	transform: translateX(5px);
}

/* Action Buttons in Messages */
.action-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.action-btn {
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	border: none;
	color: #ffffff;
	padding: 0.75rem 1.25rem;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.action-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(103, 76, 196, 0.3);
}

.action-btn.secondary {
	background: transparent;
	border: 2px solid #674cc4;
	color: #674cc4;
}

.action-btn.secondary:hover {
	background: #674cc4;
	color: #ffffff;
}

/* Chatbot Input Area */
.chatbot-input-area {
	padding: 1rem 1.5rem;
	background: #ffffff;
	border-top: 1px solid #e9ecef;
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.chatbot-input {
	flex: 1;
	border: 2px solid #e9ecef;
	border-radius: 25px;
	padding: 0.75rem 1.25rem;
	font-size: 0.9rem;
	outline: none;
	transition: all 0.3s ease;
}

.chatbot-input:focus {
	border-color: #674cc4;
	box-shadow: 0 0 0 3px rgba(103, 76, 196, 0.1);
}

.chatbot-send-btn {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: linear-gradient(135deg, #674cc4 0%, #5a3fb4 100%);
	border: none;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

.chatbot-send-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(103, 76, 196, 0.4);
}

.chatbot-send-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* Typing Indicator */
.typing-indicator {
	display: flex;
	gap: 0.25rem;
	padding: 0.75rem 1rem;
}

.typing-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #674cc4;
	animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
	animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes typing {
	0%, 60%, 100% {
		transform: translateY(0);
		opacity: 0.7;
	}
	30% {
		transform: translateY(-10px);
		opacity: 1;
	}
}

/* Responsive Design */
@media (max-width: 575px) {
	.ai-chatbot-container {
		bottom: 80px;
		right: 15px;
	}
	
	.chatbot-window {
		width: calc(100vw - 30px);
		height: calc(100vh - 120px);
		max-height: 600px;
		right: 0;
		border-radius: 20px 20px 0 0;
	}
	
	.chatbot-toggle-btn {
		width: 55px;
		height: 55px;
		font-size: 1.3rem;
	}
	
	.message-content {
		max-width: 85%;
	}
}

