/* ============================================
   HEEL TECH - Futuristic IT Company Website
   Primary Color: #3333cc
   ============================================ */

:root {
    --primary-color: #3333cc;
    --secondary-color: #000000;
    --text-light: #ffffff;
    --text-dark: #000000;
    --bg-dark: #0a0a0a;
    --bg-light: #ffffff;
    --accent: #3333cc;
    --gradient-1: linear-gradient(135deg, #3333cc 0%, #000000 100%);
    --gradient-2: linear-gradient(135deg, #000000 0%, #3333cc 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(51, 51, 204, 0.3);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Enhanced Dropdown Menu Styles */
/* Dropdown Hover Functionality */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.seo-dropdown-menu {
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(51, 51, 204, 0.3);
    border-radius: 15px;
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 280px;
    max-width: 320px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    animation: dropdownFadeIn 0.2s ease;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    transform-origin: top;
}

/* Custom Scrollbar for Dropdown */
.seo-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.seo-dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.seo-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.seo-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #2525a3;
}

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

.seo-dropdown-menu .dropdown-header {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    background: transparent;
}

.seo-dropdown-menu .dropdown-header i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.seo-dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.seo-dropdown-menu .dropdown-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.seo-dropdown-menu .dropdown-item:hover {
    background: rgba(51, 51, 204, 0.2) !important;
    color: var(--text-light) !important;
    border-left-color: var(--primary-color);
    padding-left: 25px;
}

.seo-dropdown-menu .dropdown-item:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.seo-dropdown-menu .dropdown-divider {
    border-color: rgba(51, 51, 204, 0.3);
    margin: 6px 0;
    border-width: 1px;
}

/* Ensure dropdown stays visible and scrollable */
.seo-dropdown-menu {
    scroll-behavior: smooth;
}

.seo-dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle[aria-expanded="true"]::after {
    display: none !important;
}

/* Dropdown Positioning Fix */
.nav-item.dropdown {
    position: static;
}

@media (min-width: 992px) {
    .nav-item.dropdown {
        position: relative;
    }
    
    .nav-item.dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: auto;
    }
    
    /* Ensure dropdown doesn't go off screen - adjust for last items */
    .nav-item.dropdown:nth-last-child(3) .dropdown-menu,
    .nav-item.dropdown:nth-last-child(2) .dropdown-menu,
    .nav-item.dropdown:last-child .dropdown-menu {
        right: 0;
        left: auto;
    }
}

/* Dropdown Responsive */
@media (max-width: 991px) {
    .seo-dropdown-menu {
        margin-top: 5px;
        border-radius: 10px;
        min-width: 100%;
        max-height: 60vh;
        position: static;
    }
    
    .seo-dropdown-menu .dropdown-item {
        padding: 10px 15px;
    }
    
    .seo-dropdown-menu .dropdown-header {
        padding: 8px 15px 6px;
        font-size: 0.85rem;
    }
    
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ============================================
   HERO SECTION WITH ANIMATIONS
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-1);
    padding: 100px 0;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

/* Animated Clouds with Mouse Interaction */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.cloud1 {
    width: 200px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud1:before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud1:after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 20px;
}

.cloud2 {
    width: 150px;
    height: 45px;
    top: 50%;
    right: 15%;
    animation-delay: 5s;
}

.cloud2:before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.cloud2:after {
    width: 50px;
    height: 50px;
    top: -25px;
    right: 10px;
}

.cloud3 {
    width: 180px;
    height: 55px;
    bottom: 30%;
    left: 30%;
    animation-delay: 10s;
}

.cloud3:before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 20px;
}

.cloud3:after {
    width: 55px;
    height: 55px;
    top: -27px;
    right: 15px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(10px) rotate(2deg); }
    50% { transform: translateY(-40px) translateX(-10px) rotate(-2deg); }
    75% { transform: translateY(-20px) translateX(5px) rotate(1deg); }
}

/* Tech Circuit Lines */
.tech-circuit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
    animation: circuit-pulse 3s infinite;
}

@keyframes circuit-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* Floating Tech Icons */
.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(51, 51, 204, 0.3);
    animation: float-icon 15s infinite ease-in-out;
    pointer-events: none;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) rotate(90deg); opacity: 0.5; }
    50% { transform: translateY(-60px) translateX(-20px) rotate(180deg); opacity: 0.3; }
    75% { transform: translateY(-30px) translateX(10px) rotate(270deg); opacity: 0.5; }
}

/* Tech Particles */
.tech-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particle-float 15s infinite;
    opacity: 0.6;
}

@keyframes particle-float {
    0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(100px) rotate(360deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    color: var(--text-light);
    padding: 40px 0;
    padding-left: 30px;
    padding-right: 50px;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .hero-content {
        padding-left: 50px;
        padding-right: 60px;
    }
}

.hero-content > div {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-content > div a {
    margin: 0;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
    padding-left: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 650px;
    animation: slowBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(51, 51, 204, 0.4));
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.hero-image:hover {
    filter: drop-shadow(0 30px 60px rgba(51, 51, 204, 0.6));
    animation-play-state: paused;
}

/* Slow Vertical Bounce Animation - Simple Up and Down */
@keyframes slowBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #3333cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    text-align: left;
}

/* Hero Section Responsive */
@media (max-width: 992px) {
    .hero-content {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
        padding: 20px;
        padding-left: 20px;
    }
    
    .hero-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-content > div {
        justify-content: center;
    }
    
    .hero-title {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .hero-subtitle,
    .hero-tagline {
        text-align: center;
    }
    
    .hero-image-wrapper {
        margin-top: 30px;
        padding: 10px;
    }
    
    .hero-image {
        max-width: 100%;
        animation-duration: 3s;
        animation-name: slowBounce;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1.2s ease;
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 1.4s ease;
}

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

.btn-hero {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    box-shadow: 0 10px 30px rgba(51, 51, 204, 0.4);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(51, 51, 204, 0.6);
    color: var(--text-light);
}

.btn-hero-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}

.btn-hero-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-5px);
}

/* ============================================
   MOUSE MOVING ANIMATIONS - ENHANCED
   ============================================ */
.mouse-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(51, 51, 204, 0.5);
}

.mouse-follower.hover {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.mouse-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
    animation: trail-fade 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(51, 51, 204, 0.6);
}

.mouse-trail-large {
    width: 15px;
    height: 15px;
    opacity: 0.2;
}

@keyframes trail-fade {
    0% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.3) rotate(360deg); }
}

/* Cloud Mouse Interaction */
.cloud:hover {
    transform: scale(1.2);
    opacity: 0.5;
    filter: drop-shadow(0 0 20px rgba(51, 51, 204, 0.5));
}

/* Tech Particles Enhanced */
.tech-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particle-float 15s infinite;
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(51, 51, 204, 0.8);
}

.tech-particle:hover {
    transform: scale(2);
    opacity: 1;
}

@keyframes particle-float {
    0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    50% { transform: translateY(50vh) translateX(50px) rotate(180deg); }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(100px) rotate(360deg); opacity: 0; }
}

/* Mouse Interactive Glow */
.mouse-glow {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 51, 204, 0.3), transparent);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 51, 204, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(51, 51, 204, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(51, 51, 204, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    flex-shrink: 0;
}

.service-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.5rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    flex-grow: 1;
    min-height: 5rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
    text-align: left;
}

.service-card ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card .btn-hero,
.service-card .btn-hero-outline {
    margin-top: auto;
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px 20px;
}

.service-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 51, 204, 0.3);
    margin-bottom: 30px;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(51, 51, 204, 0.4);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-light);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* ============================================
   CLICK TO SHOW ANIMATIONS
   ============================================ */
.click-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.click-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.counter-section {
    background: var(--gradient-2);
    padding: 60px 0;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000000;
    padding: 60px 0 20px;
    color: var(--text-light);
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(51, 51, 204, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CONTACT PAGE - ENHANCED DESIGN
   ============================================ */

/* Contact Hero Section */
.contact-hero {
    background: var(--gradient-1);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.contact-quick-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.quick-action-btn:hover {
    transform: translateY(-5px);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(51, 51, 204, 0.4);
}

.quick-action-btn.whatsapp-quick:hover {
    background: #25D366;
    border-color: #25D366;
}

.quick-action-btn.call-quick:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.quick-action-btn.email-quick:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.quick-action-btn i {
    font-size: 1.2rem;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 51, 204, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(51, 51, 204, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(51, 51, 204, 0.3);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(51, 51, 204, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.8;
}

.contact-info-card a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 51, 204, 0.3);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 25px 70px rgba(51, 51, 204, 0.4);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Advanced Form Styles */
.advanced-contact-form {
    margin-top: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-control-advanced {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(51, 51, 204, 0.3);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control-advanced:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 0 4px rgba(51, 51, 204, 0.2);
    outline: none;
}

.form-control-advanced::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control-advanced:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.form-control-advanced {
    resize: vertical;
    min-height: 150px;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-submit-advanced {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(51, 51, 204, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit-advanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(51, 51, 204, 0.6);
}

.btn-submit-advanced:active {
    transform: translateY(-2px);
}

.btn-submit-advanced span,
.btn-submit-advanced i {
    position: relative;
    z-index: 1;
}

.btn-submit-advanced i {
    transition: transform 0.3s ease;
}

.btn-submit-advanced:hover i {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 25px 70px rgba(51, 51, 204, 0.4);
    transform: translateY(-5px);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-quick-actions {
        flex-direction: column;
    }
    
    .quick-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .btn-submit-advanced {
        width: 100%;
        justify-content: center;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-wrapper iframe {
        height: 400px;
    }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 51, 204, 0.3);
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(51, 51, 204, 0.3);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-1);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

.team-card h4 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.team-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   HOSTING CITY CARDS
   ============================================ */
.hosting-cities-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
}

.hosting-city-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 51, 204, 0.3);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hosting-city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(51, 51, 204, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.hosting-city-card:hover::before {
    left: 100%;
}

.hosting-city-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(51, 51, 204, 0.4);
}

.hosting-city-card.featured-city {
    border: 2px solid var(--primary-color);
    background: rgba(51, 51, 204, 0.1);
}

.city-card-header {
    background: rgba(51, 51, 204, 0.2);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.city-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.city-card-header h3 {
    color: var(--text-light);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    flex: 1;
}

.featured-badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    top: 15px;
    right: 15px;
}

.city-card-body {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.city-card-body p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.city-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-badge {
    background: rgba(51, 51, 204, 0.2);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(51, 51, 204, 0.3);
    transition: all 0.3s ease;
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.hosting-city-card:hover .feature-badge {
    background: rgba(51, 51, 204, 0.3);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.city-card-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    width: 100%;
    text-align: center;
}

.city-card-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(51, 51, 204, 0.4);
}

.hosting-city-card.featured-city .city-card-btn {
    background: var(--primary-color);
    box-shadow: 0 5px 20px rgba(51, 51, 204, 0.5);
}

.hosting-city-card.featured-city .city-card-btn:hover {
    background: #2525a3;
    box-shadow: 0 10px 30px rgba(51, 51, 204, 0.6);
}

/* Hosting Hero Icon */
.hosting-hero-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: float-icon 3s ease-in-out infinite;
}

.hosting-hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(51, 51, 204, 0.3);
    transition: all 0.3s ease;
}

.hero-feature i {
    color: var(--primary-color);
}

.hero-feature:hover {
    background: rgba(51, 51, 204, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hosting City Cards Responsive */
@media (max-width: 768px) {
    .hosting-city-card {
        margin-bottom: 20px;
    }
    
    .city-card-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .city-card-header h3 {
        font-size: 1.3rem;
    }
    
    .featured-badge {
        position: static;
        margin-top: 10px;
    }
    
    .city-features {
        justify-content: center;
    }
    
    .hosting-hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ============================================
   SEO PAGES STYLES
   ============================================ */
.seo-hero {
    background: var(--gradient-1);
    padding: 100px 0;
    text-align: center;
}

.seo-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px solid rgba(51, 51, 204, 0.3);
}

.seo-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.seo-content h3 {
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.seo-content h4 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.seo-content p,
.seo-content ul li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.seo-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.seo-content ul li {
    margin-bottom: 10px;
}

/* SEO Feature Cards */
.seo-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 51, 204, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.seo-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(51, 51, 204, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.seo-feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.seo-feature-card h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.seo-feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* SEO Benefits Grid */
.seo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.seo-benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(51, 51, 204, 0.3);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seo-benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(51, 51, 204, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.seo-benefit-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.seo-benefit-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.service-features-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.service-features-list li:hover {
    background: rgba(51, 51, 204, 0.2);
    transform: translateX(5px);
    border-left-width: 5px;
}

.service-features-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Founder Highlight */
.founder-section {
    background: rgba(51, 51, 204, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.founder-section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.founder-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--text-light);
    margin: 0 auto;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(51, 51, 204, 0.4);
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 0;
    border: 1px solid rgba(51, 51, 204, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(51, 51, 204, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .product-card,
    .team-card {
        margin-bottom: 20px;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-hero,
    .btn-hero-outline {
        padding: 12px 30px;
        font-size: 1rem;
        display: block;
        margin: 10px auto;
    }
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(51, 51, 204, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ============================================
   SMOOTH SCROLL
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   CLIENT LOGOS SECTION
   ============================================ */
.client-logos-container {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}

.client-logos-scroll {
    display: flex;
    animation: scroll-logos 30s linear infinite;
    gap: 60px;
    align-items: center;
}

.client-logo-item {
    flex-shrink: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.client-logo-item:hover {
    transform: scale(1.1);
    background: rgba(51, 51, 204, 0.2);
}

.client-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.client-logos-container:hover .client-logos-scroll {
    animation-play-state: paused;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary {
    color: var(--primary-color) !important;
}

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

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

