:root {
    --primary-color: #003366;
    --secondary-color: #0279c9;
    --accent-color: #1f2675;
    --dark-color: #1A1A1A;
    --light-color: #F5F7FA;
    --text-color: #333333;
    --text-light: #777777;
    --white: #FFFFFF;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

/* Social Sticky Icons */
.social-sticky {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateX(-5px);
}

/* ===== Header Redesign ===== */
:root {
    --primary: #003366;
    --secondary: #FF6B00;
    --accent: #00A0E9;
    --dark: #1A1A1A;
    --light: #F5F7FA;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #777777;
    --header-height: 80px;
    --topbar-height: 40px;
}

/* Social Sticky Icons */
.social-sticky {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateX(-5px) scale(1.1);
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    height: var(--topbar-height);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.contact-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-info i {
    color: var(--accent);
}

.language-selector select {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.language-selector select:focus {
    outline: none;
}

/* Main Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.main-header.sticky {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo-container .logo {
    height: 40px;
    transition: all 0.3s ease;
}

.main-header.sticky .logo {
    height: 35px;
}

/* Main Navigation */
.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.main-nav li {
    position: relative;
}

.main-nav > ul > li > a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.main-nav > ul > li > a:hover {
    color: var(--secondary);
}

.main-nav > ul > li > a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.login-btn a {
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.login-btn a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 243, 242, 0.3);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 800px;
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 100;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid var(--secondary);
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-column h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.menu-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.menu-column ul {
    list-style: none;
    padding: 0;
}

.menu-column li {
    margin-bottom: 12px;
}

.menu-column a {
    color: var(--text);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
}

.menu-column a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-column a:hover {
    color: var(--secondary);
    padding-left: 15px;
}

.menu-column a:hover::before {
    opacity: 1;
    left: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--light);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    padding: 20px;
    text-align: right;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--secondary);
}

.mobile-menu ul {
    list-style: none;
    padding: 0 20px 20px;
}

.mobile-menu li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 0;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

/* Mobile Submenu */
.mobile-submenu {
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu a {
    font-size: 0.9rem;
    padding: 8px 0;
    color: var(--text-light);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(223, 219, 219, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1200px) {
    .mega-menu {
        width: 700px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mega-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 8px 0;
    }
    
    .contact-info span {
        margin-right: 10px;
    }
    
    .social-sticky {
        display: none;
    }
    
    .main-header .container {
        height: 70px;
    }
    
    .logo-container .logo {
        height: 35px;
    }
}
/* Tech Vertical Slider */
.tech-vertical-slider {
    position: relative;
    height: 100vh;
    max-height: 900px;
    overflow: hidden;
    background-color: #0a0e17;
}

.slider-container {
    position: relative;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slider-item {
    position: relative;
    height: 100vh;
    max-height: 900px;
    width: 100%;
    display: flex;
    align-items: center;
}

.media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.slider-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 8%;
    max-width: 800px;
}

.content-wrapper {
    position: relative;
}

.tech-tagline {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-family: 'Courier New', monospace;
}

.tech-prefix {
    color: #00f0ff;
    font-size: 1.2rem;
    margin-right: 10px;
    font-weight: 700;
}

.tagline-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-right: 15px;
}

.tagline-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.slide-title .title-line {
    display: inline-block;
    position: relative;
}

.slide-title .title-line::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00f0ff 0%, #5773ff 100%);
}

.slide-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
}

.slide-actions {
    display: flex;
    gap: 15px;
}

.btn-tech-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #0066cc 0%, #00aaff 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.btn-tech-primary span {
    position: relative;
    z-index: 2;
}

.btn-tech-primary .btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-tech-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00aaff 0%, #0066cc 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-tech-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 170, 255, 0.4);
}

.btn-tech-primary:hover::before {
    opacity: 1;
}

.btn-tech-primary:hover .btn-icon {
    transform: translateX(3px);
}

.btn-tech-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-tech-outline span {
    position: relative;
    z-index: 2;
}

.btn-tech-outline .btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-tech-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-tech-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-tech-outline:hover::before {
    transform: translateX(0);
}

.btn-tech-outline:hover .btn-icon {
    transform: translateX(3px);
}

/* Slider Dots Navigation */
.slider-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.slider-dot.active {
    background: rgba(0, 170, 255, 0.2);
    border: 1px solid rgba(0, 170, 255, 0.5);
}

.slider-dot .dot-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, #00f0ff 0%, #5773ff 100%);
    transition: height 0.3s ease;
}

.slider-dot.active .dot-progress {
    height: 3px;
}

.slider-dot .dot-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 2;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slider-content {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .tech-vertical-slider {
        height: auto;
        min-height: 100vh;
    }
    
    .slider-item {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .slider-dots {
        right: 15px;
    }
    
    .slider-dot {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 1.8rem;
    }
    
    .tech-tagline {
        margin-bottom: 15px;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .slider-dots {
        flex-direction: row;
        bottom: 30px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
}
/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Digital Data Center About Section */
.dc-about-section {
    position: relative;
    background-color: #0a0e17;
    color: #fff;
    overflow: hidden;
    padding: 100px 0;
}

.digital-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(87, 115, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(87, 115, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.dc-section-title {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
}

.dc-title-transparent {
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 0;
}

.dc-title-solid {
    color: #fff;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.dc-title-solid::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00f0ff 0%, #5773ff 100%);
    z-index: -1;
}

.dc-subtitle-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.dc-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    background: #0a0e17;
}

.dc-subtitle-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(87, 115, 255, 0.3);
    z-index: 1;
}

.dc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.dc-mission-card {
    margin-bottom: 60px;
}

.dc-section-label {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.dc-label-number {
    font-size: 1rem;
    font-weight: 700;
    color: #00f0ff;
    margin-right: 10px;
    font-family: 'Courier New', monospace;
}

.dc-label-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 15px;
}

.dc-label-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.dc-mission-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.dc-mission-card h3 .text-gradient {
    background: linear-gradient(90deg, #00f0ff 0%, #5773ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dc-mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.dc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dc-stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(87, 115, 255, 0.1);
    padding: 20px;
    border-radius: 4px;
}

.dc-stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Rajdhani', sans-serif;
}

.dc-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dc-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.dc-feature-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #00f0ff;
    transition: all 0.3s ease;
}

.dc-feature-card:hover {
    background: rgba(87, 115, 255, 0.1);
    transform: translateY(-5px);
}

.dc-feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.dc-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(87, 115, 255, 0.1);
    transform: rotate(45deg);
    border-radius: 8px;
}

.dc-feature-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #00f0ff;
}

.dc-feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.dc-feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.dc-feature-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dc-feature-tech span {
    font-size: 0.8rem;
    padding: 4px 12px;
    background: rgba(87, 115, 255, 0.2);
    border-radius: 20px;
    color: #5773ff;
}

/* Premium About Section Styles */
.premium-about-section {
    position: relative;
    background-color: #0a0e17;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(87, 115, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(87, 115, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f0ff);
    margin-right: 15px;
}

.deco-dot {
    width: 8px;
    height: 8px;
    background: #00f0ff;
    border-radius: 50%;
}

.section-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
}

.title-gradient {
    background: linear-gradient(90deg, #00f0ff, #5773ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.title-outline {
    -webkit-text-stroke: 1px #00f0ff;
    color: transparent;
    display: block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Text Content Styles */
.mission-statement {
    margin-bottom: 60px;
}

.mission-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.mission-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00f0ff;
    margin-right: 20px;
    font-family: 'Courier New', monospace;
}

.mission-statement h3 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(87, 115, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(87, 115, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 5px;
    color: #fff;
}

.stat-value span:last-child {
    font-size: 1.5rem;
    color: #00f0ff;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-underline {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00f0ff, #5773ff);
    margin-top: 15px;
    transition: width 0.3s ease;
}

.stat-card:hover .stat-underline {
    width: 60px;
}

/* Features Grid Styles */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #00f0ff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    background: rgba(87, 115, 255, 0.1);
}

.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(87, 115, 255, 0.1);
    transform: rotate(45deg);
    border-radius: 8px;
}

.feature-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #00f0ff;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.tech-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-tags span {
    font-size: 0.8rem;
    padding: 5px 12px;
    background: rgba(87, 115, 255, 0.2);
    border-radius: 20px;
    color: #5773ff;
}

/* Visual Content Styles */
.image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 600px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10,14,23,0.8) 0%, rgba(87,115,255,0.1) 100%);
}

/* Tech Badges */
.tech-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.uptime-badge {
    top: 30px;
    left: 30px;
    border-color: rgba(0, 240, 255, 0.3);
}

.tier-badge {
    bottom: 30px;
    right: 30px;
    border-color: rgba(87, 115, 255, 0.3);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-content i {
    font-size: 24px;
    color: #00f0ff;
}

.uptime-badge .badge-content i {
    color: #00f0ff;
}

.tier-badge .badge-content i {
    color: #5773ff;
}

.badge-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Circular Tech Text */
.circular-tech {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .image-container {
        height: 400px;
        margin-top: 60px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .tech-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .mission-statement h3 {
        font-size: 1.8rem;
    }
}
/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Locations Section */
.locations-map {
    position: relative;
    margin-bottom: 50px;
}

.locations-map img {
    width: 100%;
    height: auto;
    display: block;
}

.location-tooltip {
    position: absolute;
    background: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    font-size: 0.9rem;
    display: none;
    z-index: 10;
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.location-item {
    text-align: center;
}

.location-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
}

.news-date span:first-child {
    font-size: 1.2rem;
}

.news-date span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.news-content h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-content h3 a:hover {
    color: var(--secondary-color);
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}


/* ===== Mega Footer Styles ===== */
.mega-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.mega-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00a0e9, #ff6b00);
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    color: #ffffff;
    font-weight: 600;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #00a0e9;
}

.footer-column p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #00a0e9;
    transform: translateY(-3px);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #00a0e9;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: -5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info li i {
    margin-right: 12px;
    color: #00a0e9;
    font-size: 1rem;
    margin-top: 3px;
}

.footer-middle {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00a0e9;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.copyright p {
    color: #b8b8b8;
    font-size: 0.85rem;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #00a0e9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #ff6b00;
    transform: translateY(-5px);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #1a1a2e;
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: bottom 0.5s ease;
    border-top: 3px solid #00a0e9;
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: #ffffff;
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.accept-cookies {
    background: #00a0e9;
    color: #ffffff;
}

.accept-cookies:hover {
    background: #0088c7;
    transform: translateY(-2px);
}

.reject-cookies {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff !important;
}

.reject-cookies:hover {
    background: rgba(255, 255, 255, 0.1);
}

.learn-more {
    color: #00a0e9;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-column h4 {
        margin-bottom: 15px;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}
/* Vertical Slider Styles */
.vertical-hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background-color: #000;
}

.vertical-hero-slider .slider-container {
    position: relative;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.vertical-hero-slider .slider-item {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.vertical-hero-slider .slider-image,
.vertical-hero-slider .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.vertical-hero-slider .slider-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vertical-hero-slider .image-overlay,
.vertical-hero-slider .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.vertical-hero-slider .slider-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 5%;
    max-width: 800px;
}

.vertical-hero-slider .slider-tagline {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vertical-hero-slider .slider-tagline span {
    margin-right: 15px;
}

.vertical-hero-slider .tagline-line {
    width: 40px;
    height: 1px;
    background: var(--primary-color);
}

.vertical-hero-slider .slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.vertical-hero-slider .slide-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.vertical-hero-slider .slide-actions {
    display: flex;
    gap: 15px;
}

.vertical-hero-slider .slider-navigation-container {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.7);
}

.vertical-hero-slider .slider-counter {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.vertical-hero-slider .slider-counter .current-slide {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.vertical-hero-slider .slider-progress {
    width: 2px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
    position: relative;
}

.vertical-hero-slider .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.vertical-hero-slider .slider-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vertical-hero-slider .slider-controls button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vertical-hero-slider .slider-controls button:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .vertical-hero-slider .slider-content {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .vertical-hero-slider .slide-title {
        font-size: 2.5rem;
    }
    
    .vertical-hero-slider .col-md-3 {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .vertical-hero-slider .slider-navigation-container {
        height: auto;
        flex-direction: row;
        padding: 20px;
    }
    
    .vertical-hero-slider .slider-progress {
        width: 100px;
        height: 2px;
        margin: 0 20px;
    }
    
    .vertical-hero-slider .slider-controls {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .vertical-hero-slider {
        height: 90vh;
    }
    
    .vertical-hero-slider .slider-item {
        height: 90vh;
    }
    
    .vertical-hero-slider .slide-title {
        font-size: 2rem;
    }
    
    .vertical-hero-slider .slide-desc {
        font-size: 1rem;
    }
}