:root {
    --primary: #00D4FF;
    --primary-dark: #0A1128;
    --secondary: #FF6B6B;
    --dark: #1a1a2e;
    --light: #f8f9fa;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
}

/* Navigation */
.navbar {
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ff5252 !important;
}

.nav-link {
    color: #fff !important;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background iframe {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,17,40,0.9) 0%, rgba(0,212,255,0.3) 100%) !important;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.glass-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgb(255 240 240);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

/* Connectivity */
.connectivity-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    /* background: #f8f9fa; */
    border-radius: 10px;
    margin-bottom: 1rem;
}

.connectivity-item i {
    font-size: 2.5rem;
    color: #dc3545;
}

/* Tower Cards */
.tower-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.tower-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tower-features {
    list-style: none;
    padding: 0;
}

.tower-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tower-capacity {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0,212,255,0.1);
    border-radius: 10px;
    text-align: center;
}

/* Amenity Cards */
.amenity-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.talent-card{
     background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}
.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.amenity-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.amenity-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-item, .gallery-item-large {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img, .gallery-item-large img {
    transition: transform 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img, .gallery-item-large:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay, .gallery-item-large:hover .gallery-overlay {
    transform: translateY(0);
}

/* Advantages */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
}
.table-bg {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.advantage-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: #fff;
    min-height:280px;
}

.advantage-icon {
    font-size: 3rem;
    color: #dc3545 !important;
    margin-bottom: 1rem;
}

.badge {
    font-weight: 700;
    font-size: 14px;
    background-color: #ff6b6b1a !important;
    color: #ff5252;
}

.light-red {
    width: 350px;
    padding: 5px 10px;
    background: #ff6b6b1a;
    align-items: baseline;
}
.light-yellow {
    width: 350px;
    padding: 5px 10px;
    background: #fff5d9;;
    align-items: baseline;
}
.light-green {
    width: 350px;
    padding: 5px 10px;
    background: #4aa53a1a;
    align-items: baseline;
}
.hero_h4{
    padding: 5px 10px;
    background: #ffd70033;
    color: #ffd700;
    border-radius: 30px;
    display: inline-block ;
    font-size: 16px;
}
/* Comparison Table */
.comparison-table {
    background: #0b0a0a;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table>:not(caption)>*>* {
    padding: 1rem .5rem !important;
}
/* Contact */
.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: #dc3545;
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
}

.form-control, .form-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(0,212,255,0.25);
}

.form-label {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
}

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

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

.footer-links a, .footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.gallery-item-large iframe{
    height: 506px;
    width:100%;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.social-link:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-3px);
}

.table{
    backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2); 
     border-radius: 15px;
     padding:2rem;
    text-align: center;
     color:#fff;
     --bs-table-bg: rgba(255, 255, 255, 0.1) !important;
}
/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #dc3545 !important;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .video-background iframe {
        height: 56.25vw;
        min-height: 100vh;
    }
    .gallery-item-large video{
    height:auto;
    width:100%;
}
  .hero-section {
    padding:100px 0 !important;
}
.table>:not(caption)>*>* {
    padding: .5rem .5rem !important;
}
.navbar-brand {
    font-size: 1.2rem;
}
 
}
@media (max-width: 991px){
   .hero-section {
    padding:0 20px;
}
}