﻿/* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0px;
            margin-bottom: 40px;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            animation: fadeIn 1s ease-in;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeIn 1.5s ease-in;
        }
		 .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li a {
            color: #ffd700;
            text-decoration: none;
        }
        
        .breadcrumb li::after {
            content: ">";
            margin-left: 10px;
            color: white;
        }
        
        .breadcrumb li:last-child::after {
            content: "";
        }
        
        /* Infrastructure Overview */
        .overview {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #4fc3f7;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #4fc3f7;
            border-radius: 2px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .stat-card {
            background: rgba(79, 195, 247, 0.1);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(79, 195, 247, 0.2);
            transition: transform 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
        }
        
        .stat-card i {
            font-size: 48px;
            color: #4fc3f7;
            margin-bottom: 20px;
        }
        
        .stat-card h3 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #4fc3f7;
        }
        
        .stat-card p {
            color: #e0f7fa;
        }
        
        /* Facilities Section */
        .facilities {
            padding: 80px 0;
            background: #071117;
        }
        
        .facility-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .tab-btn {
            background: transparent;
            border: none;
            color: #e0f7fa;
            padding: 15px 30px;
            margin: 0 10px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .tab-btn:hover {
            color: #4fc3f7;
        }
        
        .tab-btn.active {
            color: #4fc3f7;
            border-bottom: 3px solid #4fc3f7;
        }
        
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease-in;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .facility-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .facility-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .facility-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .facility-image:hover img {
            transform: scale(1.05);
        }
        
        .facility-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #4fc3f7;
        }
        
        .facility-info p {
            margin-bottom: 20px;
        }
        
        .specs {
            margin-top: 30px;
        }
        
        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Technology Section */
        .technology {
            padding: 80px 0;
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .tech-card {
            background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(15, 32, 39, 0.3));
            border-radius: 10px;
            padding: 10px;
            text-align: left;
            border: 1px solid rgba(79, 195, 247, 0.2);
            transition: transform 0.3s;
        }
        
        .tech-card:hover {
            transform: translateY(-10px);
        }
        
        .tech-card i {
            font-size: 48px;
            color: #4fc3f7;
            margin-bottom: 20px;
        }
        
        .tech-card h3 {
            margin-bottom: 15px;
            color: #4fc3f7;
        }
        
        /* Global Presence */
        .global {
            padding: 80px 0;
            background: #071117;
            text-align: center;
        }
        
        .map-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .world-map {
            width: 100%;
            opacity: 0.7;
        }
        
        .location-marker {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #4fc3f7;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            box-shadow: 0 0 20px #4fc3f7;
            animation: pulse 2s infinite;
        }
        
        .location-marker::after {
            content: attr(data-location);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(79, 195, 247, 0.9);
            padding: 5px 15px;
            border-radius: 20px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .location-marker:hover::after {
            opacity: 1;
        }