* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff88;
    --secondary: #7b2ff7;
    --accent: #ff006e;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(123, 47, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.9; 
        transform: scale(1.05);
    }
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #16213e 100%);
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    animation: float 20s infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 50px;
    background: rgb(10 10 15 / 4%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.indicator:hover {
    transform: scale(1.3);
    background: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.indicator.active {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    width: 30px;
    border-radius: 5px;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border-radius: 12px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--primary);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(100%) scale(0.95);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    box-sizing: border-box;
    overflow: hidden;
    filter: blur(5px);
}

.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
    z-index: 1;
    filter: blur(0);
    animation: slideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

.slide.prev {
    transform: translateX(-100%) scale(0.95);
    filter: blur(5px);
}

/* Hero Slide */
.hero-slide {
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(123, 47, 247, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    max-width: calc(100% - 40px);
    max-height: calc(100vh - 140px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: visible;
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 25px;
        padding: 0 15px;
    }
}

.hero-text {
    z-index: 10;
    min-height: 0;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.hero-visual {
    position: relative;
    height: 100%;
    max-height: 400px;
    min-height: 250px;
    flex-shrink: 1;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    animation: floatVisual 6s ease-in-out infinite;
}

@keyframes floatVisual {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-card {
    position: absolute;
    width: 160px;
    height: 200px;
    max-width: calc(50% - 20px);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    animation: floatCard 6s ease-in-out infinite;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    pointer-events: auto;
    user-select: none;
    will-change: transform;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.04) !important;
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
    z-index: 100;
    background: rgba(0, 255, 136, 0.1);
    animation-play-state: paused;
}

.floating-card:active {
    transform: translateY(-8px) scale(1.02) !important;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-card:hover .card-content {
    transform: translateY(-2px);
}

.card-icon-small {
    font-size: 32px;
    color: #00ff8885;
    margin-bottom: 12px;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-card:hover .card-icon-small {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.1);
}

.card-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px var(--primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-card:hover .card-number {
    text-shadow: 0 0 25px var(--primary);
    transform: scale(1.03);
}

.card-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-card:hover .card-label {
    color: var(--primary);
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
}

.card-2 {
    top: 50%;
    left: 30%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.1), rgba(123, 47, 247, 0.05));
}

.card-3 {
    bottom: 0;
    right: 0;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(255, 0, 110, 0.05));
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
    opacity: 0.6;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glass Buttons */
.glass-btn,
a.glass-btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    border: 1px solid var(--glass-border);
    text-decoration: none;
    display: inline-block;
    color: inherit;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.glass-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.glass-btn::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;
}

.glass-btn:hover::before {
    left: 100%;
}

.glass-btn.primary {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.glass-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.glass-btn.secondary {
    background: var(--glass-bg);
}

.glass-btn.secondary:hover {
    background: rgba(123, 47, 247, 0.2);
    border-color: var(--secondary);
}

.glass-btn.large {
    padding: 16px 40px;
    font-size: 18px;
}

/* About Slide */
.about-slide {
    background: radial-gradient(circle at 50% 50%, rgba(123, 47, 247, 0.1) 0%, transparent 70%);
}

.about-content {
    max-width: 1400px;
    width: 100%;
    max-width: calc(100% - 40px);
    max-height: calc(100vh - 140px);
    padding: 0 20px;
    box-sizing: border-box;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: left;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.locations-content .section-header {
    text-align: left;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 15px;
    max-width: 500px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    flex-shrink: 1;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 0;
    box-sizing: border-box;
}

/* Contact form card - no transitions at all */
.contact-form.glass-card {
    transition: none !important;
    transform: none !important;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.glass-card:not(:hover)::before {
    opacity: 0;
}

/* Override for contact form - no hover effects at all */
.contact-form.glass-card:hover {
    transform: none !important;
    translate: none !important;
    scale: none !important;
    border-color: var(--glass-border) !important;
    box-shadow: none !important;
    background: var(--glass-bg) !important;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    color: #00ff8873;
}

.card-icon i {
    display: block;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.glass-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.glass-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

/* Locations Slide */
.locations-slide {
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
}

.locations-content {
    max-width: 1400px;
    width: 100%;
    max-width: calc(100% - 40px);
    max-height: calc(100vh - 140px);
    padding: 0 20px;
    box-sizing: border-box;
    overflow: visible;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 140px);
    height: auto;
    min-height: 400px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    flex-shrink: 1;
    box-sizing: border-box;
}

.world-map-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 30%;
}

.world-map {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    min-height: 350px;
}

/* Pin Container */
.pin-container {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.pin-container * {
    pointer-events: auto;
}

/* Pin Badge */
.pin-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 136, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 8px;
    padding: 6px 10px;
    margin-bottom: 8px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.pin-container:hover .pin-badge {
    transform: translateY(-2px);
}

.badge-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    flex-shrink: 0;
}

.badge-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.pin-container.pakistan-pin .pin-badge {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
}

/* Map Pin */
.map-pin {
    width: 18px;
    height: 18px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: rgba(0, 255, 136, 0.8);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4), 0 0 20px rgba(0, 255, 136, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.map-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background: var(--bg-dark);
    border-radius: 50%;
    z-index: 1;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.3);
    opacity: 0.25;
    animation: pinPulse 2s ease-in-out infinite;
}

.map-pin.pakistan {
    background: rgba(0, 255, 136, 0.8);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4), 0 0 20px rgba(0, 255, 136, 0.2);
    width: 18px;
    height: 18px;
}

.map-pin.pakistan::after {
    width: 28px;
    height: 28px;
    background: rgba(0, 255, 136, 0.3);
    opacity: 0.25;
}

.pin-container:hover .map-pin {
    transform: rotate(-45deg) scale(1.3);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 255, 136, 0.3);
}

.pin-container:hover .map-pin.pakistan {
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 255, 136, 0.3);
}

@keyframes pinPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Channels Slide */
.channels-slide {
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(123, 47, 247, 0.1) 0%, transparent 50%);
}

.channels-content {
    max-width: 1400px;
    width: 100%;
    max-width: calc(100% - 40px);
    max-height: calc(100vh - 140px);
    padding: 0 20px;
    box-sizing: border-box;
    overflow: visible;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    justify-content: center;
}

.channels-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.channels-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.channel-card {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    cursor: pointer;
}

.channel-card.glass-card {
    padding: 20px;
}

.channel-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
}

.channel-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: inline-block;
    color: var(--primary);
    transition: all 0.3s ease;
}

.channel-card:hover .channel-icon {
    transform: scale(1.2);
    color: var(--primary);
}

.channel-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.channel-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Contact Slide */
.contact-slide {
    background: radial-gradient(circle at 50% 50%, rgba(123, 47, 247, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
}

.contact-content {
    max-width: 1400px;
    width: 100%;
    max-width: calc(100% - 40px);
    max-height: calc(100vh - 140px);
    padding: 0 20px;
    box-sizing: border-box;
    overflow: visible;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary);
    transform: translateX(3px);
}

.contact-icon {
    font-size: 20px;
    color: var(--primary);
    min-width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-form {
    padding: 30px;
    position: relative;
    z-index: 10;
}

/* Completely disable all hover effects on contact form */
.contact-form.glass-card {
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
}

.contact-form.glass-card:hover {
    transform: none !important;
    translate: none !important;
    scale: none !important;
    border-color: var(--glass-border) !important;
    box-shadow: none !important;
    background: var(--glass-bg) !important;
}

.contact-form.glass-card:not(:hover) {
    transform: none !important;
    transition: none !important;
}

.contact-form.glass-card:hover::before {
    opacity: 0 !important;
    display: none !important;
}

.contact-form.glass-card::before {
    display: none !important;
}

.contact-form h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: text;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .glass-btn {
    width: 100%;
    margin-top: 5px;
    padding: 12px 24px;
    font-size: 15px;
}

.pakistan-content > * {
    width: 100%;
}

.pakistan-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.pakistan-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid #00ff8829;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    flex-shrink: 0;
    align-self: flex-start;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}

.live-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: lighter;
    letter-spacing: 1px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.pakistan-hero {
    margin-bottom: 0;
    flex-shrink: 0;
}

.flag-container {
    margin-bottom: 30px;
    display: inline-block;
    animation: floatFlag 4s ease-in-out infinite;
}

@keyframes floatFlag {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.flag {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: block;
}

.pakistan-title,
.pakistan-left .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(134deg, var(--primary), #5276d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-align: left;
}

.pakistan-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 0;
    text-align: left;
}

.pakistan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 0;
    flex-shrink: 1;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
    color: #00ff8873;
}

.feature-icon i {
    display: block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}


.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}



/* Responsive */
@media (max-width: 1024px) {
    .slide {
        padding: 90px 20px 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        max-height: calc(100vh - 120px);
        max-width: calc(100% - 40px);
    }
    
    .hero-title {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .pakistan-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .map-container {
        max-height: calc(100vh - 320px);
        min-height: 300px;
        margin-top: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .about-content,
    .pakistan-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-height: calc(100vh - 120px);
        max-width: calc(100% - 40px);
    }
    
    .locations-content {
        grid-template-columns: 1fr 1.8fr;
        gap: 30px;
        max-height: calc(100vh - 120px);
        max-width: calc(100% - 40px);
    }
    
    .map-container {
        max-height: calc(100vh - 140px);
        min-height: 350px;
    }
    
    .pakistan-title {
        font-size: 44px;
    }
    
    .pakistan-subtitle {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    /* Mobile: Change to vertical scroll */
    .slider-container {
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .slide {
        position: relative;
        min-height: 100vh;
        height: auto;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        padding: 90px 15px 30px;
        display: block;
    }
    
    .slide.active {
        transform: none !important;
        animation: none;
    }
    
    .slide.prev {
        transform: none !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-height: none;
        max-width: calc(100% - 30px);
        padding: 0 15px;
        text-align: center;
    }
    
    .hero-text {
        width: 100%;
        text-align: center;
    }
    
    .hero-visual {
        position: relative;
        height: 300px;
        max-height: 300px;
        min-height: 250px;
        width: 100%;
        margin: 0 auto;
    }
    
    .floating-card {
        width: 140px;
        height: 180px;
        max-width: none;
    }
    
    .card-1 {
        top: 10%;
        left: 5%;
    }
    
    .card-2 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .card-3 {
        bottom: 10%;
        right: 5%;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .pakistan-title {
        font-size: 40px;
    }
    
    .pakistan-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .nav-content {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .map-container {
        max-height: 400px;
        min-height: 300px;
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .world-map-bg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .about-content,
    .channels-content,
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-height: none;
        max-width: calc(100% - 30px);
        padding: 0 15px;
        height: auto;
    }
    
    .channels-content {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .channels-right {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
    }
    
    .contact-details {
        margin-top: 20px;
    }
    
    .pakistan-left,
    .pakistan-right {
        width: 100%;
    }
    
    .pakistan-left {
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .pakistan-hero {
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .pakistan-left .glass-btn.primary.large {
        align-self: flex-start !important;
        width: auto;
        min-width: 200px;
    }
    
    .locations-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-height: none;
        max-width: calc(100% - 30px);
        padding: 0 15px;
        height: auto;
    }
    
    .locations-content .section-header {
        text-align: left;
        margin-bottom: 20px;
    }
    
    .locations-content .section-header {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .map-container {
        margin-top: 0;
    }
    
    .section-header {
        margin-bottom: 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .pakistan-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .glass-card {
        padding: 22px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .card-icon,
    .feature-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .glass-card h3,
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .pin-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .badge-flag {
        width: 18px;
        height: 13px;
    }
    
    .badge-name {
        font-size: 10px;
    }
    
    .map-pin {
        width: 14px;
        height: 14px;
    }
    
    .map-pin.pakistan {
        width: 18px;
        height: 18px;
    }
    
    .hero-visual {
        max-height: 250px;
        min-height: 180px;
        width: 100%;
    }
    
    .flag {
        width: 140px;
        height: 84px;
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 85px 10px 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 15px;
        max-height: none;
        max-width: calc(100% - 20px);
        padding: 0 10px;
        text-align: center;
    }
    
    .hero-visual {
        height: 250px;
        max-height: 250px;
        min-height: 200px;
    }
    
    .floating-card {
        width: 120px;
        height: 150px;
    }
    
    .card-icon-small {
        font-size: 24px;
    }
    
    .card-number {
        font-size: 28px;
    }
    
    .card-label {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pakistan-title {
        font-size: 32px;
    }
    
    .pakistan-subtitle {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .map-container {
        max-height: 350px;
        min-height: 250px;
        margin-top: 15px;
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .about-content,
    .channels-content,
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 15px;
        max-height: none;
        max-width: calc(100% - 20px);
        padding: 0 10px;
        height: auto;
    }
    
    .channels-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .channels-right {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
    }
    
    .contact-details {
        margin-top: 15px;
    }
    
    .contact-item {
        padding: 12px;
        gap: 15px;
    }
    
    .contact-icon {
        font-size: 20px;
    }
    
    .contact-info h4 {
        font-size: 16px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 20px;
        margin-top: 15px;
    }
    
    .contact-form h3 {
        font-size: 20px;
    }
    
    .locations-content {
        grid-template-columns: 1fr !important;
        gap: 15px;
        max-height: none;
        max-width: calc(100% - 20px);
        padding: 0 10px;
        height: auto;
    }
    
    .locations-content .section-header {
        text-align: left;
    }
    
    .locations-content .section-header {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .map-container {
        margin-top: 0;
    }
    
    .section-header {
        margin-bottom: 12px;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .pakistan-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .glass-card {
        padding: 18px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .card-icon,
    .feature-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .glass-card h3,
    .feature-card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .glass-card p,
    .feature-card p {
        font-size: 14px;
    }
    
    .pin-badge {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .hero-visual {
        max-height: 200px;
        min-height: 150px;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .glass-btn {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .flag {
        width: 120px;
        height: 72px;
    }
    
    .launch-badge {
        font-size: 14px;
        padding: 8px 20px;
        margin-bottom: 12px;
    }
}

