/* SirajPaints Custom Styles */

/* Color Variables */
:root {
    --primary-color: #570347;
    --secondary-color: #8B5A96;
    --accent-color: #4A90E2;
    --gradient-primary: linear-gradient(135deg, #570347 0%, #8B5A96 50%, #4A90E2 100%);
}

/* Gradient Background */
.gradient-bg {
    background: var(--gradient-primary);
}

/* Enhanced Hero Section with Snake Animations */
.hero-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #570347 0%, #8B5A96 50%, #4A90E2 100%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider.active {
    opacity: 1;
}

.hero-slider-1 {
    background: linear-gradient(135deg, #570347 0%, #8B5A96 15%, #4A90E2 30%, #FF6B6B 45%, #4ECDC4 60%, #45B7D1 75%, #96CEB4 90%, #FECA57 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

.hero-slider-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    animation: overlayPulse 4s ease-in-out infinite;
}

.hero-slider-2 {
    background: linear-gradient(135deg, #4ECDC4 0%, #FF6B6B 15%, #4A90E2 30%, #8B5A96 45%, #570347 60%, #45B7D1 75%, #96CEB4 90%, #FECA57 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite reverse;
    position: relative;
}

.hero-slider-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
    animation: overlayPulse 4s ease-in-out infinite reverse;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes overlayPulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.3;
    }
}

/* Snake Animation */
.snake-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.snake {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    animation: snakeMove 8s infinite linear;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.snake:nth-child(1) {
    top: 20%;
    left: -200px;
    animation-delay: 0s;
    background: rgba(255, 255, 255, 0.15);
}

.snake:nth-child(2) {
    top: 40%;
    left: -200px;
    animation-delay: 2s;
    background: rgba(255, 255, 255, 0.1);
    width: 150px;
    height: 150px;
}

.snake:nth-child(3) {
    top: 60%;
    left: -200px;
    animation-delay: 4s;
    background: rgba(255, 255, 255, 0.08);
    width: 100px;
    height: 100px;
}

.snake:nth-child(4) {
    top: 80%;
    left: -200px;
    animation-delay: 6s;
    background: rgba(255, 255, 255, 0.12);
    width: 120px;
    height: 120px;
}

@keyframes snakeMove {
    0% {
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 200px)) rotate(360deg);
        opacity: 0;
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 30%;
    right: 15%;
    width: 60px;
    height: 60px;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    bottom: 40%;
    right: 10%;
    width: 70px;
    height: 70px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

.hero-button-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-button-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-card .group-hover\:scale-110:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .snake {
        width: 100px;
        height: 100px;
    }
    
    .snake:nth-child(2) {
        width: 80px;
        height: 80px;
    }
    
    .snake:nth-child(3) {
        width: 60px;
        height: 60px;
    }
    
    .snake:nth-child(4) {
        width: 70px;
        height: 70px;
    }
    
    .category-card {
        margin-bottom: 1rem;
    }
}

/* DIY-Style Navigation */
.dropdown-menu {
    transform: translateY(-10px);
    transition: all 0.2s ease;
    width: 320px !important;
    max-width: 320px;
    text-align: left;
}

.group:hover .dropdown-menu {
    transform: translateY(0);
}

/* Resized mega menu styling */
.dropdown-menu .p-6 {
    padding: 1rem !important;
    text-align: left;
}

.dropdown-menu {
    text-align: left !important;
}

.dropdown-menu * {
    text-align: left !important;
}

.dropdown-menu h3 {
    text-align: left !important;
}

.dropdown-menu ul {
    text-align: left !important;
}

.dropdown-menu li {
    text-align: left !important;
}

.dropdown-menu a {
    text-align: left !important;
    justify-content: flex-start !important;
}

/* Mega menu image styling */
.dropdown-menu img {
    border-radius: 0.5rem;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.dropdown-menu img:hover {
    transform: scale(1.1);
}

.dropdown-menu .flex.items-center {
    align-items: center;
}

.dropdown-menu .space-x-2 > * + * {
    margin-left: 0.5rem;
}

.dropdown-menu .space-y-4 > div {
    margin-bottom: 0.75rem;
}

.dropdown-menu .space-y-2 > li {
    margin-bottom: 0.25rem;
}

.dropdown-menu h3 {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.dropdown-menu .text-sm {
    font-size: 0.8rem;
}

.dropdown-menu .py-1 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

/* Additional mega menu optimizations */
.dropdown-menu .border-t {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.dropdown-menu .pt-4 {
    padding-top: 0.5rem !important;
}

.dropdown-menu .mb-3 {
    margin-bottom: 0.5rem !important;
}

.dropdown-menu .mb-2 {
    margin-bottom: 0.25rem !important;
}

/* Mobile menu sizing adjustments */
.mobile-submenu .px-6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.mobile-submenu .py-2 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.mobile-submenu .space-y-1 > * + * {
    margin-top: 0.125rem !important;
}

/* Mobile menu left alignment */
.mobile-menu {
    text-align: left !important;
}

.mobile-menu * {
    text-align: left !important;
}

.mobile-menu-section {
    text-align: left !important;
}

.mobile-menu-toggle {
    text-align: left !important;
    justify-content: flex-start !important;
}

.mobile-submenu {
    text-align: left !important;
}

.mobile-submenu a {
    text-align: left !important;
    justify-content: flex-start !important;
}

/* Clean, minimal styling */
.navbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-card .w-20 {
    transition: transform 0.3s ease;
}

.category-card:hover .w-20 {
    transform: scale(1.1);
}

/* Parallax Section */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Vertical Tabs */
.tab-button {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-button:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-button.bg-primary {
    border-color: #570347;
    transform: translateX(5px);
}

.tab-content {
    transition: all 0.3s ease;
}

.tab-content.active {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Title Aqua Color */
.footer-section h4 {
    color: #00FFFF !important;
}

.navbar a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}

.navbar a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 100vh;
}

.mobile-menu-toggle {
    position: relative;
}

.mobile-menu-toggle svg {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-menu-section {
    border-radius: 0.5rem;
    overflow: hidden;
}

.mobile-menu-section .mobile-menu-toggle {
    border-radius: 0.5rem;
    margin-bottom: 0;
}

.mobile-menu-section .mobile-submenu {
    background: rgba(87, 3, 71, 0.02);
    border-radius: 0 0 0.5rem 0.5rem;
    margin-top: 0;
}

/* Enhanced Button Styles */
.action-button {
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-button:hover::before {
    left: 100%;
}

/* Responsive Mega Menu */
@media (max-width: 1024px) {
    .mega-menu {
        max-width: 90vw;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .group:hover .mega-menu {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .mobile-menu-button {
        padding: 0.5rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-button:hover {
        background: rgba(87, 3, 71, 0.1);
    }
}

/* Enhanced Header and Navbar Styles */
.header-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-top a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-top a:hover {
    opacity: 0.8;
}

.main-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(87, 3, 71, 0.05);
}

.nav-link.has-dropdown::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    position: relative;
}

.search-input {
    width: 250px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(87, 3, 71, 0.1);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.9rem;
}

.header-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-header {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-header {
    background: var(--primary-color);
    color: white;
}

.btn-primary-header:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(87, 3, 71, 0.3);
}

.btn-outline-header {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-header:hover {
    background: var(--primary-color);
    color: white;
}

/* Enhanced Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-top: 3px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.mega-menu-section h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.mega-menu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-section li {
    margin-bottom: 0.75rem;
}

.mega-menu-section a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.mega-menu-section a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-menu-section a:hover::before {
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-content {
    padding: 2rem 1rem;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(87, 3, 71, 0.05);
    color: var(--primary-color);
}

.mobile-submenu {
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.mobile-submenu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    background: rgba(87, 3, 71, 0.05);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-top {
        display: none;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .search-input {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 70px;
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .search-box {
        display: none;
    }
    
    .header-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mega-menu {
        display: none;
    }
}

/* Service Card Hover Effects */
.service-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(87, 3, 71, 0.2);
}

/* Button Animations */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(87, 3, 71, 0.3);
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(87, 3, 71, 0.1);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
    }
    
    .mega-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid #e5e7eb;
    }
    
    .service-card:hover {
        transform: none;
    }
}

/* Custom Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Product Page Styles */
.product-description-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.product-info {
    padding-left: 2rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}


.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

/* Enhanced Footer Styles */
.footer-section {
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.credit-section {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.credit-section a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.credit-section a:hover {
    color: var(--secondary-color);
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .gradient-bg {
        background: var(--primary-color) !important;
        color: white !important;
    }
}
